 /* ===== DESIGN TOKENS (same as other pages) ===== */
        :root {
            --teal:      #04484E;
            --teal-mid:  #066068;
            --teal-lite: #0d8a98;
            --gold:      #F7C948;
            --gold-dark: #d4a820;
            --cream:     #FFFCF5;
            --ink:       #0D1117;
            --ink2:      #1a2230;
            --slate:     #4A5568;
            --border:    rgba(4,72,78,0.12);
            --border-w:  rgba(255,255,255,0.12);
            --shadow-sm: 0 2px 12px rgba(4,72,78,0.08);
            --shadow-md: 0 8px 32px rgba(4,72,78,0.14);
            --shadow-lg: 0 20px 60px rgba(4,72,78,0.18);
            --r:         14px;
            --r-sm:      8px;
            --r-pill:    100px;
            --nav-h:     72px;
        }

        /* ===== BASE ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Instrument Sans', sans-serif;
            background: #fff;
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.65;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        h1,h2,h3,h4,h5 {
            font-family: 'Bricolage Grotesque', sans-serif;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== BUTTONS (same as other pages) ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            border-radius: var(--r-pill);
            font-family: 'Instrument Sans', sans-serif;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            border: none;
            transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
            white-space: nowrap;
        }
        .btn:hover { transform: translateY(-3px); }
        .btn-primary {
            background: linear-gradient(135deg, var(--teal), var(--teal-mid));
            color: #fff;
            box-shadow: 0 4px 20px rgba(4,72,78,0.35);
        }
        .btn-primary:hover { box-shadow: 0 8px 32px rgba(4,72,78,0.5); }
        .btn-secondary {
            background: transparent;
            color: var(--teal);
            border: 2px solid var(--teal);
        }
        .btn-secondary:hover { background: var(--teal); color: #fff; }
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--ink);
            box-shadow: 0 4px 20px rgba(247,201,72,0.4);
        }

        /* ===== NAVBAR (original style – transparent, white text) ===== */
        #navbar {
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 1000;
            background: transparent;
            transition: background 0.3s, box-shadow 0.3s;
        }
        #navbar.scrolled {
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 24px rgba(4,72,78,0.10);
        }
        #navbar.scrolled .logo { color: var(--teal); }
        #navbar.scrolled .nav-links a { color: var(--ink2); }
        #navbar.scrolled .nav-cta { background: var(--teal); color: #fff; }

        .nav-container {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; align-items: center; justify-content: space-between;
            height: var(--nav-h); gap: 20px;
        }
        .logo {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 900; font-size: 24px; letter-spacing: -0.03em;
            color: #fff; transition: color 0.3s; z-index: 1002; position: relative;
        }
        .logo span { color: var(--gold); }

        .nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
        .nav-links a {
            padding: 8px 14px; font-size: 14px; font-weight: 600;
            border-radius: 8px; color: rgba(255,255,255,0.9);
            transition: background 0.15s, color 0.15s;
        }
        .nav-links a:hover { background: rgba(255,255,255,0.12); color: #fff; }
        #navbar.scrolled .nav-links a:hover { background: rgba(4,72,78,0.08); color: var(--teal); }
        .nav-links a.active { color: var(--gold); font-weight: 700; }
        #navbar.scrolled .nav-links a.active { color: var(--teal); background: rgba(4,72,78,0.04); }

        .nav-cta {
            background: var(--gold); color: var(--ink);
            padding: 10px 22px; border-radius: var(--r-pill);
            font-size: 14px; font-weight: 700; transition: all 0.2s; white-space: nowrap;
        }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(247,201,72,0.4); }

        /* Hamburger button (new style) */
        .menu-toggle {
            display: none;
            flex-direction: column; justify-content: center; align-items: center; gap: 5px;
            width: 44px; height: 44px;
            background: rgba(255,255,255,0.13);
            border: 1.5px solid rgba(255,255,255,0.28);
            border-radius: 10px; cursor: pointer; padding: 0;
            z-index: 1002; position: relative; flex-shrink: 0;
            transition: background 0.2s, border-color 0.2s;
        }
        .menu-toggle:hover { background: rgba(255,255,255,0.22); }
        #navbar.scrolled .menu-toggle { background: rgba(4,72,78,0.08); border-color: rgba(4,72,78,0.2); }
        #navbar.scrolled .menu-toggle .hline { background: var(--ink); }

        .hline {
            width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block;
            transition: transform 0.38s cubic-bezier(.4,0,.2,1), opacity 0.25s ease, width 0.25s;
            transform-origin: center;
        }
        /* animated X */
        .menu-toggle.is-open .hline:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .menu-toggle.is-open .hline:nth-child(2) { opacity: 0; width: 0; }
        .menu-toggle.is-open .hline:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== MOBILE DRAWER — slides LEFT → RIGHT ===== */
        .drawer-backdrop {
            position: fixed; inset: 0; background: rgba(0,0,0,0);
            z-index: 1000; pointer-events: none;
            transition: background 0.4s ease;
        }
        .drawer-backdrop.is-open { background: rgba(0,0,0,0.62); pointer-events: all; }

        .mobile-drawer {
            position: fixed; top: 0; left: 0; bottom: 0;
            width: min(300px, 84vw);
            z-index: 1001;
            display: flex; flex-direction: column;
            background: #111827;
            transform: translateX(-100%);
            transition: transform 0.44s cubic-bezier(.4,0,.2,1);
            will-change: transform;
            overflow: hidden;
            box-shadow: 6px 0 40px rgba(0,0,0,0.45);
        }
        .mobile-drawer.is-open { transform: translateX(0); }

        .mobile-drawer::before {
            content: '';
            position: absolute; top: 0; right: 0; bottom: 0; width: 2px;
            background: linear-gradient(to bottom,
                transparent 0%, var(--gold) 35%,
                var(--teal-lite) 70%, transparent 100%);
            opacity: .55; z-index: 10;
        }

        .drawer-head {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0 18px; height: var(--nav-h);
            background: rgba(255,255,255,0.035);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            flex-shrink: 0;
        }
        .drawer-logo {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 900; font-size: 21px; letter-spacing: -0.03em; color: #fff;
        }
        .drawer-logo span { color: var(--gold); }

        .drawer-close {
            width: 38px; height: 38px; border-radius: 9px;
            background: rgba(255,255,255,0.07);
            border: 1.5px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.7);
            font-size: 15px; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, color 0.2s, transform 0.28s;
            flex-shrink: 0;
        }
        .drawer-close:hover { background: rgba(255,255,255,0.14); color: #fff; transform: rotate(90deg) scale(1.08); }

        .drawer-nav { list-style: none; padding: 8px 0; flex: 1; overflow-y: auto; }
        .drawer-nav li {
            opacity: 0;
            transform: translateX(-16px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .mobile-drawer.is-open .drawer-nav li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.07s; }
        .mobile-drawer.is-open .drawer-nav li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.13s; }
        .mobile-drawer.is-open .drawer-nav li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
        .mobile-drawer.is-open .drawer-nav li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.25s; }
        .mobile-drawer.is-open .drawer-nav li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.31s; }

        .drawer-nav a {
            display: flex; align-items: center; gap: 13px;
            padding: 14px 18px;
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 17px; font-weight: 700;
            color: rgba(255,255,255,0.68);
            border-left: 3px solid transparent;
            transition: color 0.18s, background 0.18s, border-color 0.18s, padding-left 0.22s;
        }
        .drawer-nav a:hover {
            color: #fff;
            background: rgba(255,255,255,0.06);
            border-left-color: var(--gold);
            padding-left: 26px;
        }
        .drawer-nav a .nav-icon {
            width: 36px; height: 36px; border-radius: 9px;
            background: rgba(255,255,255,0.06);
            display: flex; align-items: center; justify-content: center;
            font-size: 14px; color: rgba(255,255,255,0.4);
            transition: background 0.18s, color 0.18s; flex-shrink: 0;
        }
        .drawer-nav a:hover .nav-icon { background: rgba(247,201,72,0.16); color: var(--gold); }

        .drawer-footer {
            padding: 16px 18px 22px;
            border-top: 1px solid rgba(255,255,255,0.06);
            display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
            opacity: 0; transform: translateY(10px);
            transition: opacity 0.3s ease 0.36s, transform 0.3s ease 0.36s;
        }
        .mobile-drawer.is-open .drawer-footer { opacity: 1; transform: translateY(0); }

        .drawer-cta {
            display: flex; align-items: center; justify-content: center; gap: 9px;
            padding: 13px 18px; border-radius: var(--r-pill);
            font-family: 'Instrument Sans', sans-serif; font-weight: 700; font-size: 15px;
            cursor: pointer; border: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .drawer-cta:hover { transform: translateY(-2px); }
        .drawer-cta-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--ink); box-shadow: 0 4px 16px rgba(247,201,72,0.28);
        }
        .drawer-cta-primary:hover { box-shadow: 0 8px 24px rgba(247,201,72,0.48); }
        .drawer-cta-wa {
            background: rgba(37,211,102,0.1);
            border: 1.5px solid rgba(37,211,102,0.3) !important;
            color: #42d97a;
        }
        .drawer-cta-wa:hover { background: rgba(37,211,102,0.18); }

        .drawer-hint {
            display: flex; align-items: center; justify-content: center; gap: 5px;
            font-size: 12px; color: rgba(255,255,255,0.28); padding-top: 2px;
        }

        /* ===== COMING SOON SECTION (full page between nav & footer) ===== */
        .coming-soon {
            flex: 1;
            background: var(--ink);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 24px 80px;
            overflow: hidden;
            min-height: 80vh;
        }
        .coming-soon-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }
        .particle {
            position: absolute;
            background: rgba(247,201,72,0.3);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        @keyframes float {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
        }

        .coming-soon-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }
        .coming-soon-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--teal), var(--teal-mid));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 40px;
            color: var(--gold);
            box-shadow: 0 20px 40px rgba(4,72,78,0.4);
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%,100%{ transform: translateY(0); }
            50%{ transform: translateY(-10px); }
        }
        .coming-soon h1 {
            font-size: clamp(36px, 7vw, 58px);
            font-weight: 900;
            color: #fff;
            margin-bottom: 24px;
        }
        .gradient-text {
            background: linear-gradient(135deg, var(--gold), #f0a030, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200%;
            animation: shimmer 3s ease infinite;
        }
        @keyframes shimmer { 0%,100%{ background-position:0%; } 50%{ background-position:100%; } }
        .coming-soon p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
            line-height: 1.7;
        }
        .coming-soon-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== FOOTER (global) ===== */
        footer {
            background: var(--ink2);
            color: rgba(255,255,255,0.6);
            padding: 72px 0 0;
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
            gap: 32px;
            padding-bottom: 52px;
        }
        .footer-brand h3 {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 900; font-size: 24px; color: #fff;
            margin-bottom: 14px;
        }
        .footer-brand h3 span { color: var(--gold); }
        .footer-brand p {
            font-size: 14px; line-height: 1.75; margin-bottom: 24px;
        }
        .footer-apps { display: flex; gap: 10px; }
        .app-btn {
            display: flex; align-items: center; gap: 8px;
            padding: 10px 16px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8);
            transition: all 0.2s;
        }
        .app-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
        .footer-column h4 {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-size: 13px; font-weight: 800; color: #fff;
            text-transform: uppercase; margin-bottom: 18px;
        }
        .footer-column ul { list-style: none; }
        .footer-column li { margin-bottom: 10px; }
        .footer-column a { font-size: 14px; transition: color 0.15s; }
        .footer-column a:hover { color: var(--gold); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
        .footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            width: 36px; height: 36px; border-radius: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.6);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .footer-social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

        /* ===== FLOATING WHATSAPP & BACK TO TOP ===== */
        .wa-float {
            position: fixed; bottom: 88px; right: 28px;
            width: 54px; height: 54px;
            background: #25D366; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff; font-size: 24px;
            box-shadow: 0 4px 18px rgba(37,211,102,0.45);
            z-index: 800;
            transition: all 0.25s;
            border: 3px solid rgba(255,255,255,0.5);
        }
        .wa-float:hover { transform: scale(1.1); }
        .back-to-top {
            position: fixed; bottom: 28px; right: 28px;
            width: 46px; height: 46px;
            background: linear-gradient(135deg, var(--teal), var(--gold));
            color: #fff; border: none;
            border-radius: 50%; font-size: 16px; cursor: pointer;
            box-shadow: 0 4px 18px rgba(4,72,78,0.35);
            z-index: 800;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden;
            transition: all 0.3s;
        }
        .back-to-top.visible { opacity: 1; visibility: visible; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .nav-links, .nav-cta { display: none; }
            .menu-toggle { display: flex; }
            .coming-soon { padding: 100px 16px 60px; }
            .coming-soon-icon { width: 70px; height: 70px; font-size: 32px; }
        }
        @media (max-width: 480px) {
            .footer-main { grid-template-columns: 1fr; }
        }
        /* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}
.lang-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.lang-link:hover {
    background: rgba(255,255,255,0.12);
}
.lang-link.active {
    color: var(--gold);
    pointer-events: none;
}
#navbar.scrolled .lang-link {
    color: var(--ink2);
}
#navbar.scrolled .lang-link.active {
    color: var(--teal);
}
.lang-sep {
    color: rgba(255,255,255,0.3);
}
#navbar.scrolled .lang-sep {
    color: rgba(4,72,78,0.3);
}
.drawer-lang {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-lang .lang-link {
    color: rgba(255,255,255,0.6);
}
.drawer-lang .lang-link.active {
    color: var(--gold);
}