/* ============================================================
   Can Mom Stay Home? Family Checkup
   Soft blush & white system, Mom-first, warm and conversion-clear.
   Palette is page-scoped (all pairs verified WCAG AA):
     blush-50 #fef7fa page · blush-100 #fdeef4 soft · blush-200 #fbdce9 line
     rose-300 #f3aec9 accent · rose-600 #c03a68 action · rose-700 #a02c55 link
     rose-900 #6d1f3c deep · ink #333 text · gold #ffe56a→#fdd841 (C-Easy™ only)
   ============================================================ */

:root {
  --blush-50: #fef7fa;
  --blush-100: #fdeef4;
  --blush-200: #fbdce9;
  --rose-300: #f3aec9;
  --rose-600: #c03a68;
  --rose-700: #a02c55;
  --rose-900: #6d1f3c;
  --ink: #333333;
  --ink-soft: #5a4a52;
  --white: #ffffff;
  --page: #fdfcfd;
  --line: #f0e3e9;
  --evergreen: #1d5b4b;
  --evergreen-deep: #164a3c;

  --good-text: #1e6b43;   --good-tint: #e6f4ea;
  --no-text: #a43d2f;     --no-tint: #fdeae8;
  --unsure-text: #54506b; --unsure-tint: #efedf4;

  --font-head: 'Montserrat', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans Pro', 'Source Sans 3', 'Segoe UI', sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 1px 2px rgba(45, 27, 36, 0.04), 0 8px 24px rgba(45, 27, 36, 0.05);
  --shadow-lift: 0 1px 2px rgba(45, 27, 36, 0.05), 0 12px 32px rgba(45, 27, 36, 0.07);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Anchor targets land below the sticky nav, not underneath it. */
[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(920px 460px at 50% -100px, #f5c3d7 0%, rgba(245, 195, 215, 0) 70%),
    linear-gradient(180deg, #fbe0eb 0%, rgba(253, 238, 244, 0.5) 480px, rgba(253, 252, 253, 0) 840px),
    var(--page);
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5em;
}
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--rose-700); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-medium { max-width: 880px; }
.container-narrow { max-width: 760px; }
.section { padding: 52px 0; }
.section-soft { background: linear-gradient(180deg, #fdf3f7 0%, #fefcfd 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-700);
  margin: 0 0 10px;
}
.type-lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46em; margin-bottom: 22px; }

.brand-name em { font-style: italic; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--rose-700); color: var(--white);
  padding: 10px 18px; border-radius: 0 0 12px 0; z-index: 300;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--rose-700); outline-offset: 2px; }

.btn--primary {
  background: linear-gradient(180deg, #226b58 0%, #1b5748 100%);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(29, 91, 75, 0.25), 0 6px 16px rgba(29, 91, 75, 0.22);
}
.btn--primary:hover { background: linear-gradient(180deg, #1b5748 0%, var(--evergreen-deep) 100%); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(29, 91, 75, 0.3); }

.btn--ghost {
  background: var(--white);
  color: var(--rose-700);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--rose-300); transform: translateY(-1px); }

.btn--quiet {
  background: transparent;
  color: var(--ink-soft);
  border: 2px solid transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* C-Easy™ CTAs are ALWAYS Radiant Gold with charcoal text (brand rule). */
.btn--ceasy { background: linear-gradient(135deg, #ffe56a 0%, #fdd841 100%); color: var(--ink); }
.btn--ceasy:hover {
  background: linear-gradient(135deg, #ffe56a 0%, #fdd841 100%);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(252, 215, 64, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ---------- Nav ---------- */
.nav-floating {
  position: sticky;
  top: 12px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: var(--maxw);
  margin: 12px auto 0;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.nav-floating-logo img { display: block; width: 150px; height: auto; }
.nav-floating-links { display: flex; gap: 20px; margin-left: auto; }
.nav-floating-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.nav-floating-links a:hover { color: var(--rose-700); }
.nav-floating-cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--rose-600);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-floating-toggle { display: none; }

@media (max-width: 920px) {
  .nav-floating { margin: 12px 14px 0; gap: 12px; }
  .nav-floating-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lift);
    padding: 8px;
  }
  .nav-floating-links.is-open { display: flex; }
  .nav-floating-links a { padding: 12px 14px; border-radius: 10px; }
  .nav-floating-links a:hover { background: var(--blush-100); }
  .nav-floating-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-left: auto;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
  }
  .nav-floating-cta { margin-left: 0; }
  .nav-floating-links { margin-left: 0; }
  .nav-floating-toggle-bar {
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }
}
@media (max-width: 560px) {
  .nav-floating-cta { display: none; }
  .nav-floating-logo img { width: 126px; }
}

/* ---------- Text-size widget ---------- */
.aitcoh-font-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  max-width: var(--maxw);
  margin: 10px auto 0;
  padding: 0 20px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.aitcoh-font-widget-button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
}
.aitcoh-font-widget-button:disabled { opacity: 0.45; cursor: default; }
.aitcoh-font-widget-status { position: absolute; left: -9999px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 40px 20px 44px; overflow: hidden; }
/* Soft illustration overlay behind the hero card (owner art, desktop only) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/mom-illustration.jpg') no-repeat right -60px center / 680px auto;
  opacity: 0.12;
  -webkit-mask-image: radial-gradient(420px 380px at right 240px center, #000 40%, transparent 78%);
  mask-image: radial-gradient(420px 380px at right 240px center, #000 40%, transparent 78%);
  pointer-events: none;
}
@media (max-width: 900px) { .hero::before { display: none; } }
.hero-card { z-index: 1; }
.hero-hearts { position: absolute; inset: 0; pointer-events: none; }
.hero-heart {
  position: absolute;
  color: var(--rose-300);
  opacity: 0.55;
  animation: heart-drift 7s ease-in-out infinite;
}
.hero-heart.h1 { left: 6%;  top: 18%; font-size: 2.2rem; animation-delay: 0s; }
.hero-heart.h2 { left: 88%; top: 12%; font-size: 1.5rem; animation-delay: 1.2s; }
@keyframes heart-drift {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-heart { animation: none; }
}

.hero-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, #fefafb 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  padding: clamp(32px, 5vw, 56px);
}
.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--rose-700);
  background: var(--blush-100);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.6rem, 1.6rem + 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.h1-rose { color: var(--rose-600); }
.h1-green { color: var(--evergreen); }
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.3rem);
  font-weight: 600;
  color: var(--rose-700);
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 40em;
  margin: 0 auto 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
}

/* ---------- Steps strip (how it works, one compact row) ---------- */
.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  justify-content: center;
  align-items: flex-start;
  list-style: none;
  max-width: 960px;
  margin: 24px auto 0;
  padding: 0;
}
.benefit-strip li { display: flex; align-items: center; gap: 12px; max-width: 280px; }
.benefit-icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--white);
  background: linear-gradient(180deg, #cb4571 0%, var(--rose-600) 100%);
  border-radius: 50%;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-copy { display: block; text-align: left; }
.benefit-copy strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--evergreen);
  line-height: 1.25;
}
.benefit-copy span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Checkup ---------- */
.check-intro-copy { margin-bottom: 30px; }

/* Sticky wrap is a positioned box, so the milestone toast anchors to it. */
.check-progress-wrap { position: sticky; top: 84px; z-index: 90; margin-bottom: 26px; }
.check-progress-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 12px 20px;
}
.check-progress-heart { color: var(--rose-300); font-size: 1.15rem; }
.check-progress-track {
  flex: 1;
  height: 10px;
  background: var(--blush-100);
  border-radius: 999px;
  overflow: hidden;
}
.check-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #dd6d96 0%, var(--rose-600) 100%);
  border-radius: 999px;
  transition: width 0.35s ease;
}
.check-progress-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose-900);
  white-space: nowrap;
}
.check-progress-milestone {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  width: max-content;
  max-width: min(92vw, 480px);
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 7px 20px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.check-progress-milestone.is-visible { opacity: 1; visibility: visible; }

.check-group-head { margin: 38px 0 14px; }
.check-group-title {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--rose-900);
  margin: 0 0 2px;
}
.check-group-intro {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}

.check-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.check-item-q {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  margin-bottom: 12px;
}
.check-item-num {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--rose-700);
  background: var(--blush-100);
  border-radius: 50%;
  margin-top: 1px;
}
.check-answers { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 40px; }
@media (max-width: 560px) { .check-answers { padding-left: 0; } }

.check-btn {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease, transform 0.12s ease;
}
.check-btn:hover { transform: translateY(-1px); border-color: var(--rose-300); }
.check-btn:focus-visible { outline: 3px solid var(--rose-700); outline-offset: 2px; }

.check-btn-yes[aria-pressed="true"] { background: var(--good-tint); border-color: var(--good-text); color: var(--good-text); }
.check-btn-no[aria-pressed="true"] { background: var(--no-tint); border-color: var(--no-text); color: var(--no-text); }
.check-btn-unsure { border-style: dashed; }
.check-btn-unsure[aria-pressed="true"] { background: var(--unsure-tint); border-color: var(--unsure-text); color: var(--unsure-text); }

/* ---------- Toolbar + notes ---------- */
.check-toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
@media (max-width: 560px) {
  .check-toolbar .btn { flex: 1 1 100%; }
  .check-answers .check-btn { flex: 1 1 auto; }
}
.check-share-status { min-height: 1.3em; font-size: 0.9rem; color: var(--rose-700); font-weight: 600; margin: 8px 0 0; }
.check-save-note { font-size: 0.86rem; color: var(--ink-soft); margin: 10px 0 0; }

/* ---------- Celebration hearts ---------- */
.celebration { position: relative; height: 0; }
.celebrate-heart {
  position: absolute;
  bottom: 0;
  color: var(--rose-600);
  animation: heart-rise 3s ease-in forwards;
  pointer-events: none;
}
@keyframes heart-rise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { opacity: 0.9; }
  100% { transform: translateY(-320px) scale(1.15) rotate(12deg); opacity: 0; }
}

/* ---------- Results ---------- */
.check-results {
  margin-top: 30px;
  background: linear-gradient(180deg, var(--white) 0%, #fefafb 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 30px 28px;
}
.check-results > h3 { color: var(--rose-900); font-size: 1.4rem; }

.results-band { margin: 6px 0 18px; }
.band-chip {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.band-strong { background: #e4f0ea; color: var(--evergreen); }
.band-almost { background: var(--blush-100); color: var(--rose-700); }
.band-plan { background: var(--no-tint); color: var(--no-text); }
.band-copy { color: var(--ink-soft); margin: 0; }
.band-teaser { font-style: italic; }

.check-results-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.check-metric {
  font-size: 0.86rem;
  background: var(--blush-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--ink-soft);
}
.check-metric strong { color: var(--ink); }
.check-metric.is-good { background: var(--good-tint); border-color: #bfe3cc; }
.check-metric.is-high { background: var(--no-tint); border-color: #f3c4bc; }
.check-metric.is-visit { background: var(--unsure-tint); border-color: #e5e2ef; }

.results-subhead { margin-bottom: 6px; }
#results-detail ol { margin: 0 0 12px; padding-left: 22px; }
#results-detail li { margin-bottom: 8px; }
.check-step-meta { font-size: 0.82rem; color: var(--ink-soft); }
.check-incomplete-note { font-size: 0.9rem; font-style: italic; color: var(--ink-soft); }

.visit-preview {
  background: var(--unsure-tint);
  border: 1px solid #e5e2ef;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 18px 0;
}
.visit-preview-title { margin: 0 0 4px; font-size: 1.02rem; color: var(--unsure-text); }
.visit-preview-copy { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 10px; }
.visit-preview ul { margin: 0; padding-left: 20px; font-size: 0.94rem; }
.visit-preview li { margin-bottom: 6px; }
.visit-preview-more { font-style: italic; color: var(--ink-soft); }

/* ---------- Lead form ---------- */
.report-form-wrap {
  background: linear-gradient(180deg, var(--blush-100) 0%, var(--blush-50) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  margin: 22px 0 6px;
}
.report-form-title { margin: 0 0 4px; color: var(--rose-900); font-size: 1.12rem; }
.report-form-copy { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 16px; }

.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-900);
  margin-bottom: 5px;
}
.form-field .req { color: var(--rose-600); }
.form-field input,
.form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--rose-600);
  box-shadow: 0 0 0 3px rgba(192, 58, 104, 0.15);
}

/* Honeypot lives far off-screen; bots fill it, humans never see it. */
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.form-status { min-height: 1.3em; font-weight: 600; color: var(--good-text); font-size: 0.95rem; margin: 10px 0 0; }
.form-status.is-error { color: var(--no-text); }
.form-privacy { font-size: 0.8rem; color: var(--ink-soft); margin: 12px 0 0; }

/* ---------- Results CTA ---------- */
.check-results-cta {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 20px;
}
.check-results-cta-copy { color: var(--ink-soft); }
.cta-block-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.check-disclaimer-note {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 26px;
}

/* ---------- C-Easy panel (single compact card) ---------- */
.ceasy-panel {
  background:
    radial-gradient(480px 260px at 100% 0%, #fdf0f5 0%, rgba(253, 240, 245, 0) 65%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}
.ceasy-lead { color: var(--ink-soft); max-width: 44em; margin: 0 auto 18px; }
.ceasy-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px 12px;
  margin-bottom: 18px;
}
.ceasy-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--rose-900);
}
.ceasy-price-note { font-size: 0.9rem; color: var(--ink-soft); }
.ceasy-panel .cta-block-actions { justify-content: center; }
.ceasy-service-note { font-size: 0.92rem; color: var(--ink-soft); margin: 18px 0 0; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  padding: 0 20px;
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 0;
  cursor: pointer;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rose-600);
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 0 18px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #fdf6f9 0%, var(--white) 55%);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  margin-top: 24px;
  padding: 40px 20px 26px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto 34px;
  display: grid;
  gap: 32px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr; } }
.footer-logo-link { display: block; margin-bottom: 16px; }
.footer-logo-img { width: 190px; height: auto; }
.footer-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-700);
  margin-bottom: 12px;
}
.footer-link-inline { display: inline; }
.footer-link {
  display: block;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 9px;
  font-size: 0.95rem;
}
.footer-link:hover { color: var(--rose-700); text-decoration: underline; }
.footer-tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--evergreen);
}
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.88rem;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero trust line ---------- */
.hero-cred {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 10px 0 0;
}

/* ---------- Payoff strip: photo placeholder + report preview ---------- */
.payoff { padding: 26px 0 10px; }
.payoff-grid { display: grid; gap: 22px; }
@media (min-width: 760px) { .payoff-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.payoff-card { margin: 0; text-align: center; }
.payoff-card figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 12px;
}
.report-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  transform: rotate(1.5deg);
  max-width: min(100%, 440px);
  height: auto;
}

.payoff-photo {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  transform: rotate(-1.5deg);
  max-width: min(100%, 440px);
  height: auto;
}

/* ---------- Per-answer micro-feedback ---------- */
.check-feedback {
  margin: 8px 0 0 40px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-700);
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.check-feedback.is-visible { opacity: 1; }
@media (max-width: 560px) { .check-feedback { margin-left: 0; } }

/* ---------- Readiness ring ---------- */
.results-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 4px 0 16px;
}
@media (max-width: 560px) { .results-top { flex-direction: column; text-align: center; } }
.readiness-ring { position: relative; width: 116px; height: 116px; flex: 0 0 auto; }
.readiness-ring svg { width: 100%; height: 100%; }
.ring-track { fill: none; stroke: var(--blush-100); stroke-width: 11; }
.ring-fill {
  fill: none;
  stroke: var(--rose-600);
  stroke-width: 11;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
  transition: stroke-dasharray 0.45s ease, stroke 0.45s ease;
}
.ring-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.ring-center strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.ring-center span {
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.results-top .results-band { margin: 0; flex: 1; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: 10px 12px;
  text-align: center;
}
.sticky-promise {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-700);
  margin: 0 0 8px;
}
.sticky-cta .btn {
  display: block;
  width: 100%;
  box-shadow: 0 6px 20px rgba(192, 58, 104, 0.35);
}
@media (max-width: 759px) {
  body:not(.has-answers) .sticky-cta { display: block; }
  body:not(.has-answers) { padding-bottom: 122px; }
}

/* ---------- Rose trust band ---------- */
.trust-band {
  background: linear-gradient(180deg, #cb4571 0%, var(--rose-600) 100%);
  padding: 34px 0;
  margin-top: 8px;
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 18px;
}
@media (min-width: 860px) { .trust-band-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-cell { text-align: center; color: var(--white); }
.trust-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 8px; }
.trust-icon svg { width: 30px; height: 30px; }
.trust-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: 0 0 3px;
}
.trust-sub { font-size: 0.82rem; margin: 0; color: rgba(255, 255, 255, 0.92); }

/* ---------- Mobile hero fold: CTA must sit in the first viewport ---------- */
@media (max-width: 560px) {
  .hero { padding: 24px 16px 30px; }
  .hero-card { padding: 24px 18px 26px; border-radius: 16px; }
  .eyebrow-pill { font-size: 0.68rem; padding: 6px 12px; margin-bottom: 14px; }
  .hero-title { font-size: 2.15rem; margin-bottom: 10px; }
  .hero-tagline { font-size: 0.98rem; margin-bottom: 12px; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 16px; }
  .hero-cred { font-size: 0.76rem; }
  .aitcoh-font-widget { margin-top: 6px; }
  .benefit-strip { gap: 14px; margin-top: 18px; flex-direction: column; align-items: center; }
  .benefit-strip li { max-width: 320px; }
}

/* ---------- Print report ---------- */
#print-report { display: none; }

@media print {
  @page { size: letter; margin: 0.65in; }
  body > *:not(#print-report) { display: none !important; }
  .aitcoh-font-widget { display: none !important; }
  body { background: #fff; }

  #print-report {
    display: block !important;
    font-family: 'Source Sans Pro', 'Source Sans 3', Arial, sans-serif;
    font-size: 10.5px;
    line-height: 1.5;
    color: #333333;
  }
  #print-report h1,
  #print-report h2,
  #print-report .pr-sub,
  #print-report .pr-stat strong,
  #print-report .pr-footer-brand,
  #print-report th {
    font-family: 'Montserrat', Arial, sans-serif;
  }

  /* Header: title block left, Mom logo right, rose rule below */
  #print-report .pr-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border-bottom: 2px solid #c03a68;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  #print-report .pr-head img { height: 52px; width: auto; }
  #print-report .pr-sub {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a02c55;
    margin: 0 0 3px;
  }
  #print-report h1 {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #333333;
    margin: 0 0 3px;
  }
  #print-report .pr-brand { font-size: 10px; font-style: italic; color: #6d1f3c; margin: 0; }
  #print-report .pr-date { font-size: 9px; color: #8a7d84; margin: 2px 0 0; }

  /* Readiness band */
  #print-report .pr-band {
    background: #fdeef4;
    border: 1px solid #f3aec9;
    border-radius: 8px;
    padding: 9px 12px;
    margin-bottom: 12px;
    page-break-inside: avoid;
  }
  #print-report .pr-band strong { color: #a02c55; }

  /* Summary stat strip */
  #print-report .pr-summary {
    display: flex;
    border: 1px solid #f0e3e9;
    border-radius: 8px;
    margin-bottom: 14px;
    page-break-inside: avoid;
  }
  #print-report .pr-stat {
    flex: 1;
    text-align: center;
    padding: 9px 6px 8px;
    border-left: 1px solid #f0e3e9;
  }
  #print-report .pr-stat:first-child { border-left: 0; }
  #print-report .pr-stat strong { display: block; font-size: 15px; font-weight: 800; color: #333333; }
  #print-report .pr-stat span {
    display: block;
    font-size: 7.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a7d84;
    margin-top: 2px;
  }

  /* Section titles */
  #print-report h2 {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a02c55;
    border-bottom: 1px solid #fbdce9;
    padding-bottom: 4px;
    margin: 16px 0 8px;
    page-break-after: avoid;
  }
  #print-report .pr-findings-intro { margin: 0 0 8px; color: #5a4a52; }

  /* Next-visit checklist */
  #print-report .pr-visit-item {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 8px;
    page-break-inside: avoid;
  }
  #print-report .pr-visit-box {
    flex: 0 0 auto;
    width: 11px; height: 11px;
    border: 1.5px solid #c03a68;
    border-radius: 3px;
    margin-top: 2px;
  }
  #print-report .pr-visit-item p { margin: 0 0 1px; }

  /* Findings */
  #print-report .pr-finding {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 2px solid #fbdce9;
    page-break-inside: avoid;
  }
  #print-report .pr-finding-title { margin: 0 0 2px; font-weight: 600; }
  #print-report .pr-finding-answer { font-style: italic; font-weight: 400; color: #a43d2f; font-size: 9.5px; }
  #print-report .pr-finding-line { margin: 0 0 1px; color: #5a4a52; }
  #print-report .pr-finding-key { font-weight: 700; color: #a02c55; }

  /* Full answers table */
  #print-report table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
  #print-report th {
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a7d84;
    text-align: left;
    padding: 0 6px 4px 0;
    border-bottom: 1px solid #d9ccd3;
  }
  #print-report td {
    border-bottom: 1px solid #f0e3e9;
    padding: 4px 6px 4px 0;
    vertical-align: top;
  }
  #print-report .pr-pri { white-space: nowrap; width: 54px; color: #8a7d84; }
  #print-report .pr-ans { white-space: nowrap; width: 84px; font-weight: 600; }
  #print-report .pr-flag { color: #a43d2f; }

  /* C-Easy block */
  #print-report .pr-cta {
    background: #fef7fa;
    border: 1px solid #f3aec9;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 14px;
    page-break-inside: avoid;
  }
  #print-report .pr-cta h2 { border: 0; margin: 0 0 4px; padding: 0; }
  #print-report .pr-cta-copy { margin: 0; color: #5a4a52; }
  #print-report .pr-cta-copy strong { color: #333333; }

  /* Company footer */
  #print-report .pr-footer {
    margin-top: 16px;
    border-top: 2px solid #c03a68;
    padding-top: 10px;
    page-break-inside: avoid;
  }
  #print-report .pr-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
  }
  #print-report .pr-footer-brand { font-size: 10px; font-weight: 700; color: #333333; margin: 0 0 2px; }
  #print-report .pr-footer p { margin: 0 0 1px; color: #5a4a52; font-size: 9px; }
  #print-report .pr-footer-right { text-align: right; }
  #print-report .pr-disclaimer {
    font-size: 8px;
    color: #8a7d84;
    border-top: 1px solid #f0e3e9;
    padding-top: 6px;
    margin-top: 6px;
  }
}
