/* Planalto Norte Vagas — Landing Institucional */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: #fff;
  color: oklch(0.22 0.01 260);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

:root {
  --primary: #1E5BC2;
  --primary-deep: #0F3D8E;
  --accent: #0E9E6E;
  --accent-deep: #0A7553;
  --pass: #E5484D;
  --whatsapp: #25D366;
  --bg: #fff;
  --bg-soft: oklch(0.98 0.005 260);
  --bg-tint: oklch(0.97 0.01 250);
  --text: oklch(0.18 0.01 260);
  --text-muted: oklch(0.5 0.01 260);
  --text-faint: oklch(0.62 0.01 260);
  --border: oklch(0.92 0.005 260);
  --border-strong: oklch(0.86 0.005 260);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ================= NAV ================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 2px 6px -1px color-mix(in oklch, var(--primary), transparent 60%);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 700; font-size: 14.5px; letter-spacing: -0.02em; }
.brand-sub { font-size: 9.5px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-top: 2px; }

.nav-links {
  display: flex; gap: 26px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--primary); }

.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 9px;
  border: none;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 2px 6px -1px color-mix(in oklch, var(--primary), transparent 65%); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 8px 18px -4px color-mix(in oklch, var(--primary), transparent 55%); }
.btn-accent { background: var(--accent); color: white; box-shadow: 0 2px 6px -1px color-mix(in oklch, var(--accent), transparent 60%); }
.btn-accent:hover { background: var(--accent-deep); box-shadow: 0 8px 18px -4px color-mix(in oklch, var(--accent), transparent 50%); }
.btn-outline {
  background: white; color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { font-size: 15px; padding: 14px 22px; }

/* ===== Coming soon ===== */
.soon-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 99px;
  background: color-mix(in oklch, var(--accent), white 90%);
  color: var(--accent-deep);
  border: 1px solid color-mix(in oklch, var(--accent), white 72%);
}
.soon-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent), transparent 30%);
  animation: soon-pulse 2s infinite;
}
@keyframes soon-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent), transparent 30%); }
  70% { box-shadow: 0 0 0 8px color-mix(in oklch, var(--accent), transparent 100%); }
  100% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--accent), transparent 100%); }
}

.notify-form {
  display: flex; gap: 8px; flex-wrap: wrap;
  max-width: 460px;
}
.notify-input {
  flex: 1; min-width: 220px;
  font-family: inherit;
  font-size: 14.5px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-strong);
  background: white;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.notify-input::placeholder { color: var(--text-faint); }
.notify-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 85%);
}
.notify-note {
  font-size: 12.5px; color: var(--text-muted);
  margin-top: 12px;
  display: flex; align-items: center; gap: 6px;
}
.notify-ok {
  font-size: 14px; font-weight: 600;
  color: var(--accent-deep);
  display: none;
  align-items: center; gap: 8px;
  padding: 13px 0;
}
.notify-ok.show { display: inline-flex; }
.notify-form.hide { display: none; }

/* notify form on dark CTA banner */
.cta-banner .notify-input { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: white; }
.cta-banner .notify-input::placeholder { color: rgba(255,255,255,0.6); }
.cta-banner .notify-input:focus { border-color: white; box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
.cta-banner .notify-note { color: oklch(0.88 0.02 250); }
.cta-banner .notify-ok { color: white; }

.soon-tag-mini {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 99px;
  background: color-mix(in oklch, var(--accent), white 88%);
  color: var(--accent-deep);
  border: 1px solid color-mix(in oklch, var(--accent), white 70%);
}

.section { padding: 90px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 5px 11px;
  border-radius: 99px;
  background: color-mix(in oklch, var(--primary), white 92%);
  color: var(--primary);
  border: 1px solid color-mix(in oklch, var(--primary), white 78%);
}
.h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 14px 0 14px;
  line-height: 1.08;
  text-wrap: pretty;
}
.lede {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 640px;
  text-wrap: pretty;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 75% -10%, color-mix(in oklch, var(--primary), white 86%), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, color-mix(in oklch, var(--accent), white 90%), transparent 60%),
    white;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, oklch(0.92 0.005 260) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.92 0.005 260) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { min-width: 0; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 5px 12px 5px 5px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.hero-eyebrow .eb-pip {
  background: var(--primary); color: white;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 99px;
}
.hero-eyebrow .dot { color: var(--accent); font-weight: 700; }

.hero h1 {
  font-size: clamp(36px, 5.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 18px 0 18px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  text-wrap: pretty;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 28px;
  display: flex; align-items: center; gap: 16px;
  font-size: 12.5px; color: var(--text-muted);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  display: grid; place-items: center;
  color: white; font-size: 10px; font-weight: 700;
  margin-left: -8px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-stars-row { color: oklch(0.78 0.16 75); font-size: 13px; letter-spacing: 0.06em; }

/* hero visual — stack of cards */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px -8px rgba(15, 23, 42, 0.10),
    0 32px 64px -24px rgba(15, 23, 42, 0.18);
  width: 360px;
}
.hero-card.back-2 { transform: translate(-30px, 30px) rotate(-6deg) scale(0.94); opacity: 0.55; }
.hero-card.back-1 { transform: translate(20px, 14px) rotate(4deg) scale(0.97); opacity: 0.8; }
.hero-card.front { transform: rotate(-2deg); z-index: 3; }

.hc-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.hc-row { display: flex; gap: 14px; align-items: center; }
.hc-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em;
}
.hc-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.hc-headline { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hc-meta { font-size: 11px; color: var(--text-faint); margin-top: 4px; }
.hc-divider { height: 1px; background: var(--border); margin: 0 -22px; }

.hc-match-row { display: grid; grid-template-columns: 86px 1fr; gap: 16px; align-items: center; }
.hc-ring {
  position: relative; width: 86px; height: 86px;
}
.hc-ring .label { font-size: 9px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; font-weight: 600; }
.hc-ring .num {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hc-ring .num b { font-size: 22px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.hc-bar { display: flex; flex-direction: column; gap: 3px; margin-bottom: 8px; }
.hc-bar:last-child { margin-bottom: 0; }
.hc-bar-row { display: flex; justify-content: space-between; font-size: 10.5px; }
.hc-bar-row b { font-weight: 600; }
.hc-bar-track { height: 5px; background: oklch(0.94 0.005 260); border-radius: 99px; overflow: hidden; }
.hc-bar-fill { height: 100%; border-radius: 99px; }

.hc-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.hc-tag {
  font-size: 10.5px; font-weight: 500;
  padding: 2px 8px; border-radius: 99px;
  background: oklch(0.96 0.005 260);
  border: 1px solid var(--border);
}

.hc-actions { display: flex; gap: 8px; padding-top: 4px; }
.hc-act {
  flex: 1;
  font-size: 11.5px;
  font-weight: 600;
  padding: 9px;
  border-radius: 9px;
  border: 1.5px solid;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.hc-pass { color: var(--pass); border-color: color-mix(in oklch, var(--pass), white 70%); background: white; }
.hc-like { color: white; background: var(--accent); border-color: var(--accent); flex: 1.6; }

/* floating mini-tags around card */
.float-tag {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 12px 6px 6px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.12);
  z-index: 5;
}
.float-tag-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-size: 11px;
}
.float-tag.tag-1 { top: 40px; left: -10px; }
.float-tag.tag-2 { bottom: 60px; right: -16px; }
.float-tag.tag-3 { top: 50%; right: -50px; }

/* logos strip */
.logos-strip {
  margin-top: 60px;
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
}
.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logos-label {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.logos-row { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.logo-pill {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  font-style: italic;
}

/* ================= SECTIONS ================= */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .lede { margin: 0 auto; }

/* candidato section: alternating layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* benefit cards (candidato) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(15, 23, 42, 0.12);
  border-color: var(--border-strong);
}
.benefit-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: white;
}
.benefit-icon.is-primary { background: var(--primary); }
.benefit-icon.is-accent { background: var(--accent); }
.benefit-icon.is-purple { background: oklch(0.55 0.15 320); }
.benefit-icon.is-warm { background: oklch(0.62 0.15 65); }
.benefit-icon.is-whatsapp { background: var(--whatsapp); }
.benefit-icon.is-coral { background: oklch(0.65 0.18 35); }
.benefit-title { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.benefit-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* candidato visual: phone mockup with WhatsApp notification */
.phone-mock {
  position: relative;
  width: 320px;
  height: 600px;
  margin: 0 auto;
  background: oklch(0.16 0.01 260);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 24px 48px -16px rgba(15, 23, 42, 0.25);
}
.phone-screen {
  width: 100%; height: 100%;
  background: oklch(0.96 0.005 260);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}
.phone-statusbar {
  height: 36px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 600;
  background: white;
}
.wa-header {
  background: oklch(0.36 0.06 155);
  color: white;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 13.5px;
}
.wa-header .wa-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 700;
}
.wa-body {
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.wa-msg {
  background: white;
  padding: 10px 12px;
  border-radius: 10px 10px 10px 2px;
  font-size: 12.5px;
  line-height: 1.45;
  max-width: 80%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}
.wa-msg.wa-mine {
  background: oklch(0.92 0.04 155);
  border-radius: 10px 10px 2px 10px;
  align-self: flex-end;
}
.wa-msg b { color: var(--primary); }
.wa-time {
  font-size: 9px;
  color: var(--text-faint);
  text-align: right;
  margin-top: 3px;
  font-weight: 500;
}
.wa-typing {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 4px;
}

/* empresa section */
.empresa-bg { background: oklch(0.18 0.02 260); color: white; position: relative; overflow: hidden; }
.empresa-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, color-mix(in oklch, var(--primary), transparent 70%), transparent 50%),
    radial-gradient(circle at 80% 80%, color-mix(in oklch, var(--accent), transparent 80%), transparent 50%);
  opacity: 0.6;
}
.empresa-bg .eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: oklch(0.85 0.05 250);
}
.empresa-bg .h2 { color: white; }
.empresa-bg .lede { color: oklch(0.78 0.01 260); }
.empresa-bg .section-inner { position: relative; z-index: 1; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.solution {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 24px;
  transition: background 0.2s, border-color 0.2s;
}
.solution:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); }
.solution-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.solution-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.solution-text {
  font-size: 13.5px;
  color: oklch(0.78 0.01 260);
  line-height: 1.55;
  margin: 0;
}
.solution-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  background: color-mix(in oklch, var(--accent), transparent 60%);
  color: oklch(0.92 0.07 155);
  margin-bottom: 10px;
}

/* how it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px 24px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px; left: 22px;
  width: 32px; height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 2px 8px -2px color-mix(in oklch, var(--primary), transparent 50%);
}
.step-icon {
  font-size: 24px;
  margin: 6px 0 14px;
}
.step-title { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.step-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.step-arrow {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 24px;
  color: var(--border-strong);
  display: grid; place-items: center;
  z-index: 2;
}
.step:last-child .step-arrow { display: none; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 16px 20px;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-q .faq-chev { color: var(--text-faint); transition: transform 0.2s; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--primary), var(--primary-deep));
  color: white;
  border-radius: 22px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 110%, color-mix(in oklch, var(--accent), transparent 50%), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  position: relative;
}
.cta-banner p {
  font-size: 15px;
  color: oklch(0.92 0.02 250);
  margin: 0 0 22px;
  position: relative;
  max-width: 480px;
}
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.btn-light { background: white; color: var(--primary); }
.btn-light:hover { background: oklch(0.96 0.005 260); }
.btn-outline-light { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: white; }

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cta-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
}
.cta-stat-num { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.cta-stat-lbl { font-size: 11.5px; color: oklch(0.85 0.02 250); margin-top: 4px; }

/* ================= FOOTER ================= */
.footer {
  background: oklch(0.14 0.01 260);
  color: oklch(0.78 0.01 260);
  padding: 56px 32px 28px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand-name { color: white; }
.footer-brand p {
  font-size: 13px;
  margin: 14px 0 16px;
  line-height: 1.55;
}
.footer-region {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 13px;
  color: oklch(0.78 0.01 260);
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: oklch(0.62 0.01 260);
  flex-wrap: wrap;
  gap: 12px;
}

/* responsive */
@media (max-width: 980px) {
  .hero-inner, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 480px; }
  .benefits-grid, .solutions-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) .step-arrow { display: none; }
  .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 60px 20px; }
  .hero { padding: 56px 20px 80px; }
  .nav-inner { padding: 12px 20px; gap: 12px; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  /* keep floating tags inside the viewport */
  .hero-visual { height: 440px; }
  .float-tag { font-size: 11px; }
  .float-tag.tag-1 { left: 0; top: 20px; }
  .float-tag.tag-2 { right: 0; bottom: 40px; }
  .float-tag.tag-3 { display: none; }
  .hero-card, .hero-card.front { width: min(330px, 100%); }
  .nav-brand .brand-sub { display: none; }
  .soon-badge { font-size: 11px; padding: 7px 11px; }
}
