/* =====================================================================
   SkillLink — Verified Workforce Platform
   Shared stylesheet for the marketing website
   Design goals: trust-first, mobile-first, high-contrast, large touch
   targets (audience includes low-digital-literacy blue-collar workers).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --brand:          #0071e3;   /* refined Apple-style blue */
  --brand-dark:     #0060c0;
  --brand-darker:   #0a2540;
  --brand-tint:     #eef5ff;
  --accent:         #f5a623;   /* warm saffron / CTA */
  --accent-dark:    #d98a0b;
  --verified:       #34a853;   /* verification green */
  --verified-tint:  #e9f8ee;

  /* Neutrals (Apple-inspired greys) */
  --ink:            #1d1d1f;
  --body:           #424245;
  --muted:          #86868b;
  --line:           #e5e5ea;
  --line-soft:      #f0f0f3;
  --surface:        #ffffff;
  --surface-2:      #f5f5f7;   /* Apple's signature off-white */
  --surface-3:      #ececf0;

  /* System */
  --radius:         16px;
  --radius-lg:      26px;
  --radius-pill:    999px;
  --shadow-sm:      0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);
  --shadow-md:      0 10px 30px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg:      0 30px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);
  --maxw:           1160px;
  --gap:            clamp(1rem, 3vw, 2rem);
  /* Apple spring easing */
  --spring:         cubic-bezier(.16, 1, .3, 1);
  --ease-out:       cubic-bezier(.22, .61, .36, 1);
  /* Google's product typeface (Roboto) with Noto fallbacks for Indic
     scripts so translated pages render correctly on any device. */
  --font: "Roboto", "Noto Sans", "Noto Sans Devanagari", "Noto Sans Tamil",
          "Noto Sans Telugu", "Noto Sans Kannada", "Noto Sans Malayalam",
          "Noto Sans Gujarati", "Noto Sans Bengali", "Noto Sans Oriya",
          "Noto Nastaliq Urdu", system-ui, "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.035em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }
p  { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--surface-2); }
.section--brand { background: linear-gradient(160deg, var(--brand-darker), var(--brand)); color: #dbe6ff; }
.section--brand h2, .section--brand h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); background: var(--brand-tint);
  padding: .35rem .8rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.section--brand .eyebrow { color: #fff; background: rgba(255,255,255,.14); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }
.grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px)  { .grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
                             .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  font-weight: 600; font-size: 1rem; padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .3s var(--spring), box-shadow .3s var(--ease-out), background .25s var(--ease-out), border-color .25s var(--ease-out);
  text-decoration: none; line-height: 1; min-height: 48px; letter-spacing: -.01em;
  white-space: nowrap; will-change: transform;
}
.btn:hover { text-decoration: none; transform: translateY(-2px) scale(1.015); }
.btn:active { transform: translateY(0) scale(.97); transition-duration: .08s; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 4px 14px rgba(0,113,227,.28); }
.btn--primary:hover { background: var(--brand-dark); box-shadow: 0 10px 26px rgba(0,113,227,.34); }
.btn--accent  { background: var(--accent); color: #3d2600; box-shadow: 0 4px 14px rgba(245,166,35,.3); }
.btn--accent:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 10px 26px rgba(245,166,35,.36); }
.btn--ghost   { background: rgba(255,255,255,.7); color: var(--brand); border-color: var(--line); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: var(--brand); background: var(--brand-tint); }
.btn--light   { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,.28); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.85);
  border-bottom-color: rgba(0,0,0,.08);
}
.nav { display: flex; align-items: center; gap: 1rem; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.25rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.nav__links { display: none; align-items: center; gap: .25rem; margin-left: auto; }
.nav__links a { color: var(--body); font-weight: 600; padding: .5rem .7rem; border-radius: 10px; white-space: nowrap; }
.nav__links a:hover { color: var(--brand); background: var(--brand-tint); text-decoration: none; }
.nav__links a.is-active { color: var(--brand); }
.nav__cta { display: none; gap: .5rem; align-items: center; }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: .5rem; }
.lang-select {
  font: inherit; font-size: .9rem; font-weight: 600; color: var(--body); border: 1px solid var(--line);
  background: #fff; border-radius: 10px; padding: .5rem .6rem; min-height: 44px; cursor: pointer;
}
.nav__toggle {
  display: inline-flex; margin-left: .25rem; width: 46px; height: 46px; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
}
.nav__toggle svg { width: 22px; height: 22px; }
.mobile-menu { display: none; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: .9rem .25rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: .8rem; }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__cta { display: flex; }
  .nav__actions { margin-left: 0; }
  .nav__toggle { display: none; }
  .nav__links { margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; background:
  radial-gradient(1200px 620px at 82% -12%, #d6e8ff 0%, transparent 60%),
  radial-gradient(1000px 560px at -5% 0%, #ffeecf 0%, transparent 55%),
  radial-gradient(800px 500px at 55% 120%, #eef1ff 0%, transparent 60%),
  var(--surface); }
/* soft floating vibrancy orbs (Apple-style depth) */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(70px); opacity: .5; pointer-events: none;
}
.hero::before { width: 460px; height: 460px; top: -140px; right: -80px;
  background: radial-gradient(circle at 30% 30%, #7db4ff, transparent 70%);
  animation: floaty 14s var(--ease-out) infinite alternate; }
.hero::after { width: 380px; height: 380px; bottom: -160px; left: -60px;
  background: radial-gradient(circle at 30% 30%, #ffd487, transparent 70%);
  animation: floaty 18s var(--ease-out) infinite alternate-reverse; }
@keyframes floaty { to { transform: translateY(30px) translateX(20px) scale(1.08); } }
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
@media (min-width: 960px) { .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; } }
.hero h1 { margin-bottom: .4em; }
.hero .lead { font-size: 1.22rem; color: var(--body); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.2rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem; }
.trust-row .item { display: flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--body); font-size: .95rem; }
.trust-row .item svg { width: 20px; height: 20px; color: var(--verified); flex: none; }

/* Audience picker cards on hero */
.audience { display: grid; gap: 1rem; }
@media (min-width: 520px) { .audience { grid-template-columns: 1fr 1fr; } }
.audience__card {
  display: block; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: saturate(160%) blur(16px); backdrop-filter: saturate(160%) blur(16px);
  transition: transform .5s var(--spring), box-shadow .4s var(--ease-out), border-color .3s;
}
.audience__card:hover { text-decoration: none; transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); border-color: rgba(0,113,227,.4); }
.audience__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: .9rem; }
.audience__icon svg { width: 28px; height: 28px; }
.audience__icon.blue { background: var(--brand-tint); color: var(--brand); }
.audience__icon.amber { background: #fef3dd; color: var(--accent-dark); }
.audience__card h3 { margin-bottom: .3rem; }
.audience__card p { color: var(--muted); font-size: .95rem; margin-bottom: .8rem; }
.audience__card .go { color: var(--brand); font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; }

/* language chips */
.lang-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.6rem; }
.lang-chips span {
  font-size: .82rem; font-weight: 600; color: var(--body); background: #fff; border: 1px solid var(--line);
  padding: .35rem .7rem; border-radius: var(--radius-pill);
}
.lang-chips .plus { color: var(--muted); }

/* ---------- Stats band ---------- */
.stats { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 780px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.2rem .5rem; }
.stat b { display: block; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.section--brand .stat b { color: #fff; }
.stat span { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.section--brand .stat span { color: #bcd0ff; }

/* ---------- Cards / features ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem;
  box-shadow: var(--shadow-sm); height: 100%;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .97rem; }
.feature__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 1rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature__icon.amber { background: #fef3dd; color: var(--accent-dark); }
.feature__icon.green { background: var(--verified-tint); color: var(--verified); }

/* problem two-column */
.problem-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.problem-col h3 { display: flex; align-items: center; gap: .6rem; }
.problem-col ul li { display: flex; gap: .6rem; padding: .55rem 0; border-bottom: 1px dashed var(--line-soft); color: var(--body); font-size: .97rem; }
.problem-col ul li:last-child { border-bottom: 0; }
.problem-col ul li svg { width: 20px; height: 20px; color: #ef4444; flex: none; margin-top: 2px; }

/* steps */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); }
.step__num { counter-increment: step; width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: .9rem; }
.step__num::after { content: counter(step); }
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* worker category grid */
.cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
@media (min-width: 640px) { .cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .cats { grid-template-columns: repeat(4, 1fr); } }
.cat { display: flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem 1rem; font-weight: 600; color: var(--ink); font-size: .95rem; box-shadow: var(--shadow-sm); }
.cat svg { width: 24px; height: 24px; color: var(--brand); flex: none; }

/* comparison table */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare th, .compare td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.compare thead th { background: var(--surface-3); font-size: .95rem; }
.compare thead th:last-child { background: var(--brand); color: #fff; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td.old { color: var(--muted); }
.compare td.new { font-weight: 600; color: var(--ink); }
.compare td.new::before { content: "✓"; color: var(--verified); font-weight: 800; margin-right: .5rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* pricing */
.plans { display: grid; gap: 1.25rem; }
@media (min-width: 720px)  { .plans.cols-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 780px)  { .plans.cols-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1000px) { .plans.cols-4 { grid-template-columns: repeat(4,1fr); } }
.plan { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.plan.is-featured { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); position: relative; }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #3d2600; font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .8rem; border-radius: var(--radius-pill); }
.plan h3 { font-size: 1.2rem; margin-bottom: .2rem; }
.plan .price { font-size: 1.9rem; font-weight: 800; color: var(--ink); margin: .4rem 0 .1rem; letter-spacing: -.02em; }
.plan .price small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.plan .scale { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.plan ul { margin: 0 0 1.3rem; display: grid; gap: .55rem; }
.plan ul li { display: flex; gap: .5rem; font-size: .95rem; color: var(--body); }
.plan ul li svg { width: 19px; height: 19px; color: var(--verified); flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; }

/* segmented toggle */
.seg { display: inline-flex; background: var(--surface-3); border-radius: var(--radius-pill); padding: 5px; gap: 4px; margin: 0 auto 2rem; }
.seg a { padding: .6rem 1.3rem; border-radius: var(--radius-pill); font-weight: 700; color: var(--muted); }
.seg a.is-active { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); text-decoration: none; }

/* timeline */
.timeline { display: grid; gap: 1rem; }
.tl-item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.tl-item .phase { font-weight: 800; color: var(--brand); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--brand); margin-top: 6px; }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); padding: 1.05rem 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand); font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--line-soft); }
.faq .a { padding: 1rem 1.2rem 1.2rem; color: var(--muted); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

/* callout list (benefits) */
.benefits { display: grid; gap: 1rem; }
@media (min-width: 720px) { .benefits { grid-template-columns: 1fr 1fr; } }
.benefit { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; box-shadow: var(--shadow-sm); }
.benefit .b-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand); }
.benefit .b-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.benefit p { color: var(--muted); font-size: .95rem; margin: 0; }

/* verification tier list */
.vtier { display: grid; gap: .8rem; }
.vtier li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); }
.vtier .badge { width: 42px; height: 42px; border-radius: 12px; background: var(--verified-tint); color: var(--verified); display: grid; place-items: center; }
.vtier .badge svg { width: 22px; height: 22px; }
.vtier strong { color: var(--ink); display: block; }
.vtier span { color: var(--muted); font-size: .93rem; }

/* form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: .4rem; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface-2); color: var(--ink); min-height: 50px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); background: #fff; outline: none; box-shadow: 0 0 0 3px var(--brand-tint); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .5rem; }
.form-success { display: none; background: var(--verified-tint); border: 1px solid #b7ebc6; color: #14532d; padding: 1rem 1.2rem; border-radius: 12px; font-weight: 600; margin-bottom: 1.2rem; }
.form-success.show { display: block; }

/* info grid (contact) */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; } }

/* switchable contact modules — only one shown at a time */
.contact-panel[hidden] { display: none; }
.contact-panel { animation: panelIn .45s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .contact-panel { animation: none; } }

/* =====================================================================
   WORKER VERIFICATION — identity & document modules + trust meter
   ===================================================================== */
.trust-meter { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-md); max-width: 760px; margin-inline: auto; }
.trust-meter__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem; margin-bottom: .8rem; }
.trust-meter__level { font-weight: 800; color: var(--ink); font-size: 1.1rem; }
.trust-meter__count { color: var(--muted); font-size: .9rem; font-weight: 600; }
.trust-meter__track { height: 12px; border-radius: var(--radius-pill); background: var(--surface-3); overflow: hidden; }
.trust-meter__fill { height: 100%; width: 0; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--brand), var(--verified)); transition: width .6s var(--spring); }

.vmodules { display: grid; gap: 1.25rem; max-width: 820px; margin-inline: auto; }
.vmodule { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.vmodule.is-done { border-color: rgba(52,168,83,.5); }
.vmodule__head { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 1.3rem 1.5rem; }
.vmodule__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-tint); color: var(--brand); flex: none; }
.vmodule__icon svg { width: 26px; height: 26px; }
.vmodule.is-done .vmodule__icon { background: var(--verified-tint); color: var(--verified); }
.vmodule__head h3 { margin: 0 0 .15rem; font-size: 1.15rem; }
.vmodule__head p { margin: 0; color: var(--muted); font-size: .92rem; }
.vstatus { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .78rem; padding: .35rem .7rem; border-radius: var(--radius-pill); white-space: nowrap; }
.vstatus svg { width: 14px; height: 14px; }
.vstatus--todo { background: var(--surface-3); color: var(--muted); }
.vstatus--req  { background: #fef3dd; color: var(--accent-dark); }
.vstatus--done { background: var(--verified-tint); color: #14532d; }
.vmodule__body { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--line-soft); padding-top: 1.3rem; }

/* required-documents checklist */
.reqlist { display: grid; gap: .5rem; margin: 0 0 1.3rem; }
.reqlist li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; color: var(--body); }
.reqlist li svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 3px; }

/* upload dropzone (styled file input) */
.uploads { display: grid; gap: .9rem; }
@media (min-width: 620px) { .uploads.two { grid-template-columns: 1fr 1fr; } }
.upload { position: relative; display: flex; align-items: center; gap: .8rem; padding: .95rem 1.1rem; border: 1.5px dashed var(--line); border-radius: 14px; background: var(--surface-2); cursor: pointer; transition: border-color .2s var(--ease-out), background .2s var(--ease-out); }
.upload:hover { border-color: var(--brand); background: var(--brand-tint); }
.upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload__icon { width: 38px; height: 38px; border-radius: 10px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); flex: none; }
.upload__icon svg { width: 20px; height: 20px; }
.upload__text { font-size: .92rem; color: var(--ink); font-weight: 600; line-height: 1.25; }
.upload__text em { display: block; font-style: normal; font-weight: 500; color: var(--muted); font-size: .8rem; margin-top: 2px; }
.upload__file { margin-left: auto; font-size: .82rem; font-weight: 700; color: var(--verified); display: none; align-items: center; gap: .3rem; text-align: right; }
.upload.has-file { border-style: solid; border-color: rgba(52,168,83,.6); background: var(--verified-tint); }
.upload.has-file .upload__file { display: inline-flex; }
.upload.has-file .upload__icon { color: var(--verified); border-color: rgba(52,168,83,.4); }

.vmodule__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; margin-top: 1.3rem; }
.vhint { font-size: .85rem; color: var(--muted); }
.vhint.err { color: #c02626; font-weight: 600; }

.consent { display: flex; gap: .7rem; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; font-size: .9rem; color: var(--body); max-width: 820px; margin: 1.5rem auto 0; }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; }
.consent a { font-weight: 600; }
.contact-list li { display: flex; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-list li svg { width: 22px; height: 22px; color: var(--brand); flex: none; }
.contact-list strong { display: block; color: var(--ink); }
.contact-list span { color: var(--muted); font-size: .95rem; }

/* pill badge inline */
.pill { display: inline-flex; align-items: center; gap: .4rem; background: var(--verified-tint); color: #14532d; font-weight: 700; font-size: .82rem; padding: .3rem .7rem; border-radius: var(--radius-pill); }
.pill svg { width: 15px; height: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cbd5e1; padding: clamp(3rem, 6vw, 4rem) 0 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.site-footer ul li { padding: .3rem 0; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #94a3b8; font-size: .95rem; max-width: 34ch; margin-top: 1rem; }
.footer-langs { color: #94a3b8; font-size: .88rem; margin-top: 1rem; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; color: #94a3b8; font-size: .88rem; }
.footer-bottom a { color: #94a3b8; }

/* section heading block */
.sec-head { max-width: 62ch; margin-bottom: 2.5rem; }
.center.sec-head { margin-inline: auto; }

/* utility */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.disclaimer { font-size: .82rem; color: var(--muted); }
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: initial; } }

/* =====================================================================
   APPLE-STYLE POLISH — depth, springy micro-interactions, scroll reveal
   ===================================================================== */

/* Refined eyebrow — pill with subtle vibrancy */
.eyebrow { -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); font-weight: 600; }
.lead { color: var(--muted); font-weight: 400; }

/* Interactive lift for content cards (Apple product-tile feel) */
.card, .step, .benefit, .plan, .vtier li, .cat, .problem-col, .tl-item {
  transition: transform .5s var(--spring), box-shadow .4s var(--ease-out), border-color .3s var(--ease-out);
  will-change: transform;
}
.card:hover, .step:hover, .benefit:hover, .vtier li:hover, .problem-col:hover, .tl-item:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
}
.cat:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); border-color: rgba(0,113,227,.35); }
.plan:not(.is-featured):hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.is-featured { transform: translateY(-4px); }
.plan.is-featured:hover { transform: translateY(-9px); }

/* Feature icons get a gentle pop on card hover */
.feature__icon, .b-icon, .audience__icon { transition: transform .5s var(--spring); }
.card:hover .feature__icon, .benefit:hover .b-icon, .audience__card:hover .audience__icon {
  transform: scale(1.08) rotate(-3deg);
}

/* FAQ open/close smoothing */
.faq details { transition: box-shadow .3s var(--ease-out); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { transition: color .2s var(--ease-out); }
.faq summary:hover { color: var(--brand); }

/* Segmented control — Apple's sliding pill */
.seg a { transition: color .25s var(--ease-out), background .35s var(--spring), box-shadow .3s var(--ease-out); }

/* Nav links — subtle Apple hover */
.nav__links a { transition: color .2s var(--ease-out), background .3s var(--ease-out); }

/* Comparison table row hover */
.compare tbody tr { transition: background .25s var(--ease-out); }
.compare tbody tr:hover { background: var(--surface-2); }

/* Bigger, more generous section rhythm (Apple whitespace) */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* Hero copy: slightly tighter, larger leading display */
.hero h1 { letter-spacing: -.045em; }

/* ---- Scroll-reveal (added via JS: html.has-reveal) ---- */
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--spring);
  transition-delay: var(--reveal-delay, 0ms);
}
.has-reveal .reveal.is-visible { opacity: 1; transform: none; }

/* Entrance for hero on first paint */
.has-reveal .hero__inner > * { opacity: 0; transform: translateY(30px); animation: heroIn .9s var(--spring) forwards; }
.has-reveal .hero__inner > *:nth-child(2) { animation-delay: .12s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .has-reveal .reveal { opacity: 1 !important; transform: none !important; }
  .has-reveal .hero__inner > * { opacity: 1 !important; transform: none !important; }
  .hero::before, .hero::after { animation: none !important; }
}

/* =====================================================================
   GOOGLE WEBSITE TRANSLATE — hide the default banner/chrome so only our
   own language <select> is visible; keep the widget functional.
   ===================================================================== */
#google_translate_element { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.goog-te-banner-frame, .goog-te-gadget-icon, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
/* Google injects a top offset on <body>; force it back to zero */
body { top: 0 !important; }
.skiptranslate > iframe { display: none !important; visibility: hidden !important; }
/* Keep our brand name from being translated visually */
.notranslate { unicode-bidi: isolate; }

/* =====================================================================
   CHECKOUT & PAYMENT MODAL
   ===================================================================== */
.checkout-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.1fr .9fr; } }

.plan-picker { display: grid; gap: .7rem; }
.plan-opt { display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: center; border: 1.5px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; cursor: pointer; background: #fff; transition: border-color .2s, background .2s; }
.plan-opt:hover { border-color: var(--brand); background: var(--brand-tint); }
.plan-opt.is-sel { border-color: var(--brand); background: var(--brand-tint); box-shadow: 0 0 0 3px rgba(0,113,227,.12); }
.plan-opt input { position: absolute; opacity: 0; }
.plan-opt__r { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; }
.plan-opt.is-sel .plan-opt__r { border-color: var(--brand); }
.plan-opt.is-sel .plan-opt__r::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.plan-opt b { display: block; color: var(--ink); }
.plan-opt span { color: var(--muted); font-size: .85rem; }
.plan-opt .amt { font-weight: 800; color: var(--ink); white-space: nowrap; }
.plan-group-label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 1rem 0 .3rem; }

.summary { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 1.5rem; }
.summary h3 { margin: 0 0 1rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; color: var(--body); font-size: .95rem; border-bottom: 1px dashed var(--line-soft); }
.summary__row.total { border-bottom: 0; border-top: 2px solid var(--line); margin-top: .4rem; padding-top: .9rem; font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.summary__gst { font-size: .82rem; color: var(--muted); margin: .3rem 0 1.1rem; }
.pay-success { display: none; text-align: center; }
.pay-success.show { display: block; }
.pay-success__ic { width: 64px; height: 64px; border-radius: 50%; background: var(--verified-tint); color: var(--verified); display: grid; place-items: center; margin: 0 auto 1rem; }
.pay-success__ic svg { width: 34px; height: 34px; }
.pay-secure { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.pay-secure svg { width: 15px; height: 15px; }

.paymodal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.2rem; background: rgba(15,23,42,.55); opacity: 0; transition: opacity .25s; }
.paymodal.is-open { opacity: 1; }
.paymodal__card { width: 100%; max-width: 380px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.5rem; transform: translateY(16px); transition: transform .3s var(--spring); }
.paymodal.is-open .paymodal__card { transform: none; }
.paymodal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.paymodal__brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--ink); }
.paymodal__dot { width: 12px; height: 12px; border-radius: 4px; background: var(--brand); }
.paymodal__x { border: 0; background: none; font-size: 1.6rem; line-height: 1; color: var(--muted); cursor: pointer; }
.paymodal__amt { font-size: 2.2rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.paymodal__amt small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.paymodal__item { color: var(--muted); margin-bottom: 1.2rem; }
.paymodal__methods { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.2rem; }
.paymethod { display: flex; flex-direction: column; align-items: center; gap: .3rem; padding: .7rem .3rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-size: .82rem; font-weight: 600; color: var(--body); }
.paymethod svg { width: 20px; height: 20px; }
.paymethod.is-on { border-color: var(--brand); background: var(--brand-tint); color: var(--brand); }
.paymodal__note { font-size: .78rem; color: var(--muted); text-align: center; margin: .9rem 0 0; }
