:root {
    --black: #0D0D0D;
    --dark: #141414;
    --dark-surface: #1A1A1A;
    --dark-elevated: #222222;
    --dark-card: #1E1E1E;
    --cream: #F5F0E8;
    --cream-soft: #EDE8DF;
    --gold: #C8A96E;
    --gold-bright: #D4BA85;
    --gold-dim: #9E8555;
    --gold-glow: rgba(200, 169, 110, 0.15);
    --green-wa: #25D366;
    --green-wa-hover: #20BD5A;
    --white: #FFFFFF;
    --text-muted: rgba(245, 240, 232, 0.45);
    --text-soft: rgba(245, 240, 232, 0.7);
    --border-subtle: rgba(200, 169, 110, 0.1);
    --border-gold: rgba(200, 169, 110, 0.25);
  }

  *, *::before, *::after { box-sizing: border-box; }

  .header *, .footer * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Scope dark background/color to header and footer only */
  .header, .footer {
    color: var(--cream);
  }

  .header a, .footer a { text-decoration: none; color: inherit; }

  /* ═══════════════════════════════════════
     ANNOUNCEMENT BAR
     ═══════════════════════════════════════ */
  .announcement-bar {
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    padding: 7px 20px;
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    overflow: hidden;
    z-index: 1001;
  }

  .announcement-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 4s ease-in-out infinite;
  }

  .announcement-bar span { position: relative; }

  @keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
  }

  /* ═══════════════════════════════════════
     HEADER
     ═══════════════════════════════════════ */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header.scrolled .announcement-bar {
    height: 0; padding: 0; opacity: 0; overflow: hidden;
    transition: all 0.35s ease;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 44px;
    background: rgba(13, 13, 13, 0.82);
    backdrop-filter: blur(30px) saturate(1.6);
    -webkit-backdrop-filter: blur(30px) saturate(1.6);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
  }

  .header.scrolled .navbar {
    padding: 4px 44px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
  }

  /* ── Logo ── */
  .logo {
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.4s ease;
  }

  .logo:hover { transform: translateY(-1px); }

  .logo-img {
    height: 58px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 2px 12px rgba(200,169,110,0.12));
  }

  .header.scrolled .logo-img { height: 46px; }

  .logo:hover .logo-img {
    filter: drop-shadow(0 4px 20px rgba(200,169,110,0.3));
    transform: scale(1.04);
  }

  /* ── Nav Items ── */
  .nav-center {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav-item {
    position: relative;
    padding: 10px 20px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-item:hover { color: var(--cream); }

  .nav-item::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 20px; right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-item:hover::after { transform: scaleX(1); }
  .nav-item.active { color: var(--gold); }
  .nav-item.active::after { transform: scaleX(1); }

  .nav-chevron {
    width: 10px; height: 10px;
    transition: transform 0.3s ease;
    opacity: 0.5;
  }

  /* ── Dropdowns ── */
  .dropdown-wrap { position: relative; }
  .dropdown-wrap:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  .dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }

  .dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 270px;
    background: var(--dark-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 10px;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 30px rgba(200,169,110,0.04);
  }

  .dropdown-panel::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px; height: 14px;
    background: var(--dark-card);
    border-top: 1px solid var(--border-gold);
    border-left: 1px solid var(--border-gold);
  }

  .dd-item {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px; border-radius: 12px;
    transition: all 0.3s ease; color: var(--cream);
  }

  .dd-item:hover { background: rgba(200,169,110,0.08); }
  .dd-item:hover .dd-label { color: var(--gold); }
  .dd-item:hover .dd-icon { background: rgba(200,169,110,0.15); border-color: var(--border-gold); }

  .dd-icon {
    width: 40px; height: 40px; border-radius: 11px;
    background: rgba(200,169,110,0.06);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .dd-text { display: flex; flex-direction: column; }
  .dd-label { font-size: 13px; font-weight: 600; letter-spacing: 0.3px; transition: color 0.3s ease; }
  .dd-desc { font-size: 11px; color: var(--text-muted); margin-top: 3px; font-weight: 300; }

  .countries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 4px; }

  .country-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; border-radius: 10px;
    font-size: 13.5px; font-weight: 400; color: var(--text-soft);
    transition: all 0.25s ease;
  }

  .country-item:hover { background: rgba(200,169,110,0.08); color: var(--cream); }
  .country-flag { font-size: 20px; }

  .countries-more {
    display: block; padding: 10px; text-align: center;
    font-size: 12px; color: var(--gold-dim); font-weight: 500;
    letter-spacing: 1px; border-top: 1px solid var(--border-subtle);
    margin-top: 4px; transition: color 0.3s ease;
  }
  .countries-more:hover { color: var(--gold); }

  /* ── WhatsApp CTA ── */
  .cta-whatsapp {
    display: flex; align-items: center; gap: 8px;
    background: var(--green-wa); color: var(--white);
    padding: 11px 26px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
    transition: all 0.35s ease;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
  }

  .cta-whatsapp::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
  }

  .cta-whatsapp:hover::before { transform: translateX(100%); }
  .cta-whatsapp:hover { background: var(--green-wa-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35); }
  .cta-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ═══════════════════════════════════════
     HERO
     ═══════════════════════════════════════ */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; overflow: hidden;
    background: var(--black);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.05) 25%, rgba(13,13,13,0.5) 65%, rgba(13,13,13,0.97) 100%),
      linear-gradient(135deg, #15291a 0%, #0d1a0d 35%, #1c1c0e 70%, #0d0d0d 100%);
  }

  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 72% 50%, rgba(30, 65, 30, 0.4) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 20%, rgba(200, 169, 110, 0.04) 0%, transparent 35%);
  }

  .hero-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    padding: 140px 48px 100px;
    width: 100%; max-width: 1360px; margin: 0 auto;
    gap: 48px;
  }

  .hero-left { max-width: 640px; flex: 1; }

  .hero-right {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }

  .hero-logo-showcase {
    width: 280px; height: 280px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    animation: heroLogoIn 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes heroLogoIn {
    from { opacity: 0; transform: scale(0.8) rotate(-5deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
  }

  .hero-logo-showcase::before {
    content: ''; position: absolute; inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
  }

  .hero-logo-showcase::after {
    content: ''; position: absolute; inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(200,169,110,0.1);
    animation: ringRotate 20s linear infinite;
  }

  @keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
  }

  @keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .hero-logo-img {
    width: 220px; height: 220px; object-fit: contain;
    filter: drop-shadow(0 8px 40px rgba(200,169,110,0.2));
    position: relative; z-index: 1;
    animation: floatLogo 5s ease-in-out infinite;
  }

  @keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .hero-badges {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
    animation: heroIn 1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 15px; border-radius: 50px;
    font-size: 11.5px; font-weight: 500; letter-spacing: 0.3px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--cream-soft);
    transition: all 0.3s ease;
  }

  .badge:hover { background: rgba(200,169,110,0.1); border-color: var(--border-gold); transform: translateY(-2px); }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900; line-height: 1.05; margin-bottom: 20px;
    animation: heroIn 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero h1 .gold { color: var(--gold); font-style: italic; display: block; }

  .hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7; color: var(--text-soft);
    max-width: 500px; margin-bottom: 36px; font-weight: 300;
    animation: heroIn 1s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 14px;
    animation: heroIn 1s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .btn-hero-wa {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; background: var(--green-wa);
    color: var(--white); border-radius: 60px;
    font-size: 15px; font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  }

  .btn-hero-wa:hover { background: var(--green-wa-hover); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37, 211, 102, 0.4); }
  .btn-hero-wa svg { width: 20px; height: 20px; }

  .btn-hero-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px; border: 1.5px solid rgba(200,169,110,0.35);
    color: var(--cream); border-radius: 60px;
    font-size: 15px; font-weight: 500;
    transition: all 0.35s ease;
    background: rgba(200,169,110,0.04);
  }

  .btn-hero-outline:hover { border-color: var(--gold); background: rgba(200,169,110,0.1); transform: translateY(-3px); }

  .hero-trust {
    margin-top: 44px; display: flex; align-items: center; gap: 20px;
    animation: heroIn 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
  .trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-wa); animation: pulse 2s ease-in-out infinite; }

  @keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(37,211,102,0); }
  }

  /* ═══════════════════════════════════════
     CTA SECTION
     ═══════════════════════════════════════ */
  .cta-section {
    position: relative; padding: 90px 48px; text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-surface) 100%);
    overflow: hidden;
  }

  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,0.05) 0%, transparent 55%);
    pointer-events: none;
  }

  .cta-logo-small {
    width: 80px; height: 80px; object-fit: contain;
    margin-bottom: 24px; opacity: 0.25;
    filter: grayscale(0.3);
  }

  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px); font-weight: 700;
    margin-bottom: 16px; position: relative;
  }

  .cta-section > p {
    font-size: 16px; color: var(--text-soft);
    max-width: 500px; margin: 0 auto 36px; line-height: 1.7; font-weight: 300;
  }

  .btn-cta-wa {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 44px; background: var(--gold); color: var(--black);
    border-radius: 60px; font-size: 14px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: all 0.35s ease;
    box-shadow: 0 6px 30px rgba(200,169,110,0.2);
    position: relative; overflow: hidden;
  }

  .btn-cta-wa::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%); transition: transform 0.6s ease;
  }

  .btn-cta-wa:hover::before { transform: translateX(100%); }
  .btn-cta-wa:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 12px 44px rgba(200,169,110,0.35); }
  .btn-cta-wa svg { width: 20px; height: 20px; }

  .cta-meta { margin-top: 16px; font-size: 13px; color: var(--text-muted); font-weight: 300; }
  .cta-meta span { margin: 0 6px; opacity: 0.25; }

  /* ═══════════════════════════════════════
     FOOTER
     ═══════════════════════════════════════ */
  .footer {
    background: var(--dark-surface);
    position: relative;
    border-top: 1px solid var(--border-subtle);
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
    padding: 60px 48px 50px;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Footer brand */
  .footer-brand-col {
    display: flex; flex-direction: column;
  }

  .f-logo-block {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 18px;
  }

  .f-logo-img {
    height: 72px; width: auto;
    filter: drop-shadow(0 2px 12px rgba(200,169,110,0.12));
    transition: all 0.5s ease;
  }

  .f-logo-img:hover {
    filter: drop-shadow(0 6px 24px rgba(200,169,110,0.25));
    transform: scale(1.04);
  }

  .f-logo-text-group { display: flex; flex-direction: column; }

  .f-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700; color: var(--cream);
  }

  .f-logo-tag {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold-dim); font-weight: 500; margin-top: 2px;
  }

  .footer-brand-col > p {
    font-size: 13.5px; color: var(--text-muted);
    line-height: 1.7; max-width: 260px; font-weight: 300; margin-bottom: 18px;
  }

  .footer-certs { display: flex; gap: 6px; }

  .cert {
    padding: 5px 12px; border-radius: 5px;
    background: rgba(200,169,110,0.05);
    border: 1px solid var(--border-subtle);
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold-dim);
    transition: all 0.3s ease;
  }

  .cert:hover { background: rgba(200,169,110,0.12); color: var(--gold); border-color: var(--border-gold); transform: translateY(-2px); }

  /* Footer columns */
  .footer-col h4 {
    font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 20px;
    position: relative; padding-bottom: 10px;
  }

  .footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 18px; height: 1.5px; background: var(--gold); border-radius: 1px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

  .footer-col ul li a {
    font-size: 13.5px; color: var(--text-muted); font-weight: 300;
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .footer-col ul li a:hover { color: var(--cream); transform: translateX(3px); }
  .footer-col ul li a .flag { font-size: 16px; }

  /* Footer contact */
  .footer-contact .wa-btn-footer {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; background: var(--green-wa); color: var(--white);
    border-radius: 50px; font-size: 13px; font-weight: 600;
    margin-bottom: 18px; transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
  }

  .wa-btn-footer:hover { background: var(--green-wa-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3); }
  .wa-btn-footer svg { width: 16px; height: 16px; }

  .contact-detail {
    font-size: 13px; color: var(--text-muted); font-weight: 300;
    margin-bottom: 7px; display: flex; align-items: center; gap: 8px;
  }

  .contact-detail svg { width: 14px; height: 14px; opacity: 0.35; flex-shrink: 0; }

  .footer-social { display: flex; gap: 8px; margin-top: 18px; }

  .social-btn {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: all 0.35s ease;
  }

  .social-btn:hover {
    color: var(--cream); background: rgba(200,169,110,0.1);
    border-color: var(--border-gold); transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  .social-btn svg { width: 15px; height: 15px; }

  .footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 22px 48px;
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1280px; margin: 0 auto;
    font-size: 11.5px; color: var(--text-muted); font-weight: 300;
  }

  .footer-bottom a { color: var(--text-muted); transition: color 0.3s ease; }
  .footer-bottom a:hover { color: var(--gold); }
  .footer-bottom-links { display: flex; gap: 18px; }
  .footer-heart { display: flex; align-items: center; gap: 5px; letter-spacing: 0.5px; }

  /* ═══════════════════════════════════════
     FLOATING WA
     ═══════════════════════════════════════ */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--green-wa);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    transition: all 0.35s ease;
    animation: floatBounce 3s ease-in-out infinite;
  }

  .wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5); animation: none; }
  .wa-float svg { width: 26px; height: 26px; color: white; }

  .wa-float::before {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.25);
    animation: pingRing 2.5s ease-out infinite;
  }

  @keyframes floatBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  @keyframes pingRing { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }

  /* ═══════════════════════════════════════
     HAMBURGER
     ═══════════════════════════════════════ */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002;
  }

  .hamburger span { width: 22px; height: 1.5px; background: var(--cream); border-radius: 2px; transition: all 0.35s ease; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ═══════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hamburger { display: flex; }
    .hero-right { display: none; }
    .hero-inner { padding: 140px 24px 80px; }
    .nav-center {
      position: fixed; top: 0; right: -100%;
      width: 320px; height: 100vh;
      background: var(--dark); flex-direction: column;
      align-items: flex-start; justify-content: center;
      padding: 48px 32px; gap: 4px;
      transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: -20px 0 60px rgba(0,0,0,0.5);
      border-left: 1px solid var(--border-subtle);
    }
    .nav-center.open { right: 0; }
    .nav-center .nav-item { font-size: 15px; padding: 14px 0; }
    .dropdown-panel { position: static; transform: none !important; background: var(--dark-elevated); box-shadow: none; border: none; display: none; border-radius: 10px; margin: 4px 0 8px 0; width: 100%; }
    .dropdown-panel::before { display: none; }
    .dropdown-wrap.mobile-open .dropdown-panel { display: block; opacity: 1; visibility: visible; }
    .countries-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 20px 24px; }
    .cta-section { padding: 60px 24px; }
  }

  @media (max-width: 640px) {
    .navbar { padding: 6px 16px; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .hero-actions { flex-direction: column; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
    .announcement-bar { font-size: 9.5px; letter-spacing: 1px; padding: 6px 12px; }
    .f-logo-block { flex-direction: column; align-items: flex-start; gap: 8px; }
  }