/* ═══════════════════════════════════════════
   DESIGN TOKENS (exact same as new design)
═══════════════════════════════════════════ */
: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;
}
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, helpers (same) */
.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;
  position: relative;
  overflow: hidden;
  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); }
.btn-white { background: #fff; color: var(--teal); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-white:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.section { padding: 90px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-desc {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 620px;
}
.section-header-center { text-align: center; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-desc { margin: 0 auto; }

/* Reveal (same) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   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
═══════════════════════════════════════════ */

/* dim overlay */
.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; }

/* the panel */
.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); }

/* decorative right border stripe */
.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 top bar */
.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 links */
.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-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 18px; }

/* drawer footer CTA */
.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;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--ink);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumb { margin-top: 24px; display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.4); }
.breadcrumb a { color: var(--gold); }

/* ========== SERVICES SECTION ========== */
.services-section { background: #fff; padding: 90px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(4,72,78,0.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(4,72,78,0.1), rgba(4,72,78,0.05));
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--teal); color: #fff; transform: scale(1.05) rotate(-5deg); }

.service-card h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:19px; font-weight:700; margin-bottom:12px; }
.service-card p { font-size: 14px; color: var(--slate); line-height: 1.7; margin-bottom: 16px; }

.service-features {
  list-style: none;
  margin-bottom: 22px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 8px;
}
.service-features i {
  color: var(--teal);
  font-size: 12px;
  width: 18px;
}

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--teal);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link i { font-size: 12px; }

/* Mobile carousel (same) */
.services-carousel {
  display: none;
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
}
.carousel-slide {
  flex: 0 0 100%;
  padding: 0 4px;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.carousel-nav:hover { background: var(--teal); color: #fff; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.carousel-dot.active { background: var(--teal); width: 24px; border-radius: 4px; }

/* Process steps */
.process-section { background: var(--cream); padding: 90px 0; }
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.process-step {
  flex: 1 1 200px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 20px;
  transition: all 0.3s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-number {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 22px;
  margin: 0 auto 20px;
}
.step-content h4 { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:18px; margin-bottom:8px; }
.step-content p { font-size:14px; color:var(--slate); }

/* ========== FAQ SECTION (new accordion style) ========== */
.faq-section { background: #fff; padding: 90px 0; }
.faq-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.faq-list {
  margin-top: 2rem;
}
.faq-item {
  border-bottom: 1px solid rgba(4,72,78,0.1);
  padding: 2rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  font-size: 1.5rem;
  margin: 0;
}
.faq-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--teal);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-top: 1.5rem;
  color: var(--slate);
  line-height: 1.8;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 60%, #0a7080 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(24px,3.5vw,40px); font-weight:900; color:#fff; margin-bottom:14px; }
.cta-banner p { font-size:17px; color:rgba(255,255,255,0.75); margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; }

/* ========== 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) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { display: none; }
  .services-carousel { display: block; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-step { width: 100%; max-width: 400px; }
  .faq-question h3 { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 36px; }
  .faq-question h3 { font-size: 1.2rem; }
}
/* 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);
}