/* ==========================================================================
   AsiaBridge — Design System
   ========================================================================== */

:root {
  /* Brand palette — sampled from the AsiaBridge logomark */
  --navy-950: #0a1826;
  --navy-900: #0f2138;
  --navy-800: #16304f;
  --navy-700: #1e3a5f;
  --navy-600: #2c4e7c;
  --navy-500: #3d6299;

  --orange-600: #b56a1e;
  --orange-500: #d28238;
  --orange-400: #de9a52;
  --orange-300: #ecb87f;
  --orange-100: #fdf1e2;

  --ink-900: #101826;
  --ink-700: #33404f;
  --gray-600: #55606e;
  --gray-400: #8a94a3;
  --gray-300: #d7dce3;
  --gray-200: #e7eaef;
  --gray-100: #f4f6f8;
  --white: #ffffff;

  --success: #1c7c54;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 33, 56, 0.06), 0 1px 1px rgba(15, 33, 56, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 33, 56, 0.08), 0 2px 8px rgba(15, 33, 56, 0.06);
  --shadow-lg: 0 24px 48px rgba(15, 33, 56, 0.14), 0 8px 16px rgba(15, 33, 56, 0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Typography scale ---------- */
h1 { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); }
h4 { font-size: 1.05rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

.eyebrow--on-dark {
  color: var(--orange-300);
}

.lede {
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.18rem);
  color: var(--gray-600);
  max-width: 60ch;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 12px;
}

.section-head .lede {
  margin-top: 14px;
}

.section-head.center .lede {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(56px, 8vw, 108px);
}

.section--tight {
  padding-block: clamp(40px, 6vw, 72px);
}

.bg-navy {
  background: var(--navy-800);
  color: var(--gray-200);
}
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

.bg-soft {
  background: var(--gray-100);
}

.bg-tint {
  background: linear-gradient(180deg, var(--orange-100), var(--white) 60%);
}

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(210, 130, 56, 0.28);
}
.btn-primary:hover {
  background: var(--orange-600);
  box-shadow: 0 12px 26px rgba(210, 130, 56, 0.36);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn-outline-navy:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { box-shadow: var(--shadow-md); }

.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Site header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 16px rgba(15, 33, 56, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}
.brand-word span { color: var(--orange-500); }

/* Logo mark on dark backgrounds gets a light card so it stays legible */
.brand-mark--card {
  background: var(--white);
  border-radius: 10px;
  padding: 5px;
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-700);
  transition: background-color 0.16s var(--ease), color 0.16s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--orange-100);
  color: var(--orange-600);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 20px 24px 40px;
  overflow-y: auto;
}

.mobile-menu.is-open { display: block; }

.mobile-menu a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu .btn { margin-top: 24px; }

body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(76px + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(64px, 9vw, 120px);
  background: radial-gradient(ellipse 120% 100% at 50% 0%, var(--navy-700) 0%, var(--navy-900) 62%, var(--navy-950) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  z-index: -1;
  opacity: 0.5;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -120px;
  background: radial-gradient(circle, rgba(210, 130, 56, 0.35), transparent 70%);
}

.hero::after {
  width: 460px;
  height: 460px;
  left: -140px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(61, 98, 153, 0.45), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-top: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-400);
}

.hero .lede {
  color: rgba(231, 234, 239, 0.86);
  margin-top: 18px;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}

.hero-meta span {
  font-size: 0.82rem;
  color: rgba(231, 234, 239, 0.68);
}

/* Hero visual — trade-lane graphic */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
}

.hero-visual .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.hero-visual .ring--2 { inset: 12%; border-style: solid; border-color: rgba(255, 255, 255, 0.08); }

.hero-visual .node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.hero-visual .node .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.hero-visual .node.dubai { top: 6%; left: 4%; }
.hero-visual .node.dubai .dot { background: var(--orange-400); }

.hero-visual .node.india { top: 44%; right: -2%; }
.hero-visual .node.india .dot { background: var(--white); }

.hero-visual .node.vietnam { bottom: 10%; left: 10%; }
.hero-visual .node.vietnam .dot { background: var(--white); }

.hero-visual .node.bangladesh { top: 74%; right: 18%; }
.hero-visual .node.bangladesh .dot { background: var(--white); }

.hero-visual .node span {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.hero-visual .card-float {
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 90%;
}

.hero-visual .card-float .icon-badge {
  width: 40px;
  height: 40px;
}

.hero-visual .card-float strong {
  display: block;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.hero-visual .card-float span {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.hero-visual svg.routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: minmax(0,1fr); }
  .hero-visual { margin-top: 12px; }
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding-top: calc(76px + 56px);
  padding-bottom: 56px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  text-align: center;
}

.page-header .eyebrow { justify-content: center; }
.page-header h1 { color: var(--white); margin-top: 14px; }
.page-header .lede { margin: 16px auto 0; text-align: center; color: rgba(231,234,239,0.82); }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(231, 234, 239, 0.6);
  margin-top: 18px;
}
.breadcrumb a:hover { color: var(--orange-300); }

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-100);
  color: var(--orange-600);
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }

.icon-badge--navy {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange-300);
}

.icon-badge--lg { width: 64px; height: 64px; border-radius: var(--radius-lg); }
.icon-badge--lg svg { width: 30px; height: 30px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.card h3 { margin-top: 18px; }
.card p { margin-top: 10px; color: var(--gray-600); font-size: 0.96rem; }

.card-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.card-list svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Step cards with connecting index */
.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}

.step-card .step-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--orange-500);
  background: var(--orange-100);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .step-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .step-grid { grid-template-columns: minmax(0,1fr); }
}

/* ---------- Tabs (Importers / Manufacturers) ---------- */
.tabs {
  display: inline-flex;
  padding: 6px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  gap: 4px;
  margin-bottom: 36px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.tab-btn.is-active {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp 0.35s var(--ease); }

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

/* ---------- Pills / chips ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}

.pill .flag { font-size: 1.05rem; line-height: 1; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats-strip .stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stats-strip .stat:last-child { border-right: none; }

.stats-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  color: var(--navy-800);
}

.stats-strip span {
  font-size: 0.82rem;
  color: var(--gray-600);
}

@media (max-width: 760px) {
  .stats-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-strip .stat:nth-child(2) { border-right: none; }
}

/* ---------- Process timeline (how-it-works) ---------- */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0,1fr);
  gap: 24px;
  padding-bottom: 44px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item .t-marker {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 1;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 32px;
  width: 2px;
  height: calc(100% - 64px);
  background: var(--gray-300);
}

.timeline-item .t-body {
  padding-top: 10px;
}

.timeline-item .t-body h3 { margin-top: 0; }
.timeline-item .t-body p { margin-top: 8px; color: var(--gray-600); }

@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 48px minmax(0,1fr); gap: 16px; }
  .timeline-item .t-marker { width: 48px; height: 48px; font-size: 1rem; }
  .timeline-item:not(:last-child)::before { left: 24px; top: 48px; height: calc(100% - 48px); }
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-800);
  cursor: pointer;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--orange-500);
  transition: transform 0.25s var(--ease);
}

.faq-item.is-open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s var(--ease);
}

.faq-a p {
  padding: 0 4px 22px;
  color: var(--gray-600);
  max-width: 68ch;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(210, 130, 56, 0.4), transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); max-width: 22ch; }
.cta-banner .lede { color: rgba(231, 234, 239, 0.82); }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner > div:first-child { position: relative; z-index: 1; max-width: 560px; }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy-800);
}

.field label .req { color: var(--orange-500); }

.field input,
.field textarea,
.field select {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(210, 130, 56, 0.14);
}

.field textarea { resize: vertical; min-height: 120px; }

.field-hint { font-size: 0.78rem; color: var(--gray-400); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: #e9f6ef; color: var(--success); }
.form-status.error { background: #fbebe9; color: #b3261e; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: minmax(0,1fr); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(231, 234, 239, 0.72);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0,1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-word { color: var(--white); }
.footer-brand .brand-word span { color: var(--orange-400); }

.footer-brand p {
  margin-top: 14px;
  max-width: 34ch;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.footer-social a:hover { background: var(--orange-500); border-color: var(--orange-500); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.16s var(--ease); }
.footer-col a:hover { color: var(--orange-300); }

.footer-col .contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
}
.footer-col .contact-line svg {
  width: 17px;
  height: 17px;
  color: var(--orange-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 26px;
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--orange-300); }
.footer-bottom .legal-links { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: minmax(0,1fr); gap: 32px; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Misc ---------- */
.divider {
  height: 1px;
  background: var(--gray-200);
  border: none;
  margin-block: 0;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.badge-verified svg { width: 13px; height: 13px; color: var(--orange-400); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: minmax(0,1fr); gap: 32px; }
}

.media-frame {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.map-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 700px) {
  .country-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

.country-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
}
.country-card .flag { font-size: 1.6rem; }
.country-card strong { display: block; font-size: 0.92rem; color: var(--navy-800); }
.country-card span { font-size: 0.78rem; color: var(--gray-600); }

/* 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}
.error-page .code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 3rem + 5vw, 7rem);
  color: var(--orange-400);
  line-height: 1;
}
.error-page p { color: rgba(231,234,239,0.78); margin-top: 12px; }
.error-page .btn { margin-top: 28px; }

/* Prose (privacy/terms) */
.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose h2 { margin-top: 40px; margin-bottom: 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--gray-600); margin-top: 10px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose ul li { margin-top: 6px; }
.prose a { color: var(--orange-600); font-weight: 600; }
.prose strong { color: var(--ink-900); }
