/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0d305a;
    --navy-light: #1A365D;
    --coral: #D14D46;
    --coral-light: #e8635c;
    --blush: #FFF5F3;
    --cream: #FDF8F5;
    --white: #ffffff;
    --text-dark: #0d305a;
    --text-muted: rgba(13, 48, 90, 0.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--coral);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--blush);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--coral), var(--navy));
    border-radius: 10px;
}

.font-clash {
    font-family: 'Clash Display', sans-serif;
}

/* ============================================
   SITE HEADER — minimal bar
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 56px);
    background: rgba(11, 37, 66, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.site-header.scrolled {
    background: rgba(11, 37, 66, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Logo — right side */
.header-logo {
    display: block;
    line-height: 0;
    position: relative;
    z-index: 1010;
}

.header-logo img {
    height: 34px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-logo:hover img {
    opacity: 0.75;
}

/* ============================================
   MENU TRIGGER — left side
   ============================================ */
.menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    z-index: 1010;
    position: relative;
}

.menu-trigger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-trigger span:nth-child(2) {
    opacity: 0.9;
}

.menu-trigger:hover span {
    background: white;
}

/* Morph to X when active */
.menu-trigger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* ============================================
   DRAWER OVERLAY (backdrop)
   ============================================ */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(5, 14, 28, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
    cursor: pointer;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s 0s;
}

/* ============================================
   NAV DRAWER — PREMIUM GLASSMORPHISM
   ============================================ */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: min(520px, 100vw);
    background:
        linear-gradient(145deg,
            rgba(8, 20, 42, 0.97) 0%,
            rgba(13, 48, 90, 0.96) 50%,
            rgba(6, 16, 35, 0.98) 100%);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 8px 0 60px rgba(0, 0, 0, 0.6);
}

/* Large ambient glow blobs */
.nav-drawer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 77, 70, 0.12) 0%, transparent 65%);
    top: -120px;
    right: -180px;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.nav-drawer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 48, 90, 0.4) 0%, transparent 65%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.nav-drawer.open {
    transform: translateX(0);
}

/* Scrollable inner */
.drawer-inner {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 100px 0 0;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    position: relative;
    z-index: 1;
}

.drawer-inner::-webkit-scrollbar {
    width: 2px;
}

.drawer-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   DRAWER NAVIGATION
   ============================================ */
.drawer-nav {
    list-style: none;
    padding: 0 0 24px;
    margin: 0;
    flex: 1;
}

/* Each top-level item */
.drawer-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.open .drawer-nav-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays — bottom-to-top feel */
.nav-drawer.open .drawer-nav-item:nth-child(1) { transition-delay: 0.12s; }
.nav-drawer.open .drawer-nav-item:nth-child(2) { transition-delay: 0.19s; }
.nav-drawer.open .drawer-nav-item:nth-child(3) { transition-delay: 0.26s; }
.nav-drawer.open .drawer-nav-item:nth-child(4) { transition-delay: 0.33s; }
.nav-drawer.open .drawer-nav-item:nth-child(5) { transition-delay: 0.40s; }

/* Trigger button (parent items with sub-menu) */
.drawer-nav-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(28px, 6vw, 56px);
    text-align: left;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
}

.drawer-nav-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(209, 77, 70, 0.12), transparent);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-nav-trigger:hover::after,
.drawer-nav-item.open > .drawer-nav-trigger::after {
    width: 100%;
}

.drawer-nav-trigger:hover,
.drawer-nav-item.open > .drawer-nav-trigger {
    color: white;
}

.item-label {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

/* Number counter decoration — removed */

.drawer-nav-item .item-label::before {
    display: none;
}

/* Arrow icon */
.drawer-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.3;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.drawer-nav-item.open > .drawer-nav-trigger .drawer-arrow {
    transform: rotate(90deg);
    opacity: 0.9;
    color: var(--coral);
    stroke: var(--coral);
}

/* Direct link (no sub-menu) */
.drawer-nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 24px clamp(28px, 6vw, 56px);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.3s ease, background 0.3s ease;
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
}

.drawer-nav-link::before {
    display: none;
}

.drawer-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(209, 77, 70, 0.12), transparent);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-nav-link:hover::after {
    width: 100%;
}

.drawer-nav-link:hover {
    color: white;
}

/* ============================================
   SUB-MENU (cascading, height animation)
   ============================================ */
.drawer-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-nav-item.open > .drawer-sub {
    max-height: 800px;
}

.drawer-sub li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

.drawer-sub li:last-child {
    border-bottom: none;
}

.drawer-sub-item {
    display: block;
    padding: 14px clamp(28px, 6vw, 56px) 14px calc(clamp(28px, 6vw, 56px) + 20px);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-left: 2px solid transparent;
    margin-left: clamp(28px, 6vw, 56px);
    transition: color 0.25s ease, border-color 0.25s ease,
        padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.drawer-sub-item:hover {
    color: rgba(255, 255, 255, 0.9);
    border-left-color: var(--coral);
    padding-left: calc(clamp(28px, 6vw, 56px) + 28px);
    background: rgba(255, 255, 255, 0.03);
}

/* ============================================
   SUB-CATEGORY (Helados / Cafetería / To Go)
   ============================================ */

/* Expandable sub-category trigger button */
.drawer-sub-cat-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px clamp(28px, 6vw, 56px) 13px calc(clamp(28px, 6vw, 56px) + 20px);
    text-align: left;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-left: 2px solid transparent;
    margin-left: clamp(28px, 6vw, 56px);
    transition: color 0.25s ease, border-color 0.25s ease,
                padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-sub-cat-btn:hover,
.drawer-sub-cat.open > .drawer-sub-cat-btn {
    color: rgba(255, 255, 255, 0.9);
    border-left-color: var(--coral);
}

.sub-cat-label {
    position: relative;
    z-index: 1;
}

/* Arrow inside sub-cat button */
.drawer-sub-arrow {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.drawer-sub-cat.open > .drawer-sub-cat-btn .drawer-sub-arrow {
    transform: rotate(90deg);
    opacity: 1;
    stroke: var(--coral);
}

/* Collapsible sub-list container */
.drawer-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.12);
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-sub-cat.open > .drawer-sub-list {
    max-height: 500px;
}

/* Deeper indentation for items inside sub-list */
.drawer-sub-list .drawer-sub-item {
    padding-left: calc(clamp(28px, 6vw, 56px) + 36px);
}

.drawer-sub-list .drawer-sub-item:hover {
    padding-left: calc(clamp(28px, 6vw, 56px) + 44px);
}

/* Deeper indentation for nested sub-cat-btn (e.g. To Go inside Cafetería) */
.drawer-sub-list .drawer-sub-cat-btn {
    padding-left: calc(clamp(28px, 6vw, 56px) + 36px);
}

/* Items at 3rd level (e.g. Matchas inside To Go) */
.drawer-sub-list .drawer-sub-list .drawer-sub-item {
    padding-left: calc(clamp(28px, 6vw, 56px) + 52px);
}

.drawer-sub-list .drawer-sub-list .drawer-sub-item:hover {
    padding-left: calc(clamp(28px, 6vw, 56px) + 60px);
}

/* ============================================
   DRAWER FOOTER
   ============================================ */
.drawer-footer {
    padding: 28px clamp(28px, 6vw, 56px) 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
    position: relative;
    z-index: 1;
}

.nav-drawer.open .drawer-footer {
    opacity: 1;
    transform: translateY(0);
}

.drawer-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 100px;
    background: var(--coral);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 40px -6px rgba(209, 77, 70, 0.55),
                inset 0 1px 0 rgba(255,255,255,0.2);
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

.drawer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -8px rgba(209, 77, 70, 0.65),
                inset 0 1px 0 rgba(255,255,255,0.2);
    background: var(--coral-light);
}

.drawer-cta svg {
    transition: transform 0.3s ease;
}

.drawer-cta:hover svg {
    transform: translate(3px, -3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    color: white;
    padding: 80px clamp(24px, 5vw, 80px) 40px;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    line-height: 1.7;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--coral);
    transform: translateY(-4px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.3s ease;
}

.footer-social-link:hover svg {
    fill: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

.footer .glow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 77, 70, 0.08) 0%, transparent 60%);
    bottom: -100px;
    right: -50px;
    pointer-events: none;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.parallax-img {
    will-change: transform;
}

/* ============================================
   SHARED BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-coral {
    background: var(--coral);
    color: white;
    box-shadow: 0 16px 40px -8px rgba(209, 77, 70, 0.35);
}

.btn-coral:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -8px rgba(209, 77, 70, 0.45);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.btn-white {
    background: white;
    color: var(--navy);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SHARED SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-header .label::before,
.section-header .label::after {
    content: '';
    width: 30px;
    height: 1.5px;
    background: var(--coral);
    opacity: 0.4;
}

.section-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
    line-height: 1.15;
}

/* ============================================
   SHARED CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--navy);
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner .glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 77, 70, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-banner h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-banner h2 .accent {
    color: var(--coral-light);
}

.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-banner .btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ============================================
   MOBILE — SHARED
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        height: 64px;
        min-height: 64px;
        padding: 0 16px;
    }

    .navbar .logo {
        height: 28px;
    }

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

    .hamburger {
        display: flex !important;
    }

    .mobile-nav-overlay {
        display: flex !important;
    }

    /* Stagger mobile items */
    .mobile-nav-group:nth-child(1) .mobile-nav-group-title {
        transition-delay: 0.05s;
    }

    .mobile-nav-group:nth-child(1) .mobile-nav-link:nth-child(2) {
        transition-delay: 0.1s;
    }

    .mobile-nav-group:nth-child(1) .mobile-nav-link:nth-child(3) {
        transition-delay: 0.15s;
    }

    .mobile-nav-group:nth-child(1) .mobile-nav-link:nth-child(4) {
        transition-delay: 0.2s;
    }

    .mobile-nav-group:nth-child(2) .mobile-nav-group-title {
        transition-delay: 0.2s;
    }

    .mobile-nav-group:nth-child(2) .mobile-nav-link:nth-child(2) {
        transition-delay: 0.25s;
    }

    .mobile-nav-group:nth-child(2) .mobile-nav-link:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-nav-group:nth-child(3) .mobile-nav-group-title {
        transition-delay: 0.3s;
    }

    .mobile-nav-group:nth-child(3) .mobile-nav-link:nth-child(2) {
        transition-delay: 0.35s;
    }

    .mobile-nav-group:nth-child(4) .mobile-nav-group-title {
        transition-delay: 0.35s;
    }

    .mobile-nav-group:nth-child(4) .mobile-nav-link:nth-child(2) {
        transition-delay: 0.4s;
    }

    .mobile-nav-group:nth-child(4) .mobile-nav-link:nth-child(3) {
        transition-delay: 0.45s;
    }

    .mobile-nav-group:nth-child(4) .mobile-nav-link:nth-child(4) {
        transition-delay: 0.5s;
    }

    .mobile-nav-cta {
        transition-delay: 0.55s;
    }

    .footer {
        padding: 48px 20px 24px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .cta-banner {
        padding: 60px 20px;
    }
}