/* ═══════════════════════════════════════════
   DESIGN TOKENS (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
═══════════════════════════════════════════ */
.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:active { transform: scale(0.97); }
.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-gold:hover { box-shadow: 0 8px 32px rgba(247,201,72,0.6); }
.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 HELPERS
═══════════════════════════════════════════ */
.section { padding: 90px 0; }
.section-sm { padding: 60px 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-title .gold { color: var(--gold); }
.section-title .teal { color: var(--teal); }
.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; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-l.active { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-r.active { opacity: 1; transform: translateX(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-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 (global style)
═══════════════════════════════════════════ */
.page-header {
  background: var(--ink);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(247,201,72,0.08) 0%, transparent 70%);
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.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); }
.breadcrumb a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   TEAM GRID (4 cards, founder first)
═══════════════════════════════════════════ */
.team-section { background: var(--cream); padding: 90px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  width: 100%;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 50%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900; font-size: 36px; color: #fff;
  letter-spacing: -0.02em;
  position: relative; overflow: hidden;
}
.team-avatar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2));
}
.team-info { padding: 20px; }
.team-info h4 { font-family:'Bricolage Grotesque',sans-serif; font-weight:700; font-size:17px; margin-bottom:5px; }
.team-role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(4,72,78,0.08); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s;
}
.team-social a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   VALUES SECTION
═══════════════════════════════════════════ */
.values-section { background: #fff; padding: 90px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 26px;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  text-align: center;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(4,72,78,0.2); }
.value-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: 26px; margin: 0 auto 20px;
  transition: all 0.3s;
}
.value-card:hover .value-icon { background: var(--teal); color: #fff; transform: scale(1.05) rotate(-5deg); }
.value-card h3 { font-family:'Bricolage Grotesque',sans-serif; font-size:19px; font-weight:700; margin-bottom:12px; }
.value-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  position: relative; z-index: 1;
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 36px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px; font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup { font-size: 22px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ═══════════════════════════════════════════
   CAREERS (global)
═══════════════════════════════════════════ */
.careers-section { background: var(--cream); padding: 90px 0; }
.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.careers-content .section-desc { margin-bottom: 24px; }
.benefits-list {
  list-style: none;
  margin: 24px 0 32px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}
.benefits-list i {
  color: var(--teal);
  font-size: 16px;
  width: 22px;
}
.careers-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.careers-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}
.careers-image-wrap:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════════
   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 – online only)
═══════════════════════════════════════════ */
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;
  letter-spacing: -0.03em; 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; letter-spacing: 0.1em;
  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;
  font-size: 15px; transition: all 0.2s;
}
.footer-social a:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   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 cubic-bezier(0.34,1.56,0.64,1);
  border: 3px solid rgba(255,255,255,0.5);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.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; }
.back-to-top:hover { transform: translateY(-4px); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
/* 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);
}
