/* Pre-eclampsia landing page — Dr. Alan Hatanaka */
@import url('colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; }
input, textarea, select { font: inherit; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
  padding: 9px clamp(16px, 8vw, 96px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar .pill {
  background: rgba(255,255,255,.18);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}
@media (max-width: 820px) { .topbar .right { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 8vw, 96px);
  gap: 24px;
}
.header img { height: 54px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-amber {
  background: #FBAB2C;
  color: #1a1a1a;
  border-color: #FBAB2C;
  box-shadow: 0 8px 22px rgba(251,171,44,.32);
}
.btn-amber:hover { background: #E89B1C; border-color: #E89B1C; }
.btn-ghost-teal {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost-teal:hover { background: var(--color-primary-100); }
.btn-teal {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 8px 22px rgba(0,175,166,.25);
}
.btn-teal:hover { background: var(--color-primary-600); border-color: var(--color-primary-600); }
.btn-whats {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
  box-shadow: 0 10px 26px rgba(37,211,102,.32);
}
.btn-whats:hover { background: var(--color-whatsapp-700); border-color: var(--color-whatsapp-700); }
.btn-light {
  background: #fff; color: var(--color-primary-700); border-color: #fff;
}

/* ---------- Section primitive ---------- */
.section {
  padding: clamp(56px, 9vw, 110px) clamp(16px, 8vw, 96px);
}
.section.tight { padding-block: clamp(40px, 6vw, 72px); }
.section-bg-alt { background: var(--color-bg-alt); }
.section-bg-teal { background: var(--color-primary); color: #fff; }
.section-bg-dark { background: #0E1B2C; color: #fff; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 14px;
}
.section-bg-dark .eyebrow,
.section-bg-teal .eyebrow { color: #FBAB2C; }
h1, h2, h3 { margin: 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 6vw, 80px) clamp(16px, 8vw, 96px) clamp(40px, 6vw, 90px);
  background:
    radial-gradient(1100px 600px at -10% -10%, var(--color-primary-100), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #FBAB2C;
  background: #FFF7E8;
  color: #8a5a00;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.hero-tag i { color: #FBAB2C; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-fg-strong);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary-700);
  font-weight: 700;
}
.hero p.sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-fg);
  margin: 0 0 18px;
  max-width: 600px;
}
.hero p.sub strong { color: var(--color-fg-strong); font-weight: 700; }
.hero .credentials {
  font-size: 13.5px;
  color: var(--color-primary-700);
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 16px;
  border-left: 3px solid var(--color-primary);
  background: var(--color-primary-050);
  border-radius: 0 8px 8px 0;
  margin: 0 0 24px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-foot {
  font-size: 12.5px;
  color: var(--color-fg-muted);
  line-height: 1.7;
}
.hero-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 60px rgba(0,40,40,.18);
  background: #ddd;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,.97);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 14px;
  max-width: calc(100% - 44px);
}
.hero-badge .fmf {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
}
.hero-badge .meta { font-size: 12px; color: var(--color-fg-muted); line-height: 1.3; }
.hero-badge .meta strong { display: block; font-size: 13.5px; color: var(--color-fg-strong); font-weight: 700; font-family: var(--font-body); }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { aspect-ratio: 4/4; order: -1; max-height: 360px; }
}

/* ---------- Trust strip ---------- */
.trust {
  padding: 56px clamp(16px, 8vw, 96px);
  background: var(--color-primary);
  color: #fff;
}
.trust h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.trust .lead {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  margin: 0 0 32px;
  max-width: 680px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 24px 22px;
  transition: transform .25s ease, background .25s ease;
}
.trust-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.10); }
.trust-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: #fff;
  margin-bottom: 16px;
}
.trust-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: .005em;
}
.trust-card .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: #FBAB2C;
  margin: 0 0 10px;
  font-weight: 500;
}
.trust-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  margin: 0;
}
@media (max-width: 1024px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Educational section ---------- */
.edu .lede {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-fg-strong);
  margin: 0 0 18px;
  max-width: 980px;
  text-wrap: balance;
}
.edu .lede em {
  font-style: italic;
  color: var(--color-primary-700);
}
.edu .lede-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-fg-muted);
  max-width: 760px;
  margin: 0 0 56px;
}

.edu-block { margin-bottom: 56px; }
.edu-block:last-child { margin-bottom: 0; }
.edu-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-fg-strong);
  margin: 0 0 16px;
  max-width: 880px;
}
.edu-block p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--color-fg);
  margin: 0 0 16px;
  max-width: 820px;
}
.edu-block p:last-child { margin-bottom: 0; }

.stat-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 22px 26px;
  background: #FFF7E8;
  border-left: 4px solid #FBAB2C;
  border-radius: 0 12px 12px 0;
  margin: 22px 0;
  max-width: 880px;
}
.stat-callout .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  color: #B8730E;
  letter-spacing: -0.02em;
}
.stat-callout .big sup { font-size: .5em; vertical-align: super; }
.stat-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-fg-strong);
  font-weight: 500;
}
.stat-callout p .src {
  display: block;
  font-size: 12.5px;
  color: var(--color-fg-muted);
  font-weight: 400;
  margin-top: 6px;
  font-style: italic;
}

/* Window of opportunity */
.window-chart {
  display: grid;
  grid-template-columns: repeat(40, 1fr);
  align-items: stretch;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  margin: 26px 0 14px;
  max-width: 880px;
  border: 1px solid var(--color-border);
  position: relative;
  background: #fafafa;
}
.window-chart .seg {
  display: flex; align-items: end; justify-content: center;
  font-size: 11px; color: var(--color-fg-muted);
  padding-bottom: 8px;
  border-right: 1px solid #eee;
}
.window-chart .seg.active {
  background: linear-gradient(180deg, rgba(0,175,166,.18), rgba(0,175,166,.30));
}
.window-chart .marker {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: #FBAB2C;
}
.window-chart .marker::after {
  content: ''; position: absolute; top: -7px; left: -5px;
  width: 12px; height: 12px; background: #FBAB2C; border-radius: 50%;
}
.window-chart .label {
  position: absolute;
  font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-fg-strong);
  background: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  top: -28px;
}
.window-scale {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--color-fg-muted);
  max-width: 880px;
  margin: 14px 0 0;
  font-weight: 600; letter-spacing: .04em;
}

/* Marker grid for FMF protocol */
.marker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 6px;
  max-width: 1000px;
}
.marker-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.marker-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 10px 26px rgba(0,175,166,.10);
}
.marker-card .num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}
.marker-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-fg-strong);
  margin: 4px 0 6px;
}
.marker-card .sub {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.marker-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-fg);
}
@media (max-width: 760px) { .marker-grid { grid-template-columns: 1fr; } }

/* Detection comparison */
.detect-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 920px;
  margin: 28px 0 8px;
}
.detect-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
}
.detect-card.featured {
  background: var(--color-primary-050);
  border-color: var(--color-primary);
}
.detect-card .label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 12px;
}
.detect-card.featured .label { color: var(--color-primary-700); }
.detect-card .pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--color-fg-strong);
  letter-spacing: -0.02em;
}
.detect-card.featured .pct { color: var(--color-primary-700); }
.detect-card .pct .small { font-size: 28px; font-weight: 600; color: var(--color-fg-muted); }
.detect-card .bar {
  margin: 16px 0 14px;
  height: 8px; background: rgba(0,0,0,.06); border-radius: 999px; overflow: hidden;
}
.detect-card .bar > i {
  display: block; height: 100%; border-radius: 999px;
  background: var(--color-fg-strong);
}
.detect-card.featured .bar > i { background: var(--color-primary); }
.detect-card p {
  margin: 0; font-size: 13.5px; color: var(--color-fg); line-height: 1.6;
}
@media (max-width: 760px) { .detect-compare { grid-template-columns: 1fr; } }

/* DAO highlight block */
.dao-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--color-primary-050);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  margin: 14px 0;
  border: 1px solid var(--color-primary-100);
}
.dao-block .data-stack {
  display: grid;
  gap: 14px;
}
.dao-stat {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  border-left: 4px solid var(--color-primary);
}
.dao-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-primary-700);
  line-height: 1;
  letter-spacing: -0.01em;
}
.dao-stat .num span { color: var(--color-fg-muted); font-weight: 500; font-size: 20px; }
.dao-stat .arrow {
  display: inline-block; margin: 0 8px; color: var(--color-fg-muted);
}
.dao-stat .when {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--color-fg-muted);
  margin: 0 0 8px;
}
.dao-stat p {
  font-size: 13px; color: var(--color-fg); margin: 8px 0 0; line-height: 1.55;
}
@media (max-width: 900px) { .dao-block { grid-template-columns: 1fr; } }

/* ---------- Process / Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-primary) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.step {
  position: relative;
  padding: 0 14px;
  text-align: center;
  z-index: 1;
}
.step .dot {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary-700);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  box-shadow: 0 8px 22px rgba(0,175,166,.18);
}
.step .dot i {
  position: absolute;
  bottom: -6px; right: -6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-fg-strong);
  margin: 0 0 8px;
  line-height: 1.25;
}
.step p { font-size: 13.5px; line-height: 1.55; color: var(--color-fg-muted); margin: 0; }
@media (max-width: 980px) {
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-steps::before { display: none; }
  .step { display: grid; grid-template-columns: 80px 1fr; text-align: left; gap: 18px; align-items: start; }
  .step .dot { margin: 0; }
}
.process-quote {
  margin-top: 56px;
  padding: 28px 32px;
  background: #fff;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--color-fg-strong);
  max-width: 920px;
}

/* ---------- Authority ---------- */
.authority {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.cred-list { list-style: none; padding: 0; margin: 18px 0 0; }
.cred-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-fg);
}
.cred-list li i {
  color: var(--color-primary);
  font-size: 14px;
  padding-top: 4px;
}
.cred-list li strong { color: var(--color-fg-strong); display: block; font-weight: 700; }
.cred-list li:last-child { border-bottom: 0; }

.matern-card {
  background: var(--color-primary-050);
  border: 1px solid var(--color-primary-100);
  border-radius: 18px;
  padding: 32px;
}
.matern-list { display: grid; gap: 14px; margin-top: 18px; }
.matern-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: transform .2s ease;
}
.matern-item:hover { transform: translateX(6px); }
.matern-item i {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
  font-size: 18px;
}
.matern-item strong { display: block; color: var(--color-fg-strong); font-weight: 700; font-size: 15px; }
.matern-item span { font-size: 12.5px; color: var(--color-fg-muted); }
@media (max-width: 900px) { .authority { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 920px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item.open { border-color: var(--color-primary); box-shadow: 0 12px 28px rgba(0,175,166,.10); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--color-fg-strong);
  line-height: 1.35;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--color-primary-700); }
.faq-item.open .faq-q { color: var(--color-primary-700); }
.faq-q .plus {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-q .plus {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--color-fg);
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 24px 24px;
}

/* ---------- CTA Final ---------- */
.cta-final {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.cta-final .urgent {
  display: inline-flex; align-items: center; gap: 10px;
  color: #FBAB2C;
  font-size: 13px; font-weight: 600;
  letter-spacing: .02em;
  margin: 0 0 18px;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta-final p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  margin: 0 0 16px;
  max-width: 540px;
}
.cta-direct {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cta-direct .or-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 14px;
}
.cta-direct .row {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.cta-direct .loc {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  margin-top: 18px;
  line-height: 1.5;
}

/* Form */
.form-card {
  background: #fff;
  color: var(--color-fg);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.30);
}
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-fg-strong);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.form-card .hint {
  font-size: 13.5px; color: var(--color-fg-muted); margin: 0 0 22px;
}
.form-card label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin: 0 0 6px;
}
.form-card input, .form-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--color-fg-strong);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card input:focus, .form-card select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,175,166,.18);
}
.form-card .field { margin-bottom: 16px; }
.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.radio-tile {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 13.5px;
  cursor: pointer;
  transition: all .2s ease;
}
.radio-tile input { width: auto; margin: 0; accent-color: var(--color-primary); }
.radio-tile.checked {
  border-color: var(--color-primary);
  background: var(--color-primary-050);
  color: var(--color-primary-700);
  font-weight: 600;
}
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-card .privacy {
  font-size: 12px; color: var(--color-fg-muted); text-align: center;
  margin-top: 14px; line-height: 1.5;
}
@media (max-width: 900px) {
  .cta-final { grid-template-columns: 1fr; gap: 32px; }
}

/* Confirmation state */
.form-ok {
  text-align: center; padding: 28px 8px;
}
.form-ok .check {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}
.form-ok h3 { color: var(--color-fg-strong); margin-bottom: 8px; }
.form-ok p { color: var(--color-fg-muted); font-size: 14.5px; line-height: 1.6; max-width: 340px; margin: 0 auto 18px; }

/* ---------- References ---------- */
.refs-notice {
  border-left: 4px solid var(--color-primary);
  background: var(--color-primary-050);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--color-fg);
  max-width: 920px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.refs-list {
  max-width: 920px;
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  display: grid;
  gap: 10px;
  counter-reset: ref;
  padding: 0; margin: 0;
  list-style: none;
}
.refs-list li {
  position: relative;
  padding-left: 32px;
  counter-increment: ref;
}
.refs-list li::before {
  content: counter(ref);
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  font-family: var(--font-body);
}

/* ---------- Footer ---------- */
.foot {
  background: #0E1B2C;
  color: rgba(255,255,255,.86);
  padding: 64px clamp(16px, 8vw, 96px) 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
}
.foot img.logo { width: 220px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.foot h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin: 0 0 16px;
}
.foot .line { font-size: 13.5px; line-height: 1.9; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px; line-height: 2;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.foot ul a:hover { color: var(--color-primary); transform: translateX(6px); }
.foot .social { display: flex; gap: 10px; margin-top: 18px; }
.foot .social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}
.foot .social a:hover { background: var(--color-primary); transform: translateY(-2px); }
.foot-bot {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- WhatsApp floats ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(37,211,102,.45);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-2px); color: #fff; }
.wa-float i { font-size: 20px; }
.wa-pulse {
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--color-whatsapp);
  opacity: 0;
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}
.wa-sticky-mobile {
  display: none;
}
@media (max-width: 720px) {
  .wa-float { display: none; }
  .wa-sticky-mobile {
    display: flex;
    position: fixed; left: 12px; right: 12px; bottom: 12px;
    z-index: 90;
    background: var(--color-whatsapp);
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(37,211,102,.45);
    font-weight: 700; font-size: 15px;
    text-decoration: none;
    align-items: center; justify-content: center; gap: 12px;
  }
  body { padding-bottom: 80px; }
}

/* Header nav hide on mobile */
@media (max-width: 900px) {
  .header-nav { display: none; }
}
@media (max-width: 540px) {
  .header-actions .btn:not(.btn-amber) { display: none; }
}
