/* ============================================================
   AVENIX DIGITAL — site institucional
   Tema escuro · acento indigo→teal · vanilla CSS
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  --bg: #05070d;
  --bg-raised: #0a0e18;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  --text: #eef1f8;
  --text-muted: #96a0b5;
  --text-faint: #667088;

  --accent: #6d5cff;
  --accent-soft: #9d8bff;
  --accent-2: #2dd4bf;
  --glow: rgba(109, 92, 255, 0.32);
  --glow-2: rgba(45, 212, 191, 0.18);

  --grad-brand: linear-gradient(120deg, #5b5bf6 0%, #7c5cff 45%, #2dd4bf 100%);
  --grad-text: linear-gradient(105deg, #b9b3ff 0%, #8f7bff 40%, #4fe0cb 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px var(--glow);

  --font: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: rgba(109, 92, 255, 0.4); color: #fff; }

/* Idioma: usado apenas pela fonte bilíngue (src/) durante a edição;
   as páginas geradas não têm spans .pt/.en */
html[lang="pt-BR"] .en { display: none !important; }
html[lang="en"] .pt { display: none !important; }

/* ---------- 3. Utilitários ---------- */
.container { width: min(1160px, 92%); margin-inline: auto; }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section-alt { background: var(--bg-raised); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fine-print {
  font-size: 0.85rem;
  color: var(--text-faint);
  max-width: 640px;
}

/* Reveal on scroll (só com JS ativo) */
html.js .reveal,
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.in,
html.js .reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}
html.js .reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
html.js .reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
html.js .reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
html.js .reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
html.js .reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
html.js .reveal-stagger.in > *:nth-child(7) { transition-delay: 0.48s; }
html.js .reveal-stagger.in > *:nth-child(8) { transition-delay: 0.56s; }
html.js .reveal-stagger.in > *:nth-child(9) { transition-delay: 0.64s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal,
  html.js .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * { animation: none !important; }
}

/* ---------- 4. Barra de progresso & navegação ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-brand);
  z-index: 120;
  pointer-events: none;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand .brand-digital {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.93rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 600;
}
.lang-toggle a {
  padding: 5px 12px;
  color: var(--text-faint);
  transition: color 0.2s, background 0.2s;
}
.lang-toggle a:hover { color: var(--text); }
.lang-toggle a.active {
  background: var(--grad-brand);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 6px 24px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px var(--glow); }
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent-soft); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: rgba(6, 8, 15, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 6% 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 4px;
  font-size: 1.05rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ---------- 5. Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, #000 20%, transparent 75%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
  animation: drift 16s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; top: -12%; left: -8%; background: rgba(91, 91, 246, 0.4); }
.blob-2 { width: 460px; height: 460px; bottom: -18%; right: -6%; background: rgba(45, 212, 191, 0.22); animation-delay: -6s; }
.blob-3 { width: 320px; height: 320px; top: 28%; right: 18%; background: rgba(124, 92, 255, 0.3); animation-delay: -11s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(50px, -36px, 0) scale(1.08); }
}

.hero-inner { position: relative; max-width: 860px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 38px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-strong);
  border-radius: 14px;
}
.scroll-hint::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--accent-soft);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- 6. Números (trajetória do time) ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.stat-value {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.97rem;
}
.stats-note {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.stats-note svg { flex: none; margin-top: 3px; }

/* ---------- 7. Transparência / sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-copy p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.03rem;
}
.about-copy p strong { color: var(--text); font-weight: 600; }

.about-list { display: grid; gap: 14px; margin-top: 8px; }
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
}
.about-list li svg { flex: none; margin-top: 4px; }
.about-list li strong { color: var(--text); font-weight: 600; }

.about-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(109, 92, 255, 0.10), rgba(45, 212, 191, 0.05) 60%, transparent);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}
.about-panel blockquote {
  position: relative;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.about-panel figcaption {
  position: relative;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- 8. Por que a Avenix ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 92, 255, 0.4);
  background: var(--surface-strong);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(109, 92, 255, 0.12);
  border: 1px solid rgba(109, 92, 255, 0.25);
  margin-bottom: 18px;
  color: var(--accent-soft);
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- 8b. Segmentos ---------- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.segment-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.segment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
  background: var(--surface-strong);
}
.segment-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(45, 212, 191, 0.10);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--accent-2);
}
.segment-card h3 { font-size: 0.98rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.segment-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* ---------- 9. Serviços (jornada ponta a ponta) ---------- */
.service-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.chip {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.journey { position: relative; }

.journey-line {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}
.journey-line-h {
  top: 23px;
  left: 0;
  width: 100%;
  height: 2px;
}
.journey-line-v { display: none; }
.journey-line path { opacity: 0.55; }
/* A transição vive na regra .drawn: o path só anima quando a classe entra
   (o JS define stroke-dasharray/offset inline antes disso, sem transição). */
html.js .journey.drawn .journey-line path {
  stroke-dashoffset: 0 !important;
  transition: stroke-dashoffset 1.8s var(--ease) 0.15s;
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.journey-step { position: relative; padding-top: 68px; }
.journey-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 0 8px var(--bg-raised);
}
.journey-step h3 { font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.journey-step > p { color: var(--text-muted); font-size: 0.92rem; }

.journey-subs { display: grid; gap: 10px; margin-top: 16px; }
.journey-sub {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: border-color 0.3s, background 0.3s;
}
.journey-sub:hover { border-color: rgba(124, 92, 255, 0.4); background: var(--surface-strong); }
.journey-sub h4 { font-size: 0.94rem; margin-bottom: 4px; letter-spacing: -0.01em; }
.journey-sub p { color: var(--text-muted); font-size: 0.84rem; }
.journey-sub .service-chips { margin-top: 10px; }

/* ---------- 10. Processo ---------- */
.process { max-width: 760px; margin-inline: auto; position: relative; }
.process::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.35;
}
.step {
  position: relative;
  padding: 0 0 40px 76px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  color: var(--accent-soft);
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; letter-spacing: -0.01em; }
.step p { color: var(--text-muted); font-size: 0.97rem; max-width: 560px; }

/* ---------- 11. Tecnologias ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.tech-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.tech-tile:hover { transform: translateY(-4px); border-color: rgba(45, 212, 191, 0.45); }
.tech-mono {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--grad-brand);
}
.tech-tile span { font-size: 0.82rem; color: var(--text-muted); text-align: center; }

/* ---------- 12. Contato ---------- */
.contact {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 720px;
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, var(--glow), transparent 70%);
  pointer-events: none;
}
.contact h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); position: relative; }
.contact .lead {
  margin: 18px auto 36px;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.06rem;
  position: relative;
}
.contact-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 18px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.contact-card:hover { border-color: var(--accent-soft); transform: translateY(-3px); }
.contact-card .label { font-size: 0.8rem; color: var(--text-faint); text-align: left; }
.contact-card .value { font-weight: 600; font-size: 1.05rem; text-align: left; }

/* ---------- 13. Footer & voltar ao topo ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
  background: var(--bg-raised);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-blurb { color: var(--text-muted); font-size: 0.94rem; margin-top: 16px; max-width: 340px; }
.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(8px);
  z-index: 90;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { border-color: var(--accent-soft); }

/* ---------- 14. Responsivo ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Jornada: vertical, linha à esquerda */
  .journey-line-h { display: none; }
  .journey-line-v {
    display: block;
    top: 0;
    left: 23px;
    width: 2px;
    height: 100%;
  }
  .journey-steps { grid-template-columns: 1fr; gap: 40px; }
  .journey-step { padding: 0 0 0 72px; min-height: 48px; }
}

@media (max-width: 620px) {
  .cards-grid { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .step { padding-left: 64px; }
  .scroll-hint { display: none; }

  .journey-num { width: 44px; height: 44px; box-shadow: 0 0 0 6px var(--bg-raised); }
  .journey-line-v { left: 21px; }
  .journey-step { padding-left: 62px; }
}
