/* ============================================
   Design System — Employment Abroad
   Dark hero · rich gradients · people photography
   ============================================ */

:root {
  --brand: #0B4DFF;
  --brand-ink: #0033CC;
  --brand-soft: #EEF3FF;
  --accent: #FF7A1A;
  --accent-soft: #FFF2E8;

  /* gradient stops — inspired ref: teal → violet → magenta */
  --grad-1: #5AE4D4;   /* teal/mint */
  --grad-2: #6A8CFF;   /* sky blue */
  --grad-3: #9B6BFF;   /* violet */
  --grad-4: #FF5E9C;   /* magenta */
  --grad-5: #FFD166;   /* warm sun */

  --ink: #0A1026;
  --ink-2: #2A3049;
  --ink-3: #5A6280;
  --line: #E5E8F0;
  --line-2: #EFF1F6;
  --bg: #FFFFFF;
  --bg-soft: #F5F6FA;
  --bg-tint: #F0F2F8;

  --dark: #0B0E1A;
  --dark-2: #141828;
  --dark-3: #1E2337;

  --success: #0D9B63;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(16,24,40,0.04), 0 1px 3px rgba(16,24,40,0.06);
  --shadow-md: 0 4px 8px -2px rgba(16,24,40,0.06), 0 12px 24px -4px rgba(16,24,40,0.08);
  --shadow-lg: 0 8px 16px -4px rgba(16,24,40,0.06), 0 24px 48px -12px rgba(16,24,40,0.18);
  --shadow-glow: 0 20px 80px -20px rgba(106,140,255,0.45);

  --font-ui: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --page-w: 1280px;
  --page-pad: 32px;
}

/* VARIANT WARM */
[data-variant="warm"] {
  --grad-1: #FFD9A0;
  --grad-2: #FF9D6B;
  --grad-3: #FF5E9C;
  --grad-4: #D97706;
  --brand: #D97706;
  --brand-ink: #B45309;
  --brand-soft: #FEF3E2;
  --accent: #E11D48;
  --bg-soft: #FBF7F1;
  --bg-tint: #F5EEDF;
  --ink: #1C1410;
}

/* VARIANT BOLD */
[data-variant="bold"] {
  --grad-1: #FFE74C;
  --grad-2: #FFD166;
  --grad-3: #FF9D6B;
  --grad-4: #000;
  --brand: #000;
  --brand-ink: #000;
  --brand-soft: #EDEFF5;
  --accent: #FFD60A;
  --bg-soft: #F4F4F2;
  --ink: #000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.022em; color: var(--ink); }
h1 { font-size: clamp(44px, 5.4vw, 72px); line-height: 1.02; letter-spacing: -0.038em; font-weight: 700; }
h2 { font-size: clamp(32px, 3.6vw, 52px); line-height: 1.06; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.2; }
p { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 500;
}

.serif {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-style: normal;
}

.grad-text {
  background: linear-gradient(100deg, var(--grad-1) 0%, var(--grad-2) 30%, var(--grad-3) 65%, var(--grad-4) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.container {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s, background .15s, box-shadow .15s, color .15s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(11,77,255,0.4), inset 0 -2px 0 rgba(0,0,0,0.08);
}
.btn--primary:hover { background: var(--brand-ink); transform: translateY(-1px); }
.btn--grad {
  background: linear-gradient(100deg, var(--grad-2), var(--grad-3) 60%, var(--grad-4));
  color: #fff;
  box-shadow: 0 10px 28px -8px rgba(155,107,255,0.5), inset 0 -2px 0 rgba(0,0,0,0.1);
}
.btn--grad:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -8px rgba(255,94,156,0.55), inset 0 -2px 0 rgba(0,0,0,0.1); }
.btn--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn--light:hover { background: rgba(255,255,255,0.2); }
.btn--outline {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--outline:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.btn--dark {
  background: var(--dark);
  color: #fff;
}
.btn--dark:hover { background: var(--dark-2); }
.btn--ghost { padding: 10px 14px; color: var(--ink-2); }
.btn--ghost:hover { color: var(--brand); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 14px; }

.arrow-icon { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover .arrow-icon { transform: translateX(2px); }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; line-height: 1;
}
.badge--ok { background: #E6F7EF; color: #0A7A4E; }
.badge--home { background: var(--brand-soft); color: var(--brand-ink); }
.badge--urgent { background: #FFE9DC; color: #B43A00; }
.badge--doc { background: #F3EEFF; color: #5D38C4; }
.badge--dot::before { content:''; width:6px; height:6px; border-radius:999px; background: currentColor; }

.micro-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}
.micro-trust span { display: inline-flex; align-items: center; gap: 6px; }
.micro-trust span::before { content:'✓'; color: var(--success); font-weight: 700; }

/* ---------- SECTIONS ---------- */
section { padding: 112px 0; }
.section-head {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 780px; margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
.section-head__sub { color: var(--ink-3); font-size: 18px; line-height: 1.55; }

/* ---------- PHOTO (real people via Unsplash) ---------- */
.photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tint);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--grad::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,14,26,0.7));
  pointer-events: none;
}

/* ---------- TOPBAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-2);
}
.topbar--dark {
  background: rgba(11,14,26,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.topbar__row { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3) 60%, var(--grad-4));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 16px -4px rgba(106,140,255,0.6);
}
.nav { display: flex; gap: 2px; margin-left: 8px; }
.nav a { padding: 7px 10px; border-radius: 10px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.nav a:hover { background: var(--bg-soft); color: var(--ink); }
.topbar--dark .nav a { color: rgba(255,255,255,0.7); }
.topbar--dark .nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.topbar--dark .nav a.active { color: #fff; }
.nav a.active { color: var(--brand); }

.topbar__actions { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
.phone-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13px; padding: 6px 8px; white-space: nowrap; }
.messengers { display: flex; gap: 6px; }
.msg-btn {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--bg-soft); color: var(--ink-2);
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.msg-btn:hover { background: var(--brand); color: #fff; }
.topbar--dark .msg-btn { background: rgba(255,255,255,0.08); color: #fff; }
.topbar--dark .msg-btn:hover { background: linear-gradient(135deg, var(--grad-2), var(--grad-3)); }
.topbar--dark .phone-link { color: #fff; }

.lang-switch { display: inline-flex; background: var(--bg-soft); border-radius: 10px; padding: 3px; font-size: 12px; font-weight: 700; flex-shrink: 0; gap: 2px; }
.lang-switch button { padding: 5px 9px; border-radius: 7px; color: var(--ink-3); white-space: nowrap; transition: all 0.2s; letter-spacing: 0.04em; }
.lang-switch button.on { background: linear-gradient(135deg, var(--grad-2), var(--grad-3)); color: #fff; box-shadow: 0 2px 8px rgba(155,107,255,0.35); }
.topbar--dark .lang-switch { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.topbar--dark .lang-switch button { color: rgba(255,255,255,0.65); }
.topbar--dark .lang-switch button:hover:not(.on) { color: #fff; }
.topbar--dark .lang-switch button.on { background: linear-gradient(135deg, var(--grad-2), var(--grad-3)); color: #fff; box-shadow: 0 2px 10px rgba(110,231,217,0.3); }

/* ---------- HERO (dark with gradient blobs) ---------- */
.hero-wrap {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}
.hero-wrap::before {
  content:'';
  position: absolute;
  top: -40%; right: -20%;
  width: 900px; height: 900px;
  background: radial-gradient(circle at 40% 40%, rgba(155,107,255,0.55), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(255,94,156,0.4), transparent 55%);
  filter: blur(30px);
  pointer-events: none;
}
.hero-wrap::after {
  content:'';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(90,228,212,0.35), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.hero {
  position: relative; z-index: 1;
  padding: 32px 0 100px;
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center;
  margin-top: 56px;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 6px 6px 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; font-weight: 500;
  width: fit-content;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
.hero__pill strong { color: #fff; font-weight: 700; }
.hero__pill-tag {
  background: linear-gradient(100deg, var(--grad-2), var(--grad-3), var(--grad-4));
  color: #fff; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.08em;
  font-weight: 600;
}
.hero h1 { margin-top: 24px; color: #fff; }
.hero h1 em {
  font-family: var(--font-ui); font-style: normal; font-weight: 800;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-2) 35%, var(--grad-3) 70%, var(--grad-4));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub {
  margin-top: 24px; font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}
.hero__perks { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.hero__perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.85);
}
.hero__perk .check {
  width: 24px; height: 24px; border-radius: 999px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: var(--dark);
  display: grid; place-items: center; flex-shrink: 0;
}
.hero__ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero__trust { margin-top: 28px; }
.hero__trust span { color: rgba(255,255,255,0.75); }
.hero__trust span::before { color: var(--grad-1); }

/* Hero visual — collage of photos + floating cards */
.hero__visual {
  position: relative;
  aspect-ratio: 1/1.05;
}
.hero__photo-main {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.hero__photo-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-main::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,14,26,0.6));
}

.hero__float {
  position: absolute;
  background: rgba(20,24,40,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: #fff;
  z-index: 2;
}
.hero__float--tl { top: 20px; left: -48px; }
.hero__float--br { bottom: 120px; right: -32px; }
.hero__float .flag {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  font-size: 18px;
}
.hero__float b { display: block; font-size: 14px; color: #fff; }
.hero__float small { color: rgba(255,255,255,0.65); font-size: 12px; }

.hero__stat-card {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: rgba(20,24,40,0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  z-index: 2;
}
.hero__stat-row { display: flex; align-items: flex-end; gap: 16px; }
.hero__stat-num {
  font-family: var(--font-ui); font-style: normal; font-weight: 800;
  font-size: 48px; line-height: 0.9;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-2) 50%, var(--grad-3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; max-width: 200px; }

.hero__mini-avatars {
  display: flex;
  padding-top: 16px; margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: center; gap: 12px;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 32px; height: 32px; border-radius: 999px;
  border: 2px solid #14182B;
  margin-left: -8px;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }

/* Hero stats strip (inside hero) */
.hero__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__metric {
  padding: 24px;
  background: rgba(20,24,40,0.6);
  backdrop-filter: blur(10px);
}
.hero__metric-num {
  font-family: var(--font-ui); font-style: normal; font-size: 42px; line-height: 1;
  font-weight: 800;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__metric-label { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 8px; line-height: 1.4; }

/* ---------- LOGOS STRIP ---------- */
.logos-strip { padding: 40px 0 20px; border-top: 1px solid var(--line-2); }
.logos-strip__label { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; text-align: center; }
.logos-strip__row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; }
.logo-ph {
  height: 40px; border-radius: 8px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3);
}

/* ---------- BENEFITS ---------- */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.benefit__ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3));
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px -6px rgba(106,140,255,0.5);
}
.benefit--v2 .benefit__ic { background: linear-gradient(135deg, var(--grad-3), var(--grad-4)); box-shadow: 0 8px 20px -6px rgba(255,94,156,0.5); }
.benefit--v3 .benefit__ic { background: linear-gradient(135deg, var(--grad-1), var(--grad-2)); box-shadow: 0 8px 20px -6px rgba(90,228,212,0.5); }
.benefit--v4 .benefit__ic { background: linear-gradient(135deg, var(--grad-5), var(--grad-4)); box-shadow: 0 8px 20px -6px rgba(255,209,102,0.5); }
.benefit--v5 .benefit__ic { background: linear-gradient(135deg, var(--grad-4), var(--grad-3)); }
.benefit--v6 .benefit__ic { background: linear-gradient(135deg, var(--grad-2), var(--grad-1)); }
.benefit h3 { margin-bottom: 10px; }
.benefit p { color: var(--ink-3); font-size: 15px; line-height: 1.55; }
.benefit__num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-bottom: 12px; letter-spacing: 0.08em; }

/* ---------- JOBS ---------- */
.jobs-urgent { background: var(--bg-soft); }
.jobs__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 48px;
}
.jobs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.job {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--line-2);
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.job::before {
  content:''; position:absolute; top:0; left:0; right:0; height: 4px;
  background: linear-gradient(90deg, var(--grad-2), var(--grad-3), var(--grad-4));
  opacity: 0; transition: opacity .2s;
}
.job:hover::before { opacity: 1; }
.job:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.job__photo {
  height: 140px; border-radius: var(--radius-md);
  background: var(--bg-soft);
  overflow: hidden; position: relative;
  margin: -8px -8px 0;
}
.job__photo img { width: 100%; height: 100%; object-fit: cover; }
.job__photo-badges { position: absolute; left: 12px; top: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.job__photo-flag {
  position: absolute; right: 12px; top: 12px;
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.92);
  font-size: 20px;
  backdrop-filter: blur(8px);
}
.job__title { font-size: 18px; font-weight: 700; line-height: 1.25; letter-spacing: -0.015em; }
.job__loc { font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.job__rate {
  display: flex; align-items: baseline; gap: 6px;
  padding: 12px 0;
  border-top: 1px dashed var(--line);
}
.job__rate-num {
  font-family: var(--font-ui); font-style: normal;
  font-size: 30px; line-height: 1; font-weight: 800;
  background: linear-gradient(100deg, var(--grad-2), var(--grad-3), var(--grad-4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.job__rate-unit { font-size: 13px; color: var(--ink-3); }
.job__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-size: 13px; }
.job__meta-row { display: flex; justify-content: space-between; }
.job__meta-row span:first-child { color: var(--ink-3); }
.job__meta-row span:last-child { color: var(--ink); font-weight: 500; }
.job__cta { display: flex; gap: 8px; margin-top: auto; padding-top: 4px; }
.job__cta .btn { flex: 1; justify-content: center; }

/* ---------- COUNTRIES ---------- */
.countries__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.country-tile {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: background .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.country-tile::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width: 3px;
  background: linear-gradient(180deg, var(--grad-2), var(--grad-4));
  opacity: 0; transition: opacity .2s;
}
.country-tile:hover::before { opacity: 1; }
.country-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.country-tile__flag {
  width: 44px; height: 32px; border-radius: 6px;
  display: grid; place-items: center;
  background: var(--bg-tint);
  font-size: 22px;
  flex-shrink: 0;
}
.country-tile__name { font-weight: 600; font-size: 15px; }
.country-tile__count { font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); }
.country-tile__arrow { margin-left: auto; color: var(--ink-3); transition: transform .2s, color .2s; }
.country-tile:hover .country-tile__arrow { transform: translateX(2px); color: var(--brand); }

/* ---------- CATEGORIES ---------- */
.cat__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px 28px 28px;
  overflow: hidden;
  color: #fff;
  min-height: 280px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform .2s;
}
.cat:hover { transform: translateY(-4px); }
.cat--1 { background: linear-gradient(145deg, #6A8CFF 0%, #9B6BFF 50%, #FF5E9C 100%); }
.cat--2 { background: linear-gradient(145deg, #5AE4D4 0%, #6A8CFF 60%, #9B6BFF 100%); }
.cat--3 { background: linear-gradient(145deg, #FFD166 0%, #FF9D6B 50%, #FF5E9C 100%); }
.cat--4 { background: linear-gradient(145deg, #1E2337 0%, #5D38C4 60%, #9B6BFF 100%); }
.cat__ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  margin-bottom: auto;
}
.cat h3 { margin-bottom: 6px; color: #fff; }
.cat p { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.5; }
.cat__count { position: absolute; top: 24px; right: 28px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.85); }

/* ---------- STEPS ---------- */
.steps {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  margin: 64px auto;
  max-width: calc(var(--page-w) - 64px);
  position: relative;
  overflow: hidden;
}
.steps::before {
  content:''; position:absolute; top:-50%; right:-20%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(155,107,255,0.4), transparent 60%);
  filter: blur(40px);
}
.steps::after {
  content:''; position:absolute; bottom:-40%; left:-10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(90,228,212,0.25), transparent 60%);
  filter: blur(40px);
}
.steps__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; position: relative; z-index: 1; }
.steps__head h2 { color: #fff; max-width: 640px; }
.steps__head h2 em {
  font-family: var(--font-ui); font-style: normal; font-weight: 800;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-3), var(--grad-4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; position: relative; z-index: 1; }
.step {
  padding: 24px 20px 28px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.step__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; margin-bottom: 16px;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.step h4 { font-size: 22px; margin-bottom: 8px; color: #fff; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.step__icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3));
  color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: 0 8px 20px -6px rgba(106,140,255,0.6);
}
.step:nth-child(2) .step__icon { background: linear-gradient(135deg, var(--grad-3), var(--grad-4)); }
.step:nth-child(3) .step__icon { background: linear-gradient(135deg, var(--grad-4), var(--grad-5)); }
.step:nth-child(4) .step__icon { background: linear-gradient(135deg, var(--grad-1), var(--grad-2)); }

/* ---------- CALCULATOR ---------- */
.calc {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(155,107,255,0.12), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(90,228,212,0.12), transparent 60%),
    linear-gradient(135deg, #fff 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--line-2);
}
.calc__form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 13px; font-weight: 500; color: var(--ink-2); }
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  font: inherit; font-size: 15px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--grad-3); box-shadow: 0 0 0 4px rgba(155,107,255,0.15);
}
.field__hint { font-size: 12px; color: var(--ink-3); }
.slider-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.slider-row b { font-family: var(--font-ui); font-style: normal; font-size: 28px;
  background: linear-gradient(100deg, var(--grad-2), var(--grad-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-weight: 800;
}
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; background: var(--line); border-radius: 999px; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3));
  cursor: pointer; box-shadow: 0 4px 10px rgba(106,140,255,0.5);
}
input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3));
  cursor: pointer; border: 0; box-shadow: 0 4px 10px rgba(106,140,255,0.5);
}
.calc__result {
  background: var(--dark); color: #fff;
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(11,14,26,0.5);
}
.calc__result::before {
  content:''; position:absolute; top:-40%; right:-30%; width:400px; height: 400px;
  background: radial-gradient(circle, rgba(155,107,255,0.35), transparent 60%);
  filter: blur(30px);
}
.calc__result > * { position: relative; z-index: 1; }
.calc__result-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }
.calc__result-big {
  font-family: var(--font-ui); font-style: normal; font-size: 72px; line-height: 1; font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-2) 35%, var(--grad-3) 70%, var(--grad-4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.calc__result-big small { font-family: var(--font-ui); font-size: 20px; font-style: normal; color: rgba(255,255,255,0.6); font-weight: 500; margin-left: 4px; -webkit-text-fill-color: rgba(255,255,255,0.6); }
.calc__breakdown { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.calc__brow { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.8); }
.calc__brow span:first-child { color: rgba(255,255,255,0.55); }
.calc__brow span:last-child { font-weight: 600; }

/* ---------- STATS ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.stat--1 { background: linear-gradient(160deg, #6A8CFF, #9B6BFF); }
.stat--2 { background: linear-gradient(160deg, #5AE4D4, #6A8CFF); }
.stat--3 { background: linear-gradient(160deg, #FF9D6B, #FF5E9C); }
.stat--4 { background: linear-gradient(160deg, #0B0E1A, #1E2337); }
.stat__num {
  font-family: var(--font-ui); font-style: normal; font-size: 64px;
  line-height: 0.9; font-weight: 800; letter-spacing: -0.04em; color: #fff;
}
.stat__num span { opacity: 0.7; }
.stat__label { margin-top: 12px; color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.5; }

/* ---------- TESTIMONIALS ---------- */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .2s, box-shadow .2s;
}
.testi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testi__quote { font-size: 17px; line-height: 1.5; color: var(--ink); letter-spacing: -0.01em; }
.testi__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-2); margin-top: auto; }
.testi__avatar {
  width: 44px; height: 44px; border-radius: 999px;
  overflow: hidden;
  background: var(--bg-tint);
}
.testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi__name { font-weight: 600; font-size: 14px; }
.testi__meta { color: var(--ink-3); font-size: 12px; }
.testi__star { color: #F5A623; display: inline-flex; }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
.faq__list { display: flex; flex-direction: column; gap: 4px; }
.faq__item { border-bottom: 1px solid var(--line); padding: 20px 0; cursor: pointer; }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  list-style: none; font-weight: 600; font-size: 18px; cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icn {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--bg-soft);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .2s, background .2s, color .2s;
}
.faq__item[open] summary .icn {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--grad-2), var(--grad-3)); color: #fff;
}
.faq__answer { padding-top: 12px; color: var(--ink-3); font-size: 15px; line-height: 1.6; }

.faq__side {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 90px;
  overflow: hidden;
}
.faq__side::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(300px 200px at 100% 0%, rgba(155,107,255,0.4), transparent 60%),
    radial-gradient(300px 300px at 0% 100%, rgba(255,94,156,0.25), transparent 60%);
}
.faq__side > * { position: relative; z-index: 1; }
.faq__side h3 { color: #fff; font-size: 24px; }
.faq__side p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(var(--page-w) - 64px);
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 100% 0%, rgba(155,107,255,0.5), transparent 55%),
    radial-gradient(500px 400px at 0% 100%, rgba(90,228,212,0.3), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(255,94,156,0.2), transparent 60%);
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; max-width: 520px; }
.cta-final h2 em {
  font-family: var(--font-ui); font-style: normal; font-weight: 800;
  background: linear-gradient(100deg, var(--grad-1), var(--grad-2) 50%, var(--grad-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-final__sub { color: rgba(255,255,255,0.78); margin-top: 20px; font-size: 17px; }
.cta-final__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  color: var(--ink);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.cta-final__form .field input, .cta-final__form .field select {
  background: var(--bg-soft); border-color: transparent;
}
.cta-final__note { font-size: 12px; color: var(--ink-3); text-align: center; margin-top: 4px; }

/* ---------- FOOTER ---------- */
.footer {
  background: linear-gradient(180deg, #14182A 0%, #0B0E1A 100%);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 32px;
  margin-top: 96px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(155,107,255,0.15);
}
.footer::before {
  content:''; position:absolute; top: -200px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,107,255,0.28), transparent 60%);
  filter: blur(50px); pointer-events: none;
}
.footer::after {
  content:''; position:absolute; bottom: -250px; left: -120px; width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(110,231,217,0.18), transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.footer__hidden {
  display: none;
}
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; position: relative; }
.footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 20px; }
.footer__col a { display: block; padding: 5px 0; font-size: 13px; color: rgba(255,255,255,0.7); }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px; }
.footer__social { display: flex; gap: 8px; margin-top: 20px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer__desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 300px; }
.footer__contact { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.7); }
.footer__contact b { color: #fff; display: block; font-size: 14px; font-weight: 700; }

/* ---------- STICKY MSGS + COOKIES ---------- */
.sticky-msgs { position: fixed; right: 24px; bottom: 24px; z-index: 60; display: flex; flex-direction: column; gap: 10px; }
.sticky-msgs .msg-float {
  width: 56px; height: 56px; border-radius: 999px;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px -4px rgba(11,77,255,0.4);
  transition: transform .2s;
}
.sticky-msgs .msg-float:hover { transform: scale(1.08); }
.sticky-msgs .msg-float--tg { background: #229ED9; }
.sticky-msgs .msg-float--wa { background: #25D366; }

.cookies {
  position: fixed; left: 24px; bottom: 24px; z-index: 55;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  font-size: 13px; color: var(--ink-2); line-height: 1.5;
  display: flex; flex-direction: column; gap: 12px;
}
.cookies__actions { display: flex; gap: 8px; }

/* ---------- TWEAKS ---------- */
.tweaks {
  position: fixed; top: 80px; right: 24px; z-index: 100;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; color: var(--ink-3); }
.tweaks__row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tweaks__row label { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.tweaks__options { display: flex; gap: 4px; }
.tweaks__opt {
  flex: 1; padding: 8px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  background: var(--bg-soft); color: var(--ink-2);
  text-align: center;
}
.tweaks__opt.on { background: linear-gradient(135deg, var(--grad-2), var(--grad-3)); color: #fff; }

/* ---------- RESPONSIVE — TABLET (960px) ---------- */
@media (max-width: 960px) {
  :root { --page-pad: 24px; }
  section { padding: 72px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 4/5; }
  .hero__float--tl, .hero__float--br { display: none; }
  .hero__metrics { grid-template-columns: 1fr 1fr; }
  .benefits__grid, .testi__grid { grid-template-columns: 1fr 1fr; }
  .jobs__grid { grid-template-columns: 1fr 1fr; }
  .cat__grid { grid-template-columns: 1fr 1fr; }
  .countries__grid { grid-template-columns: 1fr 1fr 1fr; }
  .steps__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .calc { grid-template-columns: 1fr; padding: 32px; }
  .cta-final { grid-template-columns: 1fr; padding: 40px; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .logos-strip__row { grid-template-columns: repeat(3, 1fr); }
  .nav { display: none; }
  .steps { padding: 48px 28px; }
  .hamburger { display: flex !important; }
}

/* ---------- RESPONSIVE — MOBILE (600px) ---------- */
@media (max-width: 600px) {
  :root { --page-pad: 16px; }
  section { padding: 56px 0; }

  /* Topbar */
  .topbar__row { gap: 8px; padding: 10px 0; }
  .logo { font-size: 16px; }
  .logo__mark { width: 28px; height: 28px; font-size: 11px; border-radius: 8px; }
  .lang-switch { display: none; }
  .phone-link { display: none; }
  .messengers { display: none; }
  .topbar__actions { display: none !important; }
  .nav { display: none; }
  .hamburger { display: flex !important; }

  /* Hero */
  .hero { padding: 20px 0 60px; }
  .hero__grid { gap: 28px; margin-top: 28px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero__sub { font-size: 16px; }
  .hero__visual { aspect-ratio: 3/4; }
  .hero__ctas { flex-direction: column; gap: 10px; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .hero__metrics { grid-template-columns: 1fr 1fr; gap: 1px; }
  .hero__metric { padding: 16px; }
  .hero__metric-num { font-size: 30px; }
  .hero__metric-label { font-size: 11px; }
  .hero__stat-card { padding: 14px 16px; }
  .hero__stat-num { font-size: 36px; }
  .hero__stat-label { font-size: 12px; }
  .hero__mini-avatars { padding-top: 10px; margin-top: 10px; }
  .hero__pill { font-size: 12px; }

  /* Sections */
  .section-head { margin-bottom: 32px; gap: 12px; }
  .section-head__sub { font-size: 16px; }
  h2 { font-size: clamp(26px, 7vw, 38px); }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit { padding: 24px 20px; }
  .benefit__ic { width: 44px; height: 44px; border-radius: 12px; }

  /* Jobs */
  .jobs__grid { grid-template-columns: 1fr; gap: 14px; }
  .jobs__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .job__photo { height: 160px; }
  .job__rate-num { font-size: 26px; }

  /* Countries */
  .countries__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .country-tile { padding: 14px 12px; gap: 10px; }
  .country-tile__flag { width: 32px; height: 24px; font-size: 16px; }
  .country-tile__name { font-size: 13px; }
  .country-tile__count { font-size: 11px; }

  /* Categories */
  .cat__grid { grid-template-columns: 1fr; gap: 12px; }
  .cat { min-height: 200px; padding: 24px 20px; }

  /* Steps */
  .steps { padding: 32px 20px; border-radius: var(--radius-lg); }
  .steps__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .steps__head h2 { font-size: clamp(24px, 6vw, 36px); }
  .steps__grid { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 20px 0; }

  /* Calculator */
  .calc { padding: 24px 16px; gap: 28px; border-radius: var(--radius-lg); }
  .calc__result-big { font-size: 52px; }
  .calc__result { padding: 24px 20px; }

  /* Stats */
  .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 24px 18px; border-radius: var(--radius-md); }
  .stat__num { font-size: 44px; }

  /* Testimonials */
  .testi__grid { grid-template-columns: 1fr; gap: 12px; }
  .testi__quote { font-size: 15px; }

  /* FAQ */
  .faq__side { display: none; }
  .faq__item summary { font-size: 15px; }

  /* CTA */
  .cta-final { padding: 28px 20px; border-radius: var(--radius-lg); gap: 28px; }
  .cta-final h2 { font-size: clamp(24px, 6vw, 36px); }
  .cta-final__form { padding: 20px; }

  /* Footer */
  .footer { padding: 48px 0 24px; margin-top: 56px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; font-size: 12px; }

  /* Logos */
  .logos-strip__row { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Cookies */
  .cookies { left: 12px; right: 12px; bottom: 12px; max-width: none; }

  /* Sticky msgs */
  .sticky-msgs { right: 14px; bottom: 14px; }
  .sticky-msgs .msg-float { width: 48px; height: 48px; }
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
  display: none;
  width: 42px; height: 42px; border-radius: 10px;
  margin-left: auto;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer; padding: 0;
  flex-shrink: 0;
  z-index: 110;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
}
.mobile-nav.open { display: block; }
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.mobile-nav__drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--dark-2);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.mobile-nav__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.mobile-nav__close {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #fff;
  display: grid; place-items: center;
}
.mobile-nav__link {
  display: block; padding: 14px 16px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: background .15s, color .15s;
}
.mobile-nav__link:hover, .mobile-nav__link:active { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-nav__divider {
  height: 1px; background: rgba(255,255,255,0.1);
  margin: 8px 0;
}
.mobile-nav__cta {
  margin-top: 12px; padding: 0 4px;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav__phone {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; color: rgba(255,255,255,0.85);
  font-weight: 600; font-size: 16px;
}
.mobile-nav__langs {
  display: flex; gap: 8px; padding: 8px 16px;
}
.mobile-nav__langs button {
  flex: 1; padding: 10px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 600; text-align: center;
}
.mobile-nav__langs button.on { background: linear-gradient(135deg, var(--grad-2), var(--grad-3)); color: #fff; }



/* ---------- COMMUNITY ---------- */
.community__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.community-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none; color: inherit;
}
.community-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-3);
}
.community-card__top {
  display: flex; align-items: center; gap: 12px;
}
.community-card__ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
}
.community-card__net {
  display: flex; flex-direction: column; gap: 2px;
}
.community-card__members {
  font-size: 12px; color: var(--ink-3); font-weight: 500;
}
.community-card__name {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  margin: 0;
}
.community-card__desc {
  font-size: 14px; line-height: 1.55; color: var(--ink-2);
  margin: 0;
}
.community-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  padding-top: 8px;
}
@media (max-width: 600px) {
  .community__grid { grid-template-columns: 1fr; }
  .community-card { padding: 20px; }
}
