/* BrainHeal — design tokens */
:root {
  /* BrainHeal core — exact palette from brand manual */
  --bh-blue-deep: #0C2044;
  --bh-blue: #214397;
  /* Monochromatic blue scale (manual page 16) */
  --bh-blue-400: #4371C4;
  --bh-blue-300: #729FF0;
  --bh-blue-200: #A1C3FF;
  --bh-blue-100: #C5DAFF;
  /* Legacy aliases */
  --bh-blue-soft: #BDC7E0;
  --bh-blue-light: #C5DAFF;
  --bh-blue-bg: #F4F5FA;

  /* sub-brands */
  --bb-purple: #8B6FD4;
  --bb-purple-light: #DDD4F3;
  --bb-purple-deep: #322154;

  --bp-cyan: #00A9D1;
  --bp-cyan-light: #B3E6F2;

  --bc-teal: #008877;
  --bc-teal-light: #B3DCD7;

  /* neutrals — manual: off-white #F9F9F9 */
  --bg: #F9F9F9;
  --surface: #FFFFFF;
  --ink: #1E1E1E;
  --ink-soft: #3D3D3D;
  --ink-muted: #757575;
  --line: #E5E7EB;

  --footer: #1D284E;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-pill: 100px;

  --shadow-sm: 0 4px 12px rgba(12,32,68,0.06);
  --shadow-md: 0 14px 40px rgba(12,32,68,0.10);
  --shadow-lg: 0 24px 80px rgba(12,32,68,0.18);

  --container: 1240px;

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
  --font-quote: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ───── Header ───── */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 20px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.is-light { background: rgba(248,248,248,0.85); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(12,32,68,0.06); padding: 12px 0; }
.site-header.is-dark { color: #fff; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  background: rgba(248,248,248,0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px 28px;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.site-header.is-light .header-inner {
  background: transparent; border-color: transparent; padding: 8px 0;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em;
  color: inherit;
}
.brand-logo {
  height: 56px; width: auto; max-width: 180px; display: block;
  object-fit: contain;
  user-select: none; -webkit-user-drag: none;
}
@media (max-width: 720px) {
  .brand-logo { height: 36px; max-width: 120px; }
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: conic-gradient(from 220deg, var(--bh-blue), var(--bp-cyan), var(--bc-teal), var(--bb-purple), var(--bh-blue));
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.65), 0 6px 16px rgba(12,32,68,0.18);
}
.brand-mark::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: #fff;
}
.brand-name { font-weight: 800; }
.site-header.is-dark .brand-name { color: #fff; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 500; font-size: 16px;
  padding: 10px 16px; border-radius: 10px;
  color: inherit; opacity: 0.92;
  transition: background 0.2s, opacity 0.2s, color 0.2s;
}
.nav a:hover { background: rgba(255,255,255,0.15); opacity: 1; }
.site-header.is-light .nav a:hover { background: rgba(33,67,151,0.08); color: var(--bh-blue); }
.nav a.active { color: var(--bh-blue); background: rgba(33,67,151,0.10); }
.site-header.is-dark .nav a.active { background: rgba(255,255,255,0.18); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(12,32,68,0.18); }
.btn-primary { background: var(--bh-blue); color: #fff; }
.btn-primary:hover { background: #1a3680; }
.btn-secondary { background: var(--bh-blue-soft); color: var(--bh-blue); }
.btn-secondary:hover { background: #a8b6d4; }
.btn-ghost { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-purple { background: var(--bb-purple); color: #fff; }
.btn-purple:hover { background: #7a5fc2; }
.btn-cyan { background: var(--bp-cyan); color: #fff; }
.btn-teal { background: var(--bc-teal); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 28px; font-size: 17px; }

.mobile-toggle { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .mobile-toggle {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.22);
  }
  .site-header.is-light .mobile-toggle { background: rgba(33,67,151,0.06); border-color: rgba(33,67,151,0.14); color: var(--bh-blue); }
  .mobile-toggle .line { width: 18px; height: 2px; background: currentColor; display: block; transition: transform 0.3s ease, opacity 0.2s; }
  .mobile-toggle .line + .line { margin-top: 4px; }
  .mobile-toggle.open .line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-toggle.open .line:nth-child(2) { opacity: 0; }
  .mobile-toggle.open .line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .header-inner { padding: 8px 12px; gap: 8px; }
  .site-header.is-light .header-inner { padding: 8px 4px; }

  .mobile-nav {
    position: fixed; inset: 80px 16px auto 16px;
    background: #fff; border-radius: 18px; padding: 16px;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 4px;
    transform-origin: top right;
    animation: pop 0.18s ease-out;
  }
  .mobile-nav a { padding: 14px 16px; border-radius: 12px; color: var(--ink); font-weight: 600; }
  .mobile-nav a:hover, .mobile-nav a.active { background: var(--bh-blue-bg); color: var(--bh-blue); }
  .mobile-nav .btn { margin-top: 8px; }
}
@keyframes pop {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ───── Hero ───── */
.hero {
  position: relative; min-height: 100vh;
  color: #fff; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,32,68,0.78) 0%, rgba(12,32,68,0.55) 45%, rgba(12,32,68,0.25) 100%),
              linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 64px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .accent { background: linear-gradient(120deg, #fff 30%, var(--bh-blue-soft) 70%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead {
  font-size: clamp(18px, 1.6vw, 24px); font-weight: 500;
  line-height: 1.4; margin: 0 0 36px; max-width: 56ch; opacity: 0.94;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, background 0.3s;
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.stat-card .stat-row { display: flex; align-items: center; gap: 12px; }
.stat-card .stat-icon { width: 44px; height: 44px; border-radius: 14px; background: rgba(255,255,255,0.15); display: grid; place-items: center; }
.stat-card .stat-num { font-size: 44px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.stat-card .stat-label { font-size: 16px; line-height: 1.4; opacity: 0.9; }

/* ───── Section base ───── */
section { padding: 100px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: end; margin-bottom: 56px; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; } }
.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800; line-height: 1.05; margin: 0;
  color: var(--bh-blue);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head .sub { font-size: 18px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; max-width: 48ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  color: var(--bh-blue);
  background: rgba(33,67,151,0.08);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 16px;
}

/* ───── About card ───── */
.about-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: #fff;
}
.about-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0) 100%);
}
.about-card .inner { position: relative; z-index: 1; padding: 56px; max-width: 540px; }
.about-card h2 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; margin: 0 0 20px; font-weight: 700; letter-spacing: -0.01em; text-wrap: balance; }
.about-card p { font-size: 17px; line-height: 1.65; margin: 0; opacity: 0.94; text-wrap: pretty; }

/* ───── Audience tabs ───── */
.audience { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.audience-tabs {
  display: inline-flex; padding: 8px;
  border: 2px solid var(--bh-blue-soft);
  border-radius: 100px;
  gap: 4px;
  background: var(--surface);
}
.audience-tabs button {
  padding: 12px 24px; border-radius: 100px; font-weight: 600; font-size: 16px;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.audience-tabs button.active { background: var(--bh-blue); color: #fff; }
.audience-tabs button:hover:not(.active) { background: var(--bh-blue-bg); }

.audience-content {
  display: grid; grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr); gap: 32px;
  width: 100%;
}
@media (max-width: 880px) { .audience-content { grid-template-columns: 1fr; } }
.audience-card {
  background: var(--bh-blue-bg); border: 2px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 24px; justify-content: space-between;
}
.sub-brand-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 24px; letter-spacing: -0.01em;
}
.sub-brand-mark .dot { width: 14px; height: 14px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.audience-card p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.audience-image {
  border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  border: 2px solid var(--line);
  min-height: 380px;
  position: relative; overflow: hidden;
}

/* ───── Mission band ───── */
.mission {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--bh-blue-deep), var(--bh-blue) 60%, var(--bb-purple) 130%);
}
.mission::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--mission-bg);
  opacity: 0.18; mix-blend-mode: luminosity;
}
.mission .container { position: relative; }
.mission-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
@media (max-width: 980px) { .mission-grid { grid-template-columns: 1fr; gap: 40px; } }
.mission h2 { font-size: clamp(36px, 4.4vw, 60px); line-height: 1.1; font-weight: 700; margin: 0 0 28px; color: #fff; letter-spacing: -0.02em; text-wrap: balance; }
.mission p { font-size: 18px; line-height: 1.65; opacity: 0.94; text-wrap: pretty; }

.value-cloud { position: relative; min-height: 360px; }
.value-tag {
  position: absolute;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; white-space: nowrap;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s;
}
.value-tag:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ───── Solutions / cards ───── */
.solutions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 980px) { .solutions-grid { grid-template-columns: 1fr; } }
.solution-card {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  min-height: 480px;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s ease;
}
.solution-card:hover { transform: translateY(-4px); }
.solution-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.solution-card .label {
  position: relative; z-index: 1;
  padding: 24px 28px;
  font-size: 20px; font-weight: 700; color: #fff; text-align: center;
}
.solution-card .label.purple { background: var(--bb-purple); }
.solution-card .label.cyan { background: var(--bp-cyan); }
.solution-card .label.teal { background: var(--bc-teal); }

.solution-detail {
  position: relative; z-index: 1;
  background: var(--bc-teal); color: #fff;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.solution-detail h3 { margin: 0; font-size: 22px; font-weight: 700; }
.solution-detail p { margin: 0; font-size: 15px; line-height: 1.55; opacity: 0.94; }

/* ───── Differentials ───── */
.diff-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
@media (max-width: 980px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.diff-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bh-blue), var(--bb-purple));
  color: #fff;
}
.diff-card h3 { font-size: 22px; margin: 0; color: var(--bh-blue); font-weight: 700; }
.diff-card p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-soft); }

/* ───── Testimonials ───── */
.testimonial-feature {
  background: var(--bh-blue-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 56px;
}
@media (max-width: 720px) { .testimonial-feature { padding: 32px; } }
.testimonial-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid #fff; box-shadow: var(--shadow-sm); flex: 0 0 auto; }
.avatar.placeholder {
  background: linear-gradient(135deg, var(--bb-purple), var(--bp-cyan));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 22px;
}
.testimonial-feature .name { font-weight: 700; color: var(--ink); font-size: 20px; line-height: 1.2; }
.testimonial-feature .role { color: var(--ink-muted); font-size: 16px; }
.testimonial-feature .quote { font-family: var(--font-quote); font-size: clamp(22px, 2vw, 30px); font-weight: 700; line-height: 1.35; color: var(--ink); margin: 0 0 20px; text-wrap: balance; }
.testimonial-feature .body { font-size: 18px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 80ch; }

.testimonial-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
@media (max-width: 760px) { .testimonial-row { grid-template-columns: 1fr; } }
.testimonial-mini {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial-mini .quote { font-family: var(--font-quote); font-weight: 700; font-size: 22px; line-height: 1.35; color: var(--ink); margin: 0; }

/* ───── Partners ───── */
.partners {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-inner { display: grid; grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr); gap: 48px; align-items: center; }
@media (max-width: 880px) { .partners-inner { grid-template-columns: 1fr; gap: 24px; } }
.partners h3 { color: var(--bh-blue); font-size: 32px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.partners-logos { display: flex; align-items: center; justify-content: space-around; gap: 32px; flex-wrap: wrap; }
.partners-logos img { max-height: 80px; width: auto; opacity: 0.9; transition: opacity 0.2s, transform 0.2s; }
.partners-logos img:hover { opacity: 1; transform: scale(1.04); }

/* ───── Contact section (split: text + form) ───── */
.contact-section {
  padding: 96px 0 120px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px; align-items: start;
}
.contact-headline {
  font-size: clamp(28px, 3.6vw, 46px);
  color: var(--bh-blue-deep);
  margin: 6px 0 16px;
  line-height: 1.15; letter-spacing: -0.01em; font-weight: 700;
  text-wrap: balance;
}
.contact-lead {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  margin: 0 0 24px; max-width: 50ch;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 880px) {
  .contact-section { padding: 64px 0 96px; margin-top: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-lead { font-size: 16px; max-width: none; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ───── Trust strip (compact, right after hero) ───── */
.trust-strip {
  padding: 40px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.trust-strip .trust-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted);
  flex: 0 0 auto;
}
.trust-strip .trust-logos {
  display: flex; align-items: center; gap: 64px; flex-wrap: wrap; justify-content: center;
}
.trust-strip .trust-logos img {
  max-height: 96px; width: auto; opacity: 0.9;
  transition: opacity 0.25s, transform 0.25s;
}
.trust-strip .trust-logos img:hover { opacity: 1; transform: scale(1.05); }
@media (max-width: 880px) {
  .trust-strip { padding: 32px 0; }
  .trust-strip-inner { gap: 24px; flex-direction: column; }
  .trust-strip .trust-logos { gap: 32px; }
  .trust-strip .trust-logos img { max-height: 80px; }
}

/* ───── Contact ───── */
.contact-band {
  background: var(--bh-blue-bg); padding: 0;
}
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr); gap: 0; align-items: stretch; min-height: 580px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-text { padding: 80px 56px; display: flex; flex-direction: column; gap: 24px; justify-content: center; }
@media (max-width: 720px) { .contact-text { padding: 56px 24px; } }
.contact-text h2 { color: var(--ink); font-size: clamp(34px, 4vw, 48px); margin: 0; line-height: 1.1; font-weight: 700; letter-spacing: -0.01em; text-wrap: balance; }
.contact-text p { font-size: 18px; line-height: 1.65; color: var(--ink-soft); margin: 0; max-width: 50ch; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bh-blue); color: #fff;
  padding: 14px 22px; border-radius: 100px; font-weight: 700;
  transition: background 0.2s;
}
.contact-pill:hover { background: #1a3680; }
.contact-image {
  background-size: cover; background-position: center;
  min-height: 400px;
}

/* ───── Footer ───── */
.site-footer {
  background: var(--footer); color: #fff;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 64px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.site-footer h4 { margin: 0 0 16px; font-size: 24px; font-weight: 700; }
.site-footer p { font-size: 16px; line-height: 1.55; opacity: 0.85; margin: 0 0 24px; max-width: 44ch; }
.footer-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(238,251,253,0.16);
  padding: 8px 16px; border-radius: 100px;
  font-weight: 600; font-size: 14px;
  transition: background 0.2s;
}
.footer-pill:hover { background: rgba(238,251,253,0.26); }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.10); display: grid; place-items: center;
  transition: background 0.2s, transform 0.2s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

.footer-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 32px; }
@media (max-width: 880px) { .footer-right { align-items: flex-start; } }
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px; justify-content: flex-end; }
.footer-nav a { padding: 10px 16px; border-radius: 10px; font-weight: 500; transition: background 0.2s; }
.footer-nav a:hover { background: rgba(255,255,255,0.12); }
.footer-meta { display: flex; gap: 32px; font-size: 14px; opacity: 0.8; flex-wrap: wrap; }
.footer-brand-large { height: 56px; width: auto; max-width: 200px; display: block; object-fit: contain; }
@media (max-width: 720px) { .footer-brand-large { height: 40px; } }

/* ───── Team section ───── */
.team-section {
  padding: 100px 0 80px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.team-section .section-head { margin-bottom: 48px; }
.team-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: rgba(33, 67, 151, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -20px rgba(33, 67, 151, 0.30);
}
.team-photo {
  flex: 0 0 auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  background-size: cover; background-position: center top;
  background-color: #e9eef7;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.9), 0 6px 14px -6px rgba(33, 67, 151, 0.30);
}
.team-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.team-name {
  font-size: 19px; font-weight: 700; color: var(--bh-blue-deep);
  letter-spacing: -0.01em; line-height: 1.2;
  margin: 0;
}
.team-degree {
  font-size: 13px; font-weight: 600; color: var(--bh-blue);
  letter-spacing: 0.01em; line-height: 1.45;
}
.team-role-inline {
  color: var(--bb-purple); font-weight: 700;
  letter-spacing: 0.02em;
}
.team-desc {
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
  margin-top: 2px;
}
.team-affiliations {
  font-size: 12px; font-weight: 600; color: var(--ink-muted);
  letter-spacing: 0.02em; line-height: 1.5;
  margin-top: auto; padding-top: 10px;
  border-top: 1px solid var(--line);
}
@media (max-width: 480px) {
  .team-card { padding: 18px; gap: 14px; }
  .team-photo { width: 76px; height: 76px; }
  .team-name { font-size: 17px; }
}

/* New compact footer layout (footer-top + footer-bottom) */
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 32px;
}
.footer-nav-min { display: flex; flex-wrap: wrap; gap: 32px; }
.footer-nav-min a {
  font-size: 14px; font-weight: 600; color: #fff; opacity: 0.95;
  transition: opacity 0.2s;
}
.footer-nav-min a:hover { opacity: 0.7; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-bottom .footer-meta {
  flex-direction: column; gap: 6px; font-size: 13px; opacity: 0.7;
  letter-spacing: 0.02em;
}
.footer-safe-harbor {
  font-size: 11.5px; opacity: 0.6; max-width: 64ch; line-height: 1.5;
  margin-top: 4px;
}
@media (max-width: 880px) {
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ───── Generic page header (Sobre, Empresas, etc.) ───── */
.page-hero {
  position: relative; min-height: 540px; color: #fff; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bh-blue-deep), var(--bh-blue));
}
.page-hero.purple { background: linear-gradient(135deg, var(--bb-purple-deep), var(--bb-purple)); }
.page-hero.cyan { background: linear-gradient(135deg, var(--bh-blue-deep), var(--bp-cyan)); }
.page-hero.teal { background: linear-gradient(135deg, var(--bh-blue-deep), var(--bc-teal)); }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center;
  opacity: 0.35; mix-blend-mode: luminosity;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { background: rgba(255,255,255,0.18); color: #fff; }
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; max-width: 18ch; text-wrap: balance; color: #fff; }
.page-hero p { font-size: 20px; line-height: 1.55; max-width: 60ch; opacity: 0.94; margin: 0; }

/* ───── Two-column generic ───── */
.two-col {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col .copy h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 0 0 20px; color: var(--bh-blue); line-height: 1.1; font-weight: 700; letter-spacing: -0.01em; text-wrap: balance; }
.two-col .copy p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; max-width: 56ch; text-wrap: pretty; }
.two-col .image {
  border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  min-height: 460px;
  border: 1px solid var(--line);
}

/* ───── Feature grid ───── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(33, 67, 151, 0.08);
  color: var(--bh-blue);
  box-shadow: inset 0 0 0 1px rgba(33, 67, 151, 0.14);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.feature-card .icon-wrap svg { width: 24px; height: 24px; }
.feature-card:hover .icon-wrap {
  background: var(--bh-blue);
  color: #fff;
  box-shadow: inset 0 0 0 1px transparent;
}
.feature-card.tone-blue   .icon-wrap { background: rgba(33, 67, 151, 0.08);  color: var(--bh-blue);      box-shadow: inset 0 0 0 1px rgba(33, 67, 151, 0.14); }
.feature-card.tone-blue:hover   .icon-wrap { background: var(--bh-blue);      color: #fff; }
.feature-card.tone-purple .icon-wrap { background: rgba(139, 111, 212, 0.10); color: var(--bb-purple);    box-shadow: inset 0 0 0 1px rgba(139, 111, 212, 0.18); }
.feature-card.tone-purple:hover .icon-wrap { background: var(--bb-purple);    color: #fff; }
.feature-card.tone-cyan   .icon-wrap { background: rgba(0, 169, 209, 0.10);  color: var(--bp-cyan);      box-shadow: inset 0 0 0 1px rgba(0, 169, 209, 0.18); }
.feature-card.tone-cyan:hover   .icon-wrap { background: var(--bp-cyan);     color: #fff; }
.feature-card.tone-teal   .icon-wrap { background: rgba(0, 136, 119, 0.10);  color: var(--bc-teal);      box-shadow: inset 0 0 0 1px rgba(0, 136, 119, 0.18); }
.feature-card.tone-teal:hover   .icon-wrap { background: var(--bc-teal);     color: #fff; }
.feature-card.tone-deep   .icon-wrap { background: rgba(12, 32, 68, 0.08);   color: var(--bh-blue-deep); box-shadow: inset 0 0 0 1px rgba(12, 32, 68, 0.14); }
.feature-card.tone-deep:hover   .icon-wrap { background: var(--bh-blue-deep); color: #fff; }
.feature-card h3 { margin: 0; font-size: 20px; font-weight: 700; color: var(--bh-blue-deep); letter-spacing: -0.01em; }
.feature-card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ───── Stats band ───── */
.stats-band { background: var(--bh-blue); color: #fff; padding: 80px 0; }
.stats-band.purple { background: var(--bb-purple); }
.stats-band.cyan { background: var(--bp-cyan); }
.stats-band.teal { background: var(--bc-teal); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat-item .num { font-size: clamp(40px, 4.5vw, 64px); font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.stat-item .label { font-size: 16px; opacity: 0.92; margin-top: 8px; line-height: 1.4; }

/* ───── CTA band ───── */
.cta-band { padding: 80px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--bh-blue), var(--bb-purple));
  border-radius: 28px;
  padding: 64px;
  color: #fff;
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 880px) { .cta-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: left; } }
.cta-card::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
}
.cta-card h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; margin: 0 0 12px; font-weight: 700; letter-spacing: -0.01em; text-wrap: balance; color: #fff; }
.cta-card p { font-size: 17px; opacity: 0.92; margin: 0; max-width: 50ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) { .cta-actions { justify-content: flex-start; } }

/* ───── Reveal animation ───── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ───── Tweaks panel ───── */
.tweaks-panel {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  width: 320px; background: #fff;
  border-radius: 18px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  font-size: 14px;
  animation: pop 0.18s ease-out;
}
.tweaks-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--bh-blue-deep); color: #fff; }
.tweaks-header strong { font-size: 14px; letter-spacing: 0.02em; }
.tweaks-body { padding: 18px; display: flex; flex-direction: column; gap: 16px; max-height: 70vh; overflow: auto; }
.tweak-row { display: flex; flex-direction: column; gap: 8px; }
.tweak-row label { font-weight: 600; color: var(--ink); font-size: 13px; }
.tweak-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tweak-swatch {
  width: 32px; height: 32px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.15s, border-color 0.15s;
}
.tweak-swatch:hover { transform: scale(1.08); }
.tweak-swatch.selected { border-color: var(--ink); }
.tweak-row select, .tweak-row input[type="text"] {
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: 14px; font-family: inherit;
}
.tweak-row .seg { display: inline-flex; background: var(--bh-blue-bg); border-radius: 100px; padding: 4px; gap: 2px; }
.tweak-row .seg button { padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.tweak-row .seg button.active { background: var(--bh-blue); color: #fff; }
.tweak-close { background: rgba(255,255,255,0.16); border-radius: 8px; padding: 4px 8px; }


/* ───── Clinicas-solo additions ───── */
.problem-feature {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px;
  align-items: stretch;
  margin-top: 12px;
}
.problem-feature .problem-photo {
  background-size: cover; background-position: center;
  border-radius: var(--radius-md);
  min-height: 380px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.problem-feature .problem-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,28,69,0.35) 100%);
  border-radius: inherit;
}
.problem-feature .problem-reflection {
  display: flex; flex-direction: column; gap: 18px;
  justify-content: center;
}
.problem-feature .problem-reflection h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 700; line-height: 1.15;
  color: var(--bh-blue-deep);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.problem-feature .problem-reflection h3 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--bb-purple), var(--bp-cyan));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.problem-feature .problem-reflection p {
  margin: 0;
  font-size: 17px; line-height: 1.65;
  color: var(--ink-soft);
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .problem-feature { grid-template-columns: 1fr; gap: 32px; }
  .problem-feature .problem-photo { min-height: 280px; }
}

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.problem-card .problem-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--bh-blue), var(--bb-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.03em;
}
.problem-card h3 { margin: 0; font-size: 22px; font-weight: 700; color: var(--bh-blue-deep); letter-spacing: -0.01em; text-wrap: balance; }
.problem-card p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); text-wrap: pretty; }

.check-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.check-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-soft);
}
.check-list li svg {
  width: 18px; height: 18px; flex: 0 0 auto;
  background: var(--bh-blue-bg);
  color: var(--bh-blue);
  padding: 4px;
  border-radius: 50%;
  box-sizing: content-box;
}
.upcoming-badge {
  display: inline-flex; align-items: center;
  margin-left: 6px; padding: 2px 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bb-purple);
  background: rgba(139, 111, 212, 0.10);
  border: 1px solid rgba(139, 111, 212, 0.22);
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.science-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.sci-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.sci-card .sci-num {
  font-size: clamp(32px, 3vw, 44px); font-weight: 800; line-height: 1;
  letter-spacing: -0.02em;
}
.sci-card .sci-label {
  font-size: 14px; line-height: 1.4; opacity: 0.9;
}

/* ───── Hero meta strip (LGPD · pesquisa · apoio) ───── */
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px; color: rgba(255,255,255,0.72);
}
.hero-meta .meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .meta-item svg { color: var(--bp-cyan); flex: 0 0 auto; }

/* ───── Convergência: dois pilares + sinapse ───── */
.pillars {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
  gap: 36px;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; gap: 24px; }
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar .p-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bh-blue); margin-bottom: 12px;
}
.pillar.tech .p-tag { color: var(--bp-cyan); }
.pillar h3 {
  font-size: 22px; font-weight: 700; color: var(--bh-blue-deep);
  line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 12px; text-wrap: balance;
}
.pillar p {
  margin: 0 0 20px; font-size: 15px; color: var(--ink-soft); line-height: 1.65;
}
.pillar ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pillar ul li {
  font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bh-blue-bg);
  border-radius: 10px;
}
.pillar ul li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--bh-blue); flex-shrink: 0;
}
.pillar.tech ul li::before { background: var(--bp-cyan); }

/* the central synapse marker */
.synapse {
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bh-blue), var(--bp-cyan));
  color: #fff;
  box-shadow:
    0 0 0 8px rgba(33,67,151,0.08),
    0 0 0 18px rgba(0,169,209,0.05),
    var(--shadow-md);
  position: relative;
  flex-shrink: 0;
}
.synapse::before, .synapse::after {
  content:""; position: absolute; top: 50%; height: 2px; width: 28px;
}
.synapse::before { right: 100%; background: linear-gradient(90deg, transparent, var(--bh-blue)); }
.synapse::after  { left: 100%;  background: linear-gradient(90deg, var(--bp-cyan), transparent); }
@media (max-width: 980px) {
  .synapse { transform: rotate(90deg); margin: 0 auto; }
  .synapse::before, .synapse::after { width: 18px; }
}

.converge-foot {
  max-width: 760px; margin: 48px auto 0;
  text-align: center;
  font-size: 17px; color: var(--ink-soft); line-height: 1.7;
  text-wrap: pretty;
}
.converge-foot strong { color: var(--bh-blue-deep); font-weight: 700; }

/* ───── Journey flow: paciente → profissional → cuidador ───── */
.journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 880px) { .journey { grid-template-columns: 1fr; } }
.journey-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.journey-node:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.journey-node.role-paciente   { border-top: 4px solid var(--bb-purple); }
.journey-node.role-profissional { border-top: 4px solid var(--bh-blue); }
.journey-node.role-cuidador   { border-top: 4px solid var(--bc-teal); }

.journey-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  color: #fff;
}
.journey-node.role-paciente   .journey-icon { background: var(--bb-purple); }
.journey-node.role-profissional .journey-icon { background: var(--bh-blue); }
.journey-node.role-cuidador   .journey-icon { background: var(--bc-teal); }

.journey-node .role-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.journey-node h3 {
  margin: 0; font-size: 20px; font-weight: 700; color: var(--bh-blue-deep);
  letter-spacing: -0.01em; line-height: 1.25;
}
.journey-node p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* connector arrows between nodes (desktop only) */
.journey-node + .journey-node::before {
  content: "→";
  position: absolute;
  left: -18px; top: 56px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--bh-blue);
  font-size: 18px; font-weight: 700;
  z-index: 2;
}
@media (max-width: 880px) {
  .journey-node + .journey-node::before { display: none; }
}

/* ───── Pricing ───── */
.pricing-section {
  background: var(--bh-blue-bg);
  padding: 100px 0;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card.founder {
  border: 2px solid var(--bh-blue);
  box-shadow: 0 18px 48px rgba(33,67,151,0.14);
}
.price-card .price-badge {
  position: absolute; top: -14px; left: 32px;
  background: var(--bh-blue); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.price-card .price-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted);
}
.price-card .price-amount {
  font-size: 44px; font-weight: 800; color: var(--bh-blue-deep); line-height: 1;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.price-card .price-amount .per {
  font-size: 16px; color: var(--ink-muted); font-weight: 500; letter-spacing: 0;
}
.price-card .price-amount .strike {
  font-size: 20px; color: var(--ink-muted); text-decoration: line-through; font-weight: 500;
}
.price-card h3 {
  font-size: 19px; font-weight: 700; color: var(--bh-blue-deep);
  margin: 0;
}
.price-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px; color: var(--ink-soft);
}
.price-card ul li {
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.5;
}
.price-card ul li svg {
  flex: 0 0 auto; margin-top: 2px;
  color: var(--bc-teal);
}
.price-card .price-cta {
  margin-top: auto;
  padding: 14px 18px; border-radius: 12px; text-align: center;
  background: var(--bh-blue); color: #fff;
  font-weight: 700; font-size: 15px;
  transition: background .2s, transform .12s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.price-card.founder .price-cta { background: var(--bh-blue); }
.price-card:not(.founder) .price-cta {
  background: transparent; color: var(--bh-blue);
  border: 1.5px solid var(--bh-blue);
}
.price-card .price-cta:hover { transform: translateY(-1px); }
.price-disclaimer {
  text-align: center;
  font-size: 13px; color: var(--ink-muted);
  margin-top: 28px;
}

/* ───── FAQ ───── */
.faq-section {
  background: var(--surface);
  padding: 100px 0;
}
.faq-list {
  max-width: 820px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--bh-blue-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--bh-blue-soft); background: #fff; }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 26px;
  font-size: 16px; font-weight: 600; color: var(--bh-blue-deep);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  background: transparent;
}
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bh-blue); color: #fff;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--bb-purple); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 26px;
  color: var(--ink-soft); font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 600px; padding: 0 26px 22px;
}

/* ───── Pilot CTA refinements ───── */
.cta-card.founder-card {
  background: linear-gradient(135deg, var(--bh-blue-deep), var(--bh-blue) 60%, var(--bb-purple) 130%);
  position: relative;
}
.cta-card .price-callout {
  display: inline-flex; align-items: baseline; gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 14px 22px; border-radius: 14px;
  margin-bottom: 8px;
}
.cta-card .price-callout .big {
  font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.02em;
}
.cta-card .price-callout .small {
  font-size: 14px; color: rgba(255,255,255,0.75);
}

/* ───── Sticky mobile CTA ───── */
.sticky-cta-mobile { display: none; }
@media (max-width: 720px) {
  .sticky-cta-mobile {
    display: block; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
    background: rgba(12,32,68,0.94); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 90;
  }
  .sticky-cta-mobile a {
    display: block; text-align: center;
    padding: 14px; border-radius: 12px;
    background: var(--bh-blue); color: #fff;
    font-weight: 700; font-size: 15px;
  }
  body { padding-bottom: 80px; }
}

/* ───── Foot legal block (CNPJ, DPO, etc.) ───── */
.foot-legal {
  background: var(--footer);
  padding: 24px 20px 32px;
  font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.7;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.foot-legal p { max-width: 1100px; margin: 0 auto; }
.foot-legal strong { color: rgba(255,255,255,0.8); font-weight: 600; }
.foot-legal a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
