/* ========================================
   RESPONSIVE STYLES
======================================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }
}

/* Tablet & Small Desktop - UPDATED to 1024px thanks to compact navbar */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 999;
    }

    .nav-buttons {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* ... rest of styles ... */
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container-new {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 450px;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-domain {
        flex-direction: column;
        gap: 16px;
    }

    .domain-option {
        width: 100%;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-scroll {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .step-card-new {
        padding: 24px 20px;
    }

    .step-icon-new {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-card-new h3 {
        font-size: 18px;
    }

    .pricing-card-single {
        padding: 24px 16px;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .price-tag {
        font-size: 40px;
    }

    .price-tag .currency {
        font-size: 22px;
    }

    .faq-question {
        padding: 20px 16px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 16px 20px;
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .btn-whatsapp {
        padding: 16px 32px;
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        margin-bottom: 24px;
    }

    .footer-links a {
        justify-content: center;
    }

    .whatsapp-btn {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .price-tag {
        font-size: 36px;
    }

    .include-item {
        padding: 10px 12px;
    }

    .include-item span {
        font-size: 13px;
    }

    .bonus-badge {
        font-size: 13px;
        padding: 12px 16px;
    }
}

/* Animation for mobile menu */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* High contrast mode */
@media (prefers-contrast: high) {

    .feature-card,
    .step-card-new,
    .pricing-card-single,
    .testimonial-card,
    .faq-item {
        border-width: 2px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}