/* VIZAVIK — styles.css
   Design tokens: navy + gold, two full compositions (desktop 1200+,
   mobile <768), tablet 768-1199 between.
   Type: Playfair Display (headlines, big numbers) for voice/personality.
   Manrope (body/UI) for everything functional — nav, labels, buttons,
   form. Loaded from Google Fonts (see base.html).
   NOTE: Fraunces was tried first but has no Cyrillic glyphs — would have
   silently fallen back to a system serif on every RU page. Playfair
   Display covers Cyrillic + Latin + the Uzbek ʻ/oʻ/gʻ okina (U+02BB-02BC)
   across all three site languages. Verified via the actual Google Fonts
   CSS2 response, not assumed. */

:root {
  --ink: #0E2247;
  --ink-2: #1B3766;
  --gold: #C8921C;
  --gold-2: #F2CE72;
  /* --gold as foreground text on white/mist fails WCAG AA (2.6-2.8:1,
     needs 4.5:1) — verified by computing actual contrast ratios against
     rendered backgrounds, not assumed. Use --gold-ink for any text, icon,
     or focus-ring use; keep --gold/--gold-2 for backgrounds, buttons,
     gradients, and the decorative arc, where dark --ink text sits on top
     and contrast is already comfortably >5:1. */
  --gold-ink: #8A6514;
  --paper: #FFFFFF;
  --mist: #F4F6FA;
  --band: #DDE3ED;
  --ok: #0E6B5C;
  --risk: #B3122E;

  --font-display: 'Playfair Display', ui-serif, Georgia, serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 14px;
  --container: 1240px;
  --gap: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; margin: 0; line-height: 1.15; }
p { margin: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* clears the sticky header when jumping to an in-page anchor (#turlar etc) */
section[id] { scroll-margin-top: 90px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

:focus-visible {
  outline: 3px solid var(--gold-ink);
  outline-offset: 2px;
}

/* skip-link: invisible until keyboard-focused, lets keyboard/screen-reader
   users bypass the header nav instead of tabbing through it every page */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}
/* on dark sections the darkened ink-gold reads too close to the navy bg —
   use the bright gold there instead, where it has excellent contrast */
.site-footer :focus-visible,
.what-awaits :focus-visible,
.director-photo-placeholder :focus-visible,
.mobile-call-bar:focus-visible {
  outline-color: var(--gold-2);
}

/* ---------- depth: glow fields + glass surfaces ---------- */
/* Ambient gradient blobs behind a section, so glass surfaces placed on
   top have something translucent worth showing. Pure CSS, no markup. */
.glow-field { position: relative; overflow: hidden; }
.glow-field::before,
.glow-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}
.glow-field::before {
  top: -18%; right: -12%;
  width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, rgba(200, 146, 28, 0.30), rgba(200, 146, 28, 0) 70%);
}
.glow-field::after {
  bottom: -22%; left: -14%;
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(27, 55, 102, 0.30), rgba(27, 55, 102, 0) 70%);
}
.glow-field > .wrap { position: relative; z-index: 1; }
.glow-field.is-dark::before { background: radial-gradient(circle, rgba(242, 206, 114, 0.22), rgba(242, 206, 114, 0) 70%); }
.glow-field.is-dark::after { background: radial-gradient(circle, rgba(200, 146, 28, 0.16), rgba(200, 146, 28, 0) 70%); }

.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px rgba(14, 34, 71, 0.12);
}
.glass.is-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ---------- scroll reveal ---------- */
/* .reveal is added by app.js right before observing — if JS never runs,
   nothing gets this class and content stays fully visible by default. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.35s ease-out, transform 0.35s ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- hero entrance (plays once on load, not scroll-gated) ---------- */
.hero-text > * { animation: heroIn 0.8s cubic-bezier(0.16, 0.8, 0.3, 1) both; }
.hero-text > *:nth-child(1) { animation-delay: 0ms; }
.hero-text > *:nth-child(2) { animation-delay: 90ms; }
.hero-text > *:nth-child(3) { animation-delay: 180ms; }
.hero-text > *:nth-child(4) { animation-delay: 270ms; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ---------- buttons ---------- */
/* No `border` here on purpose: a transparent 2px border under a
   border-radius:999px gradient background renders a visible seam along
   the rounded edge in Chromium (confirmed — zoomed screenshot showed a
   dark ring tracing the left/bottom curve of the gold button). .btn-ghost
   gets its outline via inset box-shadow instead, which paints inside the
   box and can't produce that seam, and keeps both variants the same
   rendered size since box-shadow takes no layout space. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 17px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink);
  box-shadow: 0 0 0 rgba(200, 146, 28, 0);
}
.btn-gold:hover, .btn-gold:focus-visible {
  box-shadow: 0 0 28px 4px rgba(200, 146, 28, 0.4), 0 8px 22px rgba(200, 146, 28, 0.3);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--band);
  color: var(--ink);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--ink); }

.ink-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 10px;
}

.section-title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 8px; letter-spacing: -0.01em; }
.section-subtitle { color: #445; font-size: 17px; margin-bottom: 32px; max-width: 60ch; }

section { padding: 56px 0; }
.is-mist { background: var(--mist); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--band);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo { height: 40px; width: auto; }
.footer-logo { height: 40px; width: auto; }
.main-nav { display: none; gap: 18px; font-weight: 700; font-size: 14px; white-space: nowrap; }
.main-nav a { display: inline-block; padding: 8px 0; } /* WCAG 2.5.8: keep tap/click target >=24px tall */
.main-nav a:hover { color: var(--gold-ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: none; gap: 4px; border: 1px solid var(--band); border-radius: 999px; padding: 3px; }
.lang-item { padding: 5px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; color: #667; }
.lang-item.is-current { background: var(--ink); color: #fff; }
.header-call { display: none; white-space: nowrap; padding: 0 16px; font-size: 14px; }
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--band);
  border-radius: 10px;
  background: none;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--ink); }
.mobile-menu { display: flex; flex-direction: column; padding: 8px 20px 20px; border-top: 1px solid var(--band); }
.mobile-menu a { padding: 12px 0; font-weight: 700; border-bottom: 1px solid var(--band); min-height: 48px; display: flex; align-items: center; }
.mobile-menu[hidden] { display: none; }

/* ---------- hero ---------- */
.hero { padding-top: 40px; padding-bottom: 48px; background: var(--paper); overflow: hidden; }
.hero-inner { position: relative; }
.hero-title { font-size: clamp(34px, 7vw, 46px); letter-spacing: -0.015em; }
.hero-subtitle { margin-top: 18px; font-size: 18px; color: #445; max-width: 46ch; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-arc { display: none; }

/* airplane flying along the same curve as the arc it's drawn on — loops:
   fades in at the start, flies the path, fades out before the end, resets */
.hero-plane {
  offset-path: path("M20 270 C 127 145, 234 86, 360 40");
  offset-rotate: auto;
  animation: heroPlaneFly 6s ease-in-out infinite;
}
@keyframes heroPlaneFly {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  88% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-plane { animation: none; opacity: 0; }
}

/* ---------- chain ---------- */
.chain-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.chain-card {
  background: var(--paper);
  border: 1px solid var(--band);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.chain-card:hover { border-color: var(--gold-ink); transform: translateY(-2px); }
.chain-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 14px;
}
.chain-card h3 { font-size: 19px; margin-bottom: 8px; }
.chain-card p { color: #445; }

/* ---------- visas ---------- */
.services-list { display: grid; gap: 10px; margin-bottom: 32px; }
.services-list li {
  padding-left: 26px;
  position: relative;
  color: #334;
}
.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.countries-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
.country-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--band);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 48px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.country-card:hover { border-color: var(--gold-ink); transform: translateY(-2px); }
.country-name { display: block; font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.country-note { display: block; color: #667; font-size: 14px; margin-top: 4px; }
.country-more { display: inline-block; margin-top: 12px; color: var(--gold-ink); font-weight: 700; font-size: 14px; }
/* tour-card: same block, no link target yet — no hover affordance */
.tour-card { cursor: default; }
.tour-card:hover { border-color: var(--band); transform: none; }

/* ---------- destinations (broader country list, not linked) ---------- */
.destinations-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.destination-chip {
  padding: 8px 16px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--band);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
}

/* ---------- director ---------- */
.director-inner { display: grid; gap: 32px; grid-template-columns: 1fr; }
.director-photo img,
.director-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
}
.director-photo-placeholder {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 0 0 1px rgba(242, 206, 114, 0.18), 0 20px 50px rgba(14, 34, 71, 0.3), 0 0 40px rgba(200, 146, 28, 0.15);
  text-align: center;
  padding: 20px;
}
.director-name { font-size: clamp(26px, 4vw, 34px); }
.director-fullname { color: #556; margin-top: 6px; }
.director-quote {
  margin: 20px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--mist);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #223;
}
.countries-block { margin-top: 28px; }
.countries-block.is-placeholder { outline: 2px dashed var(--risk); outline-offset: 8px; }
.countries-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--gold-ink);
}
.countries-intro { margin-top: 6px; color: #445; }
.countries-list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  font-size: 14px;
  color: #445;
}
.countries-list li::before { content: "· "; color: var(--gold); }

/* ---------- process ---------- */
.process-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(2, 1fr); }
.process-step { padding: 4px 0; }
.process-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-ink);
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 12px;
}
.process-step h3 { font-size: 17px; margin-bottom: 6px; }
.process-step p { color: #445; font-size: 15px; }

/* ---------- stats ---------- */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 44px); color: var(--ink); text-shadow: 0 0 36px rgba(200, 146, 28, 0.3); }
.stat-label { color: #667; font-size: 14px; }

/* ---------- faq ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(221, 227, 237, 0.8);
  border-radius: var(--radius);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 48px;
  display: flex;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; margin-left: auto; color: var(--gold-ink); font-size: 22px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 10px; color: #445; }

/* ---------- lead form ---------- */
.form { display: grid; gap: 16px; max-width: 480px; }
.form label { display: grid; gap: 6px; font-weight: 700; font-size: 14px; color: #334; }
.form input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--band);
  border-radius: 10px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--paper);
}
.form input:focus { border-color: var(--gold-ink); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { min-height: 20px; font-weight: 700; }
.form-status.is-success { color: var(--ok); }
.form-status.is-error { color: var(--risk); }

/* ---------- lead modal (desktop "Ariza qoldirish" popup) ---------- */
.lead-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: min(480px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: none;
  border-radius: var(--radius);
  padding: 32px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(14, 34, 71, 0.3);
}
.lead-modal::backdrop { background: rgba(14, 34, 71, 0.55); }
.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--band);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
}
.lead-modal-close:hover { border-color: var(--gold-ink); color: var(--gold-ink); }
.lead-modal .form { max-width: none; }

/* ---------- contact ---------- */
.contact-inner { display: grid; gap: 32px; grid-template-columns: 1fr; }
.contact-list { display: grid; gap: 4px 12px; }
.contact-list dt { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: #667; margin-top: 16px; }
.contact-list dt:first-child { margin-top: 0; }
.contact-list dd { margin: 0; font-weight: 700; font-size: 17px; }
.contact-list dd a { display: inline-block; padding: 6px 0; } /* WCAG 2.5.8: >=24px tall */
.contact-map-placeholder {
  width: 100%;
  min-height: 240px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px dashed var(--risk);
}

/* ---------- breadcrumbs (visa hub / detail pages) ---------- */
.breadcrumbs { padding: 16px 0; border-bottom: 1px solid var(--band); }
.breadcrumbs-inner { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #667; flex-wrap: wrap; }
.breadcrumbs-inner a { display: inline-block; padding: 4px 0; } /* WCAG 2.5.8: >=24px tall */
.breadcrumbs-inner a:hover { color: var(--gold-ink); }
.breadcrumbs-inner [aria-current] { color: var(--ink); font-weight: 700; }

/* ---------- visa hub / detail shared ---------- */
.visa-hero { padding-top: 40px; padding-bottom: 40px; }
.visa-hero-title { margin-top: 4px; }
.section-title-sm { font-size: clamp(21px, 3vw, 26px); margin-bottom: 18px; }
.visa-section { padding: 48px 0; }
.visa-text { color: #445; max-width: 68ch; font-size: 17px; }
.visa-note { margin-top: 18px; color: #667; font-size: 14px; max-width: 60ch; }
.documents-list { margin-bottom: 0; }
.visa-grid-2 { display: grid; gap: 32px; grid-template-columns: 1fr; }
.what-awaits { background: var(--ink); color: #fff; }
.what-awaits .eyebrow { color: var(--gold-2); }
.what-awaits-text { font-size: clamp(19px, 2.6vw, 24px); font-family: var(--font-display); font-weight: 800; line-height: 1.35; max-width: 46ch; }
.visa-cta { position: relative; overflow: hidden; border-top: 1px solid var(--band); border-bottom: 1px solid var(--band); }
.visa-cta::before, .visa-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.visa-cta::before { top: -40%; right: -8%; width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; background: radial-gradient(circle, rgba(200, 146, 28, 0.28), rgba(200, 146, 28, 0) 70%); }
.visa-cta::after { bottom: -50%; left: -10%; width: 36vw; height: 36vw; max-width: 420px; max-height: 420px; background: radial-gradient(circle, rgba(27, 55, 102, 0.22), rgba(27, 55, 102, 0) 70%); }
.visa-cta .wrap { position: relative; z-index: 1; }
.visa-cta-inner {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(14, 34, 71, 0.1);
}
.visa-cta-inner { display: flex; flex-direction: column; gap: 20px; justify-content: space-between; align-items: flex-start; }
.visa-cta-inner .hero-actions { margin-top: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #dfe4ee; padding: 48px 0 0; }
.footer-inner { display: grid; gap: 28px; grid-template-columns: 1fr; padding-bottom: 32px; }
.footer-slogan { margin-top: 12px; color: var(--gold-2); font-style: italic; max-width: 32ch; }
.footer-contact a { display: inline-block; padding: 4px 0; font-weight: 800; font-size: 18px; color: #fff; }
.footer-contact p { margin-top: 6px; color: #b7c0d6; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { border-color: var(--gold-2); background: rgba(255, 255, 255, 0.06); }
/* light bg variant (Aloqa section, on --mist) — dark footer uses the base white-on-navy style */
.social-icon.is-light { border-color: var(--band); color: var(--ink); }
.social-icon.is-light:hover { border-color: var(--gold-ink); background: var(--paper); }
.contact-social { margin-top: 20px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.12); padding: 16px 20px; font-size: 13px; color: #8f9ab5; }

/* ---------- mobile sticky call bar ---------- */
.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  background: var(--ink);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.mobile-call-bar.is-visible { transform: translateY(0); }
.mobile-call-bar-phone { font-weight: 800; display: flex; align-items: center; gap: 8px; }
.mobile-call-bar-tg {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
}

/* =========================================================
   TABLET — 768px+: two columns, header still compact-full
   ========================================================= */
@media (min-width: 768px) {
  .chain-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .director-inner { grid-template-columns: 240px 1fr; align-items: start; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav { display: flex; }
  .lang-switch { display: inline-flex; }
  /* full header from tablet up: phone button replaces hamburger + sticky bar */
  .header-call { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .mobile-call-bar { display: none; }

  .visa-grid-2 { grid-template-columns: 1fr 1fr; }
  .visa-cta-inner { flex-direction: row; align-items: center; }
}

/* =========================================================
   DESKTOP — 1200px+: distinct wide composition per plan
   ========================================================= */
@media (min-width: 1200px) {
  section { padding: 88px 0; }
  .main-nav { gap: 28px; font-size: 15px; }
  .header-actions { gap: 12px; }
  .header-call { padding: 0 22px; font-size: 16px; }

  .hero { padding-top: 72px; padding-bottom: 96px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: 40px;
  }
  .hero-title { font-size: clamp(46px, 4.2vw, 64px); letter-spacing: -0.02em; }
  .hero-subtitle { font-size: 19px; }
  .hero-arc {
    display: block;
    position: relative;
    height: 100%;
    min-height: 420px;
  }
  .hero-arc svg { position: absolute; inset: 0; width: 100%; height: 100%; }

  .chain-grid { grid-template-columns: repeat(3, 1fr); }

  .countries-grid { grid-template-columns: repeat(4, 1fr); }

  .director-inner { grid-template-columns: 400px 1fr; gap: 56px; }
  .countries-list { grid-template-columns: repeat(4, 1fr); }

  .process-grid { grid-template-columns: repeat(4, 1fr); }

  .contact-inner { grid-template-columns: 1fr 1.2fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding-bottom: 40px; }
}

@media (min-width: 1400px) {
  .wrap { padding: 0 32px; }
}
