/* =============================================================
   MeEmpreguei — Design tokens
   Paleta extraída da logo: navy profundo + gradiente azul→ciano
   ============================================================= */
:root {
  --navy-950: #030b22;
  --navy-900: #041238;
  --navy-850: #071a49;
  --navy-800: #0b2158;
  --navy-700: #142c68;
  --navy-600: #1f3a80;

  --blue-500: #0078fb;
  --blue-400: #2e93ff;
  --cyan-400: #2ae7f6;
  --cyan-300: #7ff2fb;

  --ice-50: #f3f8ff;
  --ice-100: #e7f1ff;
  --ice-200: #d6e6fb;

  --ink-900: #0a1330;
  --ink-700: #33406b;
  --ink-500: #5b6690;
  --ink-300: #94a0c4;

  --white: #ffffff;

  --success: #17b26a;
  --warm: #ffb238;

  --gradient-brand: linear-gradient(120deg, var(--blue-500) 0%, var(--cyan-400) 100%);
  --gradient-dark: radial-gradient(120% 140% at 15% 0%, #0b2158 0%, #041238 45%, #030b22 100%);

  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 60px -25px rgba(4, 18, 56, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(4, 18, 56, 0.28);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 4px rgba(0, 120, 251, 0.15);
}
.on-dark .eyebrow { color: var(--cyan-300); }
.on-dark .eyebrow::before { box-shadow: 0 0 0 4px rgba(42, 231, 246, 0.18); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--navy-900); }
.section-head p { margin-top: 14px; font-size: 1.05rem; color: var(--ink-500); }
.on-dark .section-head h2 { color: var(--white); }
.on-dark .section-head p { color: #b7c3ea; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(0, 120, 251, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(0, 120, 251, 0.65); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-800);
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-whatsapp {
  background: #1fb15a;
  color: var(--white);
}
.btn-whatsapp:hover { background: #17994c; transform: translateY(-2px); }
.btn-block { width: 100%; }
:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Header ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 18, 56, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand span { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.15rem; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: #cdd7f5;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 920px) {
  .nav-links { 
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .header-actions .btn span.long { display: none; }
}

/* Hero ----------------------------------------------------------- */
.hero {
  background: var(--gradient-dark);
  color: var(--white);
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 70px;
}
.hero-network {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  color: var(--white);
}
.hero-copy h1 .grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lead {
  margin-top: 20px;
  font-size: 1.15rem;
  color: #c4cfef;
  max-width: 540px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9fadd6;
  font-size: 0.88rem;
}
.hero-trust strong { color: var(--white); }
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--navy-900);
  margin-left: -8px;
  background: var(--gradient-brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--navy-900);
}
.avatar-stack span:first-child { margin-left: 0; }

/* Chat mockup (hero signature visual) --------------------------- */
.chat-card {
  position: relative;
  background: rgba(11, 33, 88, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-soft);
}
.chat-card-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-900);
}
.chat-card-head strong { font-family: var(--font-display); font-size: 0.98rem; }
.chat-card-head small { display: block; color: #8fa5db; font-size: 0.8rem; }
.chat-status { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: #7fe0a7; }
.chat-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2fd576; }

.chat-bubble {
  max-width: 86%;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 0.92rem;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.5s var(--ease) forwards;
}
.chat-bubble.bot {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 4px;
  color: #e7edfc;
}
.chat-bubble.user {
  background: var(--gradient-brand);
  color: var(--navy-900);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-bubble b { font-weight: 700; }
.chat-bubble:nth-child(2) { animation-delay: 0.15s; }
.chat-bubble:nth-child(3) { animation-delay: 0.5s; }
.chat-bubble:nth-child(4) { animation-delay: 0.9s; }
.chat-bubble:nth-child(5) { animation-delay: 1.3s; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }

.chat-score {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.chat-score-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--cyan-300); }
.chat-score-bar { flex: 1; height: 8px; border-radius: 99px; background: rgba(255,255,255,0.1); overflow: hidden; }
.chat-score-bar span { display: block; height: 100%; width: 0%; background: var(--gradient-brand); border-radius: 99px; transition: width 1.4s var(--ease) 0.3s; }
.chat-score-label { font-size: 0.78rem; color: #9fadd6; }

/* Stat strip ------------------------------------------------------ */
.stat-strip {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 30px;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-item span { font-size: 0.82rem; color: #9fadd6; }
@media (max-width: 760px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* Generic sections ------------------------------------------------ */
.section { padding-block: 96px; }
.section.tight { padding-block: 72px; }
.on-light { background: var(--white); }
.on-ice { background: var(--ice-50); }
.on-dark { background: var(--gradient-dark); color: var(--white); }

/* Empathy / context section --------------------------------------- */
.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.empathy-copy p { color: var(--ink-500); font-size: 1.05rem; margin-bottom: 16px; }
.empathy-copy p strong { color: var(--navy-900); }
.empathy-cards { display: grid; gap: 16px; }
.empathy-card {
  background: var(--white);
  border: 1px solid var(--ice-200);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex; gap: 16px; align-items: flex-start;
}
.empathy-card .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
}
.empathy-card .ic svg { width: 22px; height: 22px; stroke: white; }
.empathy-card h4 { font-size: 1rem; color: var(--navy-900); margin-bottom: 4px; }
.empathy-card p { font-size: 0.92rem; color: var(--ink-500); margin: 0; }

@media (max-width: 860px) {
  .empathy-grid { grid-template-columns: 1fr; }
}

/* Feature cards (Headhunter Virtual) ------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(42,231,246,0.4); background: rgba(255,255,255,0.06); }
.feature-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(42, 231, 246, 0.12);
  border: 1px solid rgba(42, 231, 246, 0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card .ic svg { width: 24px; height: 24px; stroke: var(--cyan-300); }
.feature-card h3 { font-size: 1.08rem; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: #b7c3ea; }
.feature-card.lead {
  background: var(--gradient-brand);
  border: none;
}
.feature-card.lead h3, .feature-card.lead p { color: var(--navy-900); }
.feature-card.lead .ic { background: rgba(4,18,56,0.14); border-color: rgba(4,18,56,0.2); }
.feature-card.lead .ic svg { stroke: var(--navy-900); }

@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

/* Journey — signature network path ---------------------------------- */
.journey {
  position: relative;
}
.journey-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.journey-node {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 48px;
}
.journey-node:last-child { padding-bottom: 0; }
.journey-node-marker {
  position: relative;
  display: flex;
  justify-content: center;
}
.journey-node-marker::before {
  content: "";
  position: absolute;
  top: 56px; bottom: -48px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--blue-500) 0 6px, transparent 6px 12px);
  opacity: 0.5;
}
.journey-node:last-child .journey-node-marker::before { display: none; }
.journey-node-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--blue-500);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  box-shadow: 0 0 0 6px rgba(0,120,251,0.08);
  flex-shrink: 0;
  z-index: 1;
}
.journey-node.is-highlight .journey-node-dot {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--navy-900);
}
.journey-content {
  background: var(--white);
  border: 1px solid var(--ice-200);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
}
.journey-content .tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 8px;
}
.journey-content h3 { font-size: 1.2rem; color: var(--navy-900); margin-bottom: 10px; }
.journey-content p { color: var(--ink-500); font-size: 0.96rem; margin-bottom: 14px; }
.journey-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.journey-chips span {
  font-size: 0.8rem;
  background: var(--ice-100);
  color: var(--navy-800);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

@media (max-width: 620px) {
  .journey-node { grid-template-columns: 44px 1fr; gap: 16px; }
  .journey-node-dot { width: 40px; height: 40px; font-size: 0.82rem; }
  .journey-node-marker::before { top: 40px; bottom: -48px; }
}

/* Score / gamification section --------------------------------------- */
.score-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gauge-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--white); margin-top: -70px; }
.gauge-caption { font-size: 0.85rem; color: #9fadd6; text-align: center; max-width: 220px; }
.score-list { display: grid; gap: 18px; }
.score-item { display: flex; gap: 16px; align-items: flex-start; }
.score-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gradient-brand);
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem;
}
.score-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.score-item p { color: #b7c3ea; font-size: 0.92rem; }

@media (max-width: 900px) {
  .score-grid { grid-template-columns: 1fr; }
}

/* Personas ------------------------------------------------------------ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.persona-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ice-200);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.persona-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.persona-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--navy-900);
}
.persona-head strong { display: block; font-family: var(--font-display); color: var(--navy-900); }
.persona-head span { font-size: 0.85rem; color: var(--ink-500); }
.persona-card p { color: var(--ink-500); font-size: 0.95rem; margin-bottom: 14px; }
.persona-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--success);
  background: rgba(23,178,106,0.1);
  padding: 6px 12px; border-radius: var(--radius-pill);
}

@media (max-width: 920px) { .persona-grid { grid-template-columns: 1fr; } }

/* Channels (Web + WhatsApp) -------------------------------------------- */
.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.channel-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--ice-200);
  background: var(--ice-50);
}
.channel-card.whatsapp { background: #f0fbf4; border-color: #cdeedb; }
.channel-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--gradient-brand);
}
.channel-card.whatsapp .channel-icon { background: #1fb15a; }
.channel-icon svg { width: 26px; height: 26px; stroke: white; }
.channel-card h3 { color: var(--navy-900); font-size: 1.15rem; margin-bottom: 10px; }
.channel-card p { color: var(--ink-500); font-size: 0.96rem; }

@media (max-width: 760px) { .channel-grid { grid-template-columns: 1fr; } }

/* Pricing --------------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--ice-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.price-card.featured {
  border: 2px solid var(--blue-500);
  position: relative;
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -20px rgba(0,120,251,0.35);
}
.price-badge {
  position: absolute; top: -14px; left: 30px;
  background: var(--gradient-brand);
  color: var(--navy-900);
  font-size: 0.74rem; font-weight: 700;
  padding: 6px 14px; border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.price-card h3 { font-size: 1.1rem; color: var(--navy-900); margin-bottom: 6px; }
.price-card .price-sub { font-size: 0.88rem; color: var(--ink-500); margin-bottom: 18px; min-height: 36px; }
.price-amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--navy-900); }
.price-amount span { font-size: 0.95rem; font-weight: 500; color: var(--ink-500); }
.price-list { margin: 22px 0; display: grid; gap: 10px; flex: 1; }
.price-list li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--ink-700); align-items: flex-start; }
.price-list svg { width: 18px; height: 18px; stroke: var(--success); flex-shrink: 0; margin-top: 2px; }
.price-note { text-align: center; margin-top: 34px; color: var(--ink-500); font-size: 0.9rem; }

@media (max-width: 920px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* FAQ --------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--ice-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1rem;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ice-100);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--navy-800);
  border-radius: 2px;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-q .plus { transform: rotate(135deg); background: var(--gradient-brand); }
.faq-item.is-open .faq-q .plus::before, .faq-item.is-open .faq-q .plus::after { background: var(--navy-900); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p { padding: 0 22px 20px; color: var(--ink-500); font-size: 0.95rem; max-width: 640px; }

/* Final CTA ----------------------------------------------------------------- */
.final-cta {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--navy-900);
}
.final-cta h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 520px; }
.final-cta p { margin-top: 10px; color: rgba(4,18,56,0.75); max-width: 480px; }
.final-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta .btn-ghost { background: rgba(4,18,56,0.08); color: var(--navy-900); border-color: rgba(4,18,56,0.2); }
.final-cta .btn-ghost:hover { background: rgba(4,18,56,0.14); }
.final-cta .btn-primary { background: var(--navy-900); color: var(--white); box-shadow: 0 14px 30px -12px rgba(4,18,56,0.4); }

/* Footer ---------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: #9fadd6; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; margin-bottom: 18px; }
.footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 22px; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.social-row svg { width: 17px; height: 17px; stroke: #cdd7f5; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .empathy-grid, .score-grid { gap: 32px; }
  .final-cta { padding: 36px 26px; }
}

/* Reveal on scroll -------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Responsive base grids ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy p.lead { max-width: 100%; }
  .chat-card { max-width: 480px; }
}
@media (max-width: 620px) {
  .section { padding-block: 64px; }
  .final-cta { flex-direction: column; align-items: flex-start; }
}
