/* =========================================================================
   Infinite Jobs Solutions — Design System
   Refined dark-neon theme. Hand-crafted, zero-build, fast.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:            #06070d;
  --bg-2:          #0b0e1a;
  --bg-3:          #11152740;
  --surface:       rgba(255, 255, 255, 0.04);
  --surface-2:     rgba(255, 255, 255, 0.06);
  --border:        rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  --text:          #e9edf6;
  --muted:         #9aa3b8;
  --muted-2:       #6b7488;

  --cyan:          #00d4ff;
  --magenta:       #ff2d78;
  --green:         #00ff88;
  --gold:          #ffd23f;
  --purple:        #9d4edd;

  --grad:          linear-gradient(135deg, #00d4ff 0%, #ff2d78 100%);
  --grad-soft:     linear-gradient(135deg, rgba(0,212,255,.18), rgba(255,45,120,.18));

  --radius:        16px;
  --radius-lg:     24px;
  --radius-sm:     10px;
  --shadow:        0 18px 50px -12px rgba(0,0,0,.7);
  --glow-cyan:     0 0 0 1px rgba(0,212,255,.35), 0 10px 40px -8px rgba(0,212,255,.45);

  --container:     1180px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --ease:          cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}
/* Prevent long unbreakable strings (emails, URLs) from forcing horizontal overflow */
p, li, h1, h2, h3, h4 { overflow-wrap: break-word; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- Background ambience ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(0,212,255,.10), transparent 60%),
    radial-gradient(55% 45% at 95% 10%, rgba(255,45,120,.10), transparent 60%),
    radial-gradient(60% 60% at 50% 100%, rgba(157,78,221,.08), transparent 60%),
    var(--bg);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.maxw { max-width: 760px; margin-inline: auto; }
.maxw-lg { max-width: 920px; margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }
.h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
.h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); }
.muted { color: var(--muted); }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
p + p { margin-top: 1em; }
.section > .container > .center { margin-bottom: 56px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(255,45,120,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(0,212,255,.6); }
.btn--ghost { background: var(--surface); color: #fff; border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Glass / cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--grad-soft); border: 1px solid var(--border);
}
.card__icon svg { width: 26px; height: 26px; stroke: var(--cyan); }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--muted); font-size: .97rem; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(6,7,13,.72);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; }
.brand img { width: 38px; height: 38px; }
.brand .brand__sub { color: inherit; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 10px 14px; border-radius: 10px; color: var(--muted); font-size: .95rem; font-weight: 500;
  transition: color .2s, background .2s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; background: var(--surface); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; width: 44px; height: 44px; place-items: center; }
.nav__toggle svg { width: 22px; height: 22px; stroke: #fff; }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 8px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; border-radius: 9px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(56px, 10vw, 120px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hero h1 { margin-block: 18px; font-size: clamp(2.5rem, 5.6vw, 4.3rem); }
.hero .lead { max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat .stat__num { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
.stat .stat__label { color: var(--muted); font-size: .85rem; }
.hero__art {
  aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: var(--grad-soft); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}

/* Animated gradient headline */
.shine {
  background: linear-gradient(100deg, #00d4ff, #9d4edd, #ff2d78, #00d4ff);
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 7s linear infinite;
}
@keyframes shine { to { background-position: 250% center; } }

/* Trust row */
.trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.trust__avatars { display: flex; }
.trust__avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--bg); display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; color: #fff;
}
.trust__avatars span:first-child { margin-left: 0; }
.trust__text { font-size: .9rem; color: var(--muted); }
.trust__text strong { color: var(--text); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }

/* Hero stage — journey cards */
.hero-stage { position: relative; aspect-ratio: 1 / 1.04; }
.hero-stage__glow {
  position: absolute; inset: 12%; z-index: 0;
  background: var(--grad); filter: blur(70px); opacity: .35;
  border-radius: 50% 60% 55% 45%;
  animation: blob 14s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 50% 60% 55% 45%; transform: translate(0,0) scale(1); }
  50% { border-radius: 60% 45% 50% 55%; transform: translate(0,-14px) scale(1.05); }
}
.hero-card {
  position: absolute; z-index: 2;
  background: rgba(11, 14, 26, .72); backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong); border-radius: 18px;
  box-shadow: var(--shadow);
}
/* Main profile card */
.hero-card--main {
  left: 8%; right: 8%; top: 12%; padding: 24px;
}
.hero-card--main .hc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hc-avatar { width: 56px; height: 56px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1.2rem; flex-shrink: 0; }
.hc-name { font-weight: 700; font-size: 1.05rem; }
.hc-role { color: var(--muted); font-size: .85rem; }
.hc-badge { margin-left: auto; font-size: .72rem; font-weight: 700; color: var(--green); background: rgba(0,255,136,.12); border: 1px solid rgba(0,255,136,.35); padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.hc-steps { display: grid; gap: 12px; }
.hc-step { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.hc-step .dot { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; background: var(--grad); }
.hc-step .dot svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; }
.hc-step.todo .dot { background: var(--surface-2); border: 1px solid var(--border-strong); }
.hc-step.todo { color: var(--muted); }
.hc-progress { height: 7px; border-radius: 100px; background: var(--surface-2); margin-top: 18px; overflow: hidden; }
.hc-progress i { display: block; height: 100%; width: 80%; border-radius: 100px; background: var(--grad); }
/* Floating chips */
.hero-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  background: rgba(11, 14, 26, .82); backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong); border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); font-size: .9rem; font-weight: 600; white-space: nowrap;
}
.hero-chip .ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.hero-chip small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }
.hero-chip--1 { left: -4%; top: 6%; animation: floaty 6s ease-in-out infinite; }
.hero-chip--2 { right: -5%; top: 40%; animation: floaty 6s ease-in-out infinite .8s; }
.hero-chip--3 { left: 2%; bottom: 4%; animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) {
  .hero-stage__glow, .hero-chip, .shine { animation: none; }
}

/* ---------- Pills / tags ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 7px 14px; border-radius: 100px; font-size: .85rem; font-weight: 500;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted); }
.pill--cyan { color: var(--cyan); border-color: rgba(0,212,255,.3); }
.pill--magenta { color: var(--magenta); border-color: rgba(255,45,120,.3); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
  padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.step__num { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; background: var(--grad); color: #fff; }
.step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- Feature list with checks ---------- */
.checks { display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--muted); }
.checks svg { width: 20px; height: 20px; stroke: var(--green); margin-top: 3px; }
.checks strong { color: var(--text); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px) 24px;
  background: var(--grad-soft); border: 1px solid var(--border-strong); position: relative; overflow: hidden;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band .btn { margin-top: 26px; }

/* ---------- Accordion / FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  padding: 4px 22px; transition: border-color .2s;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--cyan); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding-bottom: 20px; color: var(--muted); }

/* ---------- Contact ---------- */
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: .9rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; font-size: 1rem; font-family: inherit;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,212,255,.15); outline: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .85rem; color: var(--muted-2); margin-top: 10px; }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; margin: 4px 0 18px; }
.consent input[type="checkbox"] { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--cyan); cursor: pointer; }
.consent label { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.consent a { color: var(--cyan); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-item .ci-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad); flex-shrink: 0; }
.contact-info-item .ci-icon svg { width: 20px; height: 20px; stroke: #fff; }
.contact-info-item strong { display: block; }
.contact-info-item a, .contact-info-item span { color: var(--muted); }
.form-status { padding: 14px 16px; border-radius: 11px; margin-bottom: 18px; font-size: .95rem; display: none; }
.form-status.ok { display: block; background: rgba(0,255,136,.1); border: 1px solid rgba(0,255,136,.35); color: var(--green); }
.form-status.err { display: block; background: rgba(255,45,120,.1); border: 1px solid rgba(255,45,120,.35); color: var(--magenta); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-block: 56px 28px; margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__grid > div { min-width: 0; }
.site-footer h4 { font-size: .95rem; margin-bottom: 16px; color: #fff; }
.site-footer a { color: var(--muted); font-size: .95rem; line-height: 2; transition: color .2s; overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--cyan); }
.footer__brandtext { color: var(--muted); font-size: .95rem; max-width: 320px; margin-block: 14px 18px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); }
.socials svg { width: 18px; height: 18px; fill: var(--cyan); }
.footer__bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; text-align: center; color: var(--muted-2); font-size: .9rem; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .85rem; color: var(--muted-2); padding-top: 24px; }
.crumb a:hover { color: var(--cyan); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(50px, 8vw, 90px) clamp(20px, 4vw, 40px); text-align: center; }
.page-hero .lead { margin-top: 16px; }

/* ---------- Long-form prose (legal, articles) ---------- */
.prose { color: var(--muted); font-size: 1.02rem; }
.prose h2 { color: var(--text); font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { color: var(--text); font-size: 1.15rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 4px; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before { content: "›"; position: absolute; left: 2px; top: 0; color: var(--cyan); font-weight: 700; }
.prose a { color: var(--cyan); }
.prose strong { color: var(--text); }
.prose .updated { font-size: .9rem; color: var(--muted-2); margin-bottom: 28px; }
.callout { border: 1px solid var(--border-strong); background: var(--grad-soft); border-radius: var(--radius); padding: 20px 24px; margin: 22px 0; }
.callout p { margin: 0; color: var(--text); }
.toc { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 30px; }
.toc h2 { font-size: 1rem; margin: 0 0 10px; }
.toc ol { margin: 0; padding-left: 18px; color: var(--muted); display: grid; gap: 5px; font-size: .95rem; }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--cyan); }

/* Article cards on Resources */
.article-card { display: flex; flex-direction: column; }
.article-card .tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.article-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.article-card p { flex: 1; }
.article-card .read { margin-top: 16px; color: var(--cyan); font-weight: 600; font-size: .9rem; }
.testimonial { }
.testimonial p { font-size: 1.02rem; color: var(--text); font-style: italic; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial .who .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; }
.testimonial .who b { display: block; font-style: normal; }
.testimonial .who span { color: var(--muted); font-size: .85rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-stage { max-width: 440px; margin-inline: auto; width: 100%; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
/* Collapse to the hamburger menu on tablets too — the full menu doesn't fit below ~1200px */
@media (max-width: 1200px) {
  .nav__links { display: none; }
  .nav__toggle { display: grid; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    padding: 10px 14px 16px; gap: 2px;
    max-height: calc(100vh - 70px); overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .nav.open .nav__links li { width: 100%; }
  .nav.open .has-drop { display: flex; flex-direction: column; }
  .nav.open .nav__links a {
    display: block; padding: 12px 14px; border-radius: 10px; font-size: 1rem;
  }
  .nav.open .nav__links > li > a:hover,
  .nav.open .nav__links a[aria-current="page"] { background: var(--surface); color: #fff; }
  /* Services chevron rotates when open */
  .nav.open .has-drop > a .caret { display: inline-block; transition: transform .2s; }
  .nav.open .has-drop.open > a .caret { transform: rotate(180deg); }
  /* indented sub-menu with a divider — COLLAPSED by default, expands on tap */
  .nav.open .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; min-width: 0;
    margin: 2px 0 6px 10px; padding: 2px 0 2px 10px;
    border-left: 1px solid var(--border-strong);
    flex-direction: column; gap: 2px;
    display: none;
  }
  .nav.open .has-drop.open .drop { display: flex; }
  .nav.open .drop a { padding: 9px 14px; font-size: .92rem; color: var(--muted-2); }
  .nav.open .drop a:hover { color: #fff; background: var(--surface); }
}
@media (max-width: 760px) {
  .nav__cta .btn { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  /* keep hero journey cards inside the screen */
  .hero-chip { font-size: .82rem; padding: 10px 13px; }
  .hero-chip--1 { left: 0; top: 2%; }
  .hero-chip--2 { right: 0; top: 42%; }
  .hero-chip--3 { left: 0; bottom: 2%; }
  .hero-card--main { left: 12%; right: 12%; }
  /* stack footer into one column on phones so nothing overflows */
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}
