/* === Zelicra V2 — Responsive Breakpoints === */
/* NOTE: sections.css already handles features-grid, empire-grid,
   pricing-grid, footer-grid, and basic card/section padding at
   768px/1024px/480px. This file covers everything else. */

/* Tablet landscape */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }
}

/* Tablet portrait / large mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Nav: hide desktop links, show hamburger */
    .nav-links {
        display: none !important;
    }

    .nav-actions .lang-toggle,
    .nav-actions .btn-ghost {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Hero */
    .section-hero {
        min-height: 80vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Trust bar */
    .trust-bar {
        flex-wrap: wrap;
        gap: 16px 32px;
        padding: 24px 16px;
    }

    /* Section titles */
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Pricing toggle */
    .pricing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Dedicated CTAs */
    .dedicated-ctas a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Final CTA */
    .cta-buttons a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Dedicated grid 2-col on tablet */
    .dedicated-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px 0;
    }

    .container {
        padding: 0 16px;
    }

    .dedicated-grid {
        grid-template-columns: 1fr !important;
    }

    .card, .feature-card, .pricing-card, .empire-card {
        padding: 24px 20px;
    }

    .hero-title {
        font-size: 1.6rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    .empire-card h3 {
        font-size: 1.4rem;
    }

    .pricing-amount .price {
        font-size: 2.2rem;
    }

    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .nav-inner {
        padding: 0 16px;
    }

    .nav-actions .btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
