/* =========================================================
   IMMIGRO AI — Design Tokens & Global Styles
   ========================================================= */

:root {
  /* Color tokens */
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-500: #3B82F6;
  --blue-50:  #EFF6FF;
  --emerald-500: #10B981;
  --emerald-600: #059669;
  --emerald-50: #ECFDF5;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;

  --ink-950: #0B1120;
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-300: #CBD5E1;
  --ink-100: #E2E8F0;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 16px 40px rgba(37, 99, 235, 0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light only; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, .display {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink-950);
}

p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 4px var(--emerald-50);
}

.section {
  padding: 56px 0;
}
.section--tight { padding: 40px 0; }
.section--gray { background: var(--gray-50); }
@media (max-width: 720px) {
  .section { padding: 40px 0; }
  .section--tight { padding: 28px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink-950);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(37,99,235,0.32); }
.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--ink-100);
}
.btn-ghost:hover { border-color: var(--ink-300); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--ink-950); font-family: 'Manrope', sans-serif; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.06);
}
.footer-brand .brand-mark { box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-700);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink-950); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 32px;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(37,99,235,0.14), transparent 60%),
    radial-gradient(900px 480px at 8% 8%, rgba(16,185,129,0.12), transparent 55%),
    var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  margin-bottom: 22px;
}
.hero .lede {
  font-size: 18px;
  color: var(--ink-700);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink-950); color: var(--white);
  padding: 12px 20px; border-radius: 14px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn.disabled { background: var(--white); color: var(--ink-900); border: 1.5px dashed var(--ink-300); box-shadow: none; }
.store-btn small { display: block; font-size: 10.5px; opacity: 0.75; font-weight: 500; }
.store-btn strong { display: block; font-size: 15.5px; font-weight: 700; }
.watch-demo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px; color: var(--ink-900); }
.watch-demo .play-dot {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}
.watch-demo:hover .play-dot { border-color: var(--blue-600); transform: scale(1.05); }

.hero-trustline { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  display: inline-block;
}
.avatar-stack span:first-child { margin-left: 0; }
.hero-trustline p { font-size: 13.5px; color: var(--ink-700); font-weight: 600; }
.hero-trustline strong { color: var(--ink-950); }

/* Phone mockup + interview signature widget */
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone {
  width: 300px;
  height: 610px;
  border-radius: 46px;
  background: var(--ink-950);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,23,42,0.06);
  position: relative;
  animation: floatY 6s ease-in-out infinite;
}
.phone::before {
  content: '';
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; border-radius: 12px; background: var(--ink-950); z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-body {
  flex: 1;
  background: var(--white);
  margin-top: 0;
  padding: 46px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.chat-row { display: flex; gap: 8px; max-width: 88%; opacity: 0; animation: chatIn 0.5s var(--ease) forwards; }
.chat-row.officer { align-self: flex-start; }
.chat-row.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-avatar {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
}
.chat-avatar.officer-a { background: linear-gradient(135deg, var(--ink-700), var(--ink-950)); }
.chat-avatar.user-a { background: linear-gradient(135deg, var(--emerald-500), var(--blue-600)); }
.bubble {
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 500;
}
.chat-row.officer .bubble { background: var(--gray-100); color: var(--ink-900); border-bottom-left-radius: 4px; }
.chat-row.user .bubble { background: var(--blue-600); color: var(--white); border-bottom-right-radius: 4px; }
.waveform { display: flex; align-items: center; gap: 2px; height: 14px; margin-top: 4px; }
.waveform span {
  width: 2.5px; background: rgba(255,255,255,0.85); border-radius: 2px;
  animation: wave 0.9s ease-in-out infinite;
}
.phone-footer {
  padding: 10px 16px 16px;
  background: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.mic-pill {
  flex: 1; height: 42px; border-radius: 21px; background: var(--gray-100);
  display: flex; align-items: center; padding: 0 14px; gap: 6px;
}
.mic-pill span { font-size: 11.5px; color: var(--ink-500); font-weight: 600; }
.mic-dot { width: 9px; height: 9px; border-radius: 50%; background: #EF4444; animation: pulse 1.4s ease-in-out infinite; }

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  animation: floatY 5.5s ease-in-out infinite;
}
.float-card small { display: block; font-size: 10.5px; color: var(--ink-500); font-weight: 600; }
.float-card--score { top: 8%; left: -6%; animation-delay: 0.3s; }
.float-card--flag { bottom: 12%; right: -8%; animation-delay: 1s; }
.float-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.float-icon.green { background: var(--emerald-50); }
.float-icon.amber { background: #FEF3C7; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes chatIn { to { opacity: 1; transform: translateY(0); } }
@keyframes wave { 0%,100% { height: 4px; } 50% { height: 14px; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Trust / stats strip */
.stats-strip {
  background: var(--ink-950);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 780px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat { color: var(--white); text-align: left; }
.stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { font-size: 13.5px; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 4px; }

/* Section headers */
.section-head { max-width: 640px; margin-bottom: 28px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--ink-700); font-size: 16.5px; }

/* Why cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-bottom: 20px;
}
.why-card:nth-child(3n+1) .why-icon { background: var(--blue-50); }
.why-card:nth-child(3n+2) .why-icon { background: var(--emerald-50); }
.why-card:nth-child(3n+3) .why-icon { background: #FEF3C7; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--ink-700); font-size: 14.5px; }

/* Countries */
.country-tabs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.country-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--ink-100); font-weight: 700; font-size: 13.5px;
  background: var(--white); color: var(--ink-700);
  transition: all 0.2s var(--ease);
}
.country-tab .flag {
  width: 38px; height: 38px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.06);
}
.country-tab.active .flag { box-shadow: 0 0 0 1px rgba(255,255,255,0.25); }
.country-tab:hover { border-color: var(--blue-500); color: var(--ink-950); }
.country-tab.active { background: var(--ink-950); color: var(--white); border-color: var(--ink-950); }

.country-panel { display: none; }
.country-panel.active { display: block; animation: fadeUp 0.4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.country-panel-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ink-100);
}
@media (max-width: 800px) { .country-panel-inner { grid-template-columns: 1fr; } }
.country-panel-visual {
  background: linear-gradient(150deg, var(--blue-600), #1e3a8a);
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.country-panel-visual .big-flag {
  width: 88px; height: 66px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.15);
}
.country-panel-visual h3 { color: var(--white); font-size: 30px; }
.country-panel-visual p { color: rgba(255,255,255,0.75); font-size: 14px; }
.country-panel-list { padding: 40px 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.country-panel-list .item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-900);
  padding: 10px 0; border-bottom: 1px solid var(--ink-100);
}
.check-dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--emerald-50);
  color: var(--emerald-600); display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; font-weight: 900;
}

/* How it works */
.steps-rail { position: relative; }
.steps-rail::before {
  content: '';
  position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--ink-100) 0 8px, transparent 8px 16px);
}
@media (max-width: 720px) { .steps-rail::before { display: none; } }
.step-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding: 22px 0;
  align-items: flex-start;
}
.step-num {
  width: 56px; height: 56px; border-radius: 18px;
  background: var(--white); border: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 17px;
  color: var(--blue-600); box-shadow: var(--shadow-sm); z-index: 1; position: relative;
}
.step-row h4 { font-size: 19px; margin-bottom: 6px; }
.step-row p { color: var(--ink-700); font-size: 14.5px; max-width: 480px; }

/* Features carousel */
.feature-carousel { gap: 22px; }
.feature-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.feature-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: var(--blue-50);
  margin-bottom: 20px;
}
.feature-card:nth-child(3n+2) .feature-card-icon { background: var(--emerald-50); }
.feature-card:nth-child(3n+3) .feature-card-icon { background: #FEF3C7; }
.feature-card-icon .glyph { line-height: 1; }
.feature-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill);
  margin-bottom: 16px; align-self: flex-start;
}
.feature-card:nth-child(3n+1) .feature-tag { background: var(--blue-50); color: var(--blue-600); }
.feature-card:nth-child(3n+2) .feature-tag { background: var(--emerald-50); color: var(--emerald-600); }
.feature-card:nth-child(3n+3) .feature-tag { background: #FEF3C7; color: #92400E; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-700); font-size: 14.5px; margin-bottom: 18px; }
.feature-card .feature-list { list-style: none; padding: 0; margin: 0 0 0 0; display: grid; gap: 10px; }
.feature-card .feature-list li { display: flex; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-900); }

/* Screenshots carousel — Option B: minimal, frameless */
.carousel {
  display: flex; gap: 26px; overflow-x: auto; padding: 12px 4px 24px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.shot-minimal {
  scroll-snap-align: start;
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
}
.shot-minimal-image {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.shot-minimal-image img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,23,42,0.06);
}
.shot-minimal-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 4px;
}
.shot-minimal h5 { font-size: 16px; font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--ink-950); margin-bottom: 4px; }
.shot-minimal p { font-size: 13px; color: var(--ink-700); }
.carousel-nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.carousel-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.carousel-nav button:hover { background: var(--ink-950); color: var(--white); border-color: var(--ink-950); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 18px;
}
.stars { color: var(--amber-500); font-size: 13px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 14.5px; color: var(--ink-900); line-height: 1.6; }
.testi-person { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.testi-person strong { display: block; font-size: 13.5px; }
.testi-person span { font-size: 12.5px; color: var(--ink-500); }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ink-100); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; text-align: left; font-size: 16px; font-weight: 700; color: var(--ink-950);
}
.faq-q .plus { font-size: 20px; font-weight: 400; color: var(--ink-500); transition: transform 0.3s var(--ease); flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--ink-700); font-size: 14.5px; max-width: 640px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card.accent { border-color: var(--amber-400); background: linear-gradient(180deg, #FFFBEB, var(--white) 40%); }
.price-badge.amber { background: var(--amber-500); }
.price-strike { font-size: 14px; color: var(--ink-500); text-decoration: line-through; font-weight: 700; margin-left: 8px; }
.price-card {
  border-radius: var(--radius-xl); padding: 38px 32px; border: 1px solid var(--ink-100);
  background: var(--white); display: flex; flex-direction: column;
}
.price-card.highlight {
  background: var(--ink-950); color: var(--white); border-color: var(--ink-950);
  position: relative; box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute; top: -13px; right: 28px; background: var(--emerald-500); color: var(--white);
  font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: var(--radius-pill); letter-spacing: 0.04em;
}
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card.highlight h3 { color: var(--white); }
.price-card .price-sub { font-size: 13.5px; color: var(--ink-500); margin-bottom: 24px; }
.price-card.highlight .price-sub { color: rgba(255,255,255,0.6); }
.price-amount { font-family: 'Manrope', sans-serif; font-size: 42px; font-weight: 800; margin-bottom: 4px; }
.price-amount span { font-size: 15px; font-weight: 600; color: var(--ink-500); }
.price-card.highlight .price-amount span { color: rgba(255,255,255,0.6); }
.price-list { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 12px; flex: 1; }
.price-list li { display: flex; gap: 10px; font-size: 14px; font-weight: 600; }
.price-list .check-dot { background: rgba(16,185,129,0.15); }

/* Final CTA */
.final-cta {
  background: linear-gradient(150deg, var(--blue-700), var(--ink-950) 70%);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.25), transparent 70%);
  top: -220px; right: -140px;
}
.final-cta h2 { color: var(--white); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 34px; max-width: 480px; margin-left: auto; margin-right: auto; }
.final-cta .hero-ctas { justify-content: center; }

/* Footer */
footer {
  background: var(--ink-950);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { font-size: 14px; margin: 16px 0 22px; max-width: 260px; }
.footer-col h5 { color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 28px; font-size: 13px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: 0.2s;
}
.social-row a:hover { background: var(--white); color: var(--ink-950); }
.lang-row { display: flex; gap: 6px; flex-wrap: wrap; }
.lang-row span {
  font-size: 12px; padding: 5px 10px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; gap: 6px;
}
.lang-flag { width: 16px; height: 12px; object-fit: cover; border-radius: 2px; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Inner page hero (contact/privacy/terms) */
.page-hero {
  padding: 64px 0 48px;
  background: linear-gradient(180deg, var(--blue-50), var(--white));
  border-bottom: 1px solid var(--ink-100);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p { color: var(--ink-700); font-size: 16px; max-width: 560px; }
.page-hero .meta { margin-top: 18px; font-size: 13.5px; color: var(--ink-500); font-weight: 600; }

.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { font-size: 21px; margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-700); font-size: 15px; line-height: 1.75; }
.legal-body ul { padding-left: 20px; margin: 10px 0; }
.legal-body li { margin-bottom: 6px; }
.legal-toc {
  background: var(--gray-50); border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-bottom: 8px;
}
.legal-toc h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-500); margin-bottom: 14px; }
.legal-toc ol { margin: 0; padding-left: 18px; columns: 2; gap: 20px; }
.legal-toc li { font-size: 13.5px; margin-bottom: 8px; }
.legal-toc a { color: var(--blue-600); font-weight: 600; }
@media (max-width: 600px) { .legal-toc ol { columns: 1; } }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--gray-50); border: 1px solid var(--ink-100); border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-info-card .row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--ink-100); }
.contact-info-card .row:last-child { border-bottom: none; }
.contact-info-card .row .ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--white); border: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px;
}
.contact-info-card .row strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-info-card .row span { font-size: 13.5px; color: var(--ink-700); }
.topic-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.topic-chips span {
  font-size: 12.5px; font-weight: 700; padding: 8px 13px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--ink-100); color: var(--ink-700);
}
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--ink-900); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--ink-100);
  font-family: inherit; font-size: 14.5px; background: var(--white); color: var(--ink-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px var(--blue-50);
}
.form-field textarea { resize: vertical; min-height: 130px; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }