/* ==================================================
   CSS Variables & reset
   Dra. Alexsandra Francisqueto — Landing Page
   ================================================== */

:root {
  /* Surface palette (warm, pediatric, light) */
  --surface-0: #FDFAF6;          /* warm white */
  --surface-1: #F8F3EC;          /* soft cream */
  --surface-2: #F2EAE0;          /* very light beige */
  --surface-3: #F0EDE7;          /* warm gray */
  --surface-mint: #EAF4EE;       /* very light mint wash */
  --surface-peach: #FDEFE4;      /* very light peach wash */

  /* Accents */
  --coral: #EE9D8A;              /* soft coral */
  --coral-50: #F8E4D9;
  --coral-100: #F5CEBF;
  --coral-600: #D9836F;
  --peach: #F5C39F;              /* light peach */
  --peach-50: #FCE6D2;
  --mint: #B8DFC7;               /* pastel mint */
  --mint-50: #D8EDE2;
  --teal: #6EB5A8;               /* soft teal */
  --teal-600: #4F9A8D;
  --teal-700: #3F8277;
  --rose: #F6C4BA;

  /* Text */
  --ink: #1C1C1C;                /* graphite for text / logo black */
  --ink-2: #3A3A3A;
  --ink-3: #5B5B5B;
  --ink-muted: #7A756E;

  /* Lines & shadows */
  --hair: rgba(28, 28, 28, 0.08);
  --hair-strong: rgba(28, 28, 28, 0.14);
  --shadow-sm: 0 1px 2px rgba(28, 28, 28, 0.04), 0 2px 6px rgba(28, 28, 28, 0.04);
  --shadow-md: 0 6px 18px rgba(186, 110, 80, 0.10), 0 2px 6px rgba(28, 28, 28, 0.04);
  --shadow-lg: 0 20px 44px rgba(186, 110, 80, 0.14), 0 4px 10px rgba(28, 28, 28, 0.05);

  /* Geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Layout */
  --container: 1160px;
  --container-narrow: 880px;
  --gap-section: clamp(4rem, 8vw, 7rem);

  /* Typography */
  --ff: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg {
  max-width: 100%;
  display: block;
}
img { height: auto; }
a {
  color: inherit;
  text-decoration: none;
}
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--teal-700); font-weight: 600; }
strong { font-weight: 700; }

/* Skip content behind sticky CTA on mobile */
body { padding-bottom: 78px; }
@media (min-width: 720px) { body { padding-bottom: 0; } }

/* ==================================================
   Typography scale (responsive via clamp)
   ================================================== */
.h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem;
}
.h2--muted { color: var(--ink-2); }

.hero__title {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-700);
  background: rgba(110, 181, 168, 0.14);
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  margin: 0 0 1rem;
}
.eyebrow--dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral-600);
  margin-right: 0.5rem;
  vertical-align: 2px;
}
.eyebrow--muted {
  color: var(--ink-muted);
  background: rgba(28,28,28,0.06);
}
.eyebrow--muted::before { background: var(--ink-muted); }

/* ==================================================
   Layout primitives
   ================================================== */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--gap-section) 0;
  position: relative;
}
.section__head {
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 700px;
}
.section--cream { background: var(--surface-1); }
.section--mint {
  background: linear-gradient(180deg, var(--surface-0) 0%, var(--surface-mint) 60%, var(--surface-1) 100%);
}
.section--offer { background: var(--surface-0); }
.section--final-cta {
  background: var(--surface-1);
  position: relative;
}

/* ==================================================
   Buttons
   ================================================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease, background-color 200ms ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  text-align: center;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: 3px solid rgba(110, 181, 168, 0.45);
  outline-offset: 3px;
}

.btn--primary {
  --btn-bg: linear-gradient(180deg, #2A2A2A, #111);
  background-image: var(--btn-bg);
  color: #fff;
}
.btn--primary:hover { background-image: linear-gradient(180deg, #3a3a3a, #1c1c1c); }

.btn--ghost {
  --btn-bg: transparent;
  color: var(--ink);
  border-color: var(--hair-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(28,28,28,0.04); }

.btn--sm { padding: 0.6rem 1.05rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 1.6rem; font-size: 1.02rem; }
.btn--xl { padding: 1.15rem 1.8rem; font-size: 1.08rem; }

.btn__arrow {
  width: 1.05em; height: 1.05em;
  transition: transform 220ms ease;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ==================================================
   Bonuses (extra section)
   ================================================== */
.section--bonuses { background: #ffffff; }

.bonuses__image {
  margin: 0 auto 2.5rem;
  max-width: 720px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-1);
}
.bonuses__image img {
  width: 100%;
  height: auto;
  display: block;
}

.bonuses-list {
  display: grid;
  gap: 1.25rem;
}
.bonus-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bonus-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--surface-1);
  overflow: hidden;
}
.bonus-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.bonus-card:hover .bonus-card__media img {
  transform: scale(1.03);
}
.bonus-card__body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bonus-card__num {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral-600);
  background: var(--coral-50);
  padding: 0.32rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.25rem;
}
.bonus-card__title {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}
.bonus-card__text {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.62;
}
@media (min-width: 820px) {
  .bonuses-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
  }
  .bonus-card__body { padding: 1.5rem 1.5rem 1.75rem; }
}
@media (max-width: 819px) {
  .bonus-card__body { align-items: center; text-align: center; }
  .bonus-card__num { align-self: center; }
}

/* ==================================================
   Header
   ================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 250, 246, 0.82);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.header__logo img {
  height: 36px; width: auto;
}
@media (min-width: 720px) {
  .header__logo img { height: 40px; }
}

/* ==================================================
   HERO
   ================================================== */
.hero {
  position: relative;
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(2.25rem, 5vw, 4.5rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface-peach) 0%, var(--surface-0) 55%, var(--surface-1) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
}
.blob--coral {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--coral-100), transparent 65%);
  top: -80px; right: -40px;
}
.blob--mint {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--mint-50), transparent 65%);
  bottom: -80px; left: -60px;
}
.blob--peach {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--peach-50), transparent 65%);
  top: 20%; left: 40%;
  opacity: 0.35;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}
.hero__copy { max-width: 620px; }
.hero__subtitle {
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.hero__bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin: 0 0 1.8rem;
  max-width: 420px;
  margin-inline: auto;
}
.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  text-align: left;
}
.hero__bullets .ic {
  color: var(--teal-600);
  width: 1.15rem; height: 1.15rem;
  flex-shrink: 0;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.hero__microcopy {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Hero visual (ebook + doctor) */
.hero__visual {
  width: 100%;
  max-width: 520px;
}
.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  margin-inline: auto;
}
.hero__doctor {
  position: absolute;
  right: 0;
  top: 8%;
  width: 46%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
  background: var(--surface-2);
  border: 4px solid #fff;
}
.hero__doctor picture { width: 100%; height: 100%; display: block; }
.hero__doctor img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero__mockup {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78%;
  margin: 0;
  transform: rotate(-3deg);
  filter: drop-shadow(0 22px 38px rgba(186, 110, 80, 0.22));
  animation: floaty 6s ease-in-out infinite;
}
.hero__mockup img {
  border-radius: var(--r-lg);
}

@keyframes floaty {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__mockup { animation: none; }
}

/* Floating icons */
.float-ic {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: var(--shadow-md);
  color: var(--teal-700);
}
.float-ic svg { width: 22px; height: 22px; }
.float-ic--1 { top: 2%; left: 8%; color: var(--coral-600); animation: bobble 5.5s ease-in-out infinite; }
.float-ic--2 { top: 4%; right: 10%; color: var(--teal-700); animation: bobble 6s ease-in-out infinite 0.5s; }
.float-ic--3 { bottom: 12%; right: 4%; color: var(--coral-600); animation: bobble 5s ease-in-out infinite 1s; }
.float-ic--4 { bottom: 6%; left: 44%; color: var(--teal-700); animation: bobble 5.8s ease-in-out infinite 1.4s; }
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .float-ic { animation: none; }
}

/* Desktop hero layout */
@media (min-width: 880px) {
  .hero__inner {
    flex-direction: row;
    gap: 3rem;
    text-align: left;
    align-items: center;
    justify-content: space-between;
  }
  .hero__copy { flex: 1 1 520px; max-width: 560px; }
  .hero__bullets { margin-left: 0; margin-right: 0; }
  .hero__cta-group { flex-direction: row; align-items: center; gap: 1.25rem; }
  .hero__visual { flex: 1 1 440px; max-width: 540px; }
}

/* ==================================================
   TRUST STRIP
   ================================================== */
.trust {
  padding: 1.5rem 0 0.25rem;
  background: var(--surface-0);
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1rem;
  padding: 1.1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--ink-2);
  font-weight: 500;
  text-align: left;
}
.trust__ic {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: var(--r-pill);
  background: rgba(110, 181, 168, 0.14);
  color: var(--teal-700);
  flex-shrink: 0;
}
.trust__ic svg { width: 16px; height: 16px; }
@media (min-width: 720px) {
  .trust__list { grid-template-columns: repeat(4, 1fr); padding: 1.25rem 1.5rem; }
  .trust__item { font-size: 0.93rem; }
}

/* ==================================================
   Cards
   ================================================== */
.cards { display: grid; gap: 1.1rem; }
.cards--3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards--3 { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; } }

.card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
  text-align: center;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.card__ic {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
}
.card__ic svg { width: 28px; height: 28px; }
.card__ic--coral { background: var(--coral-50); color: var(--coral-600); }
.card__ic--teal  { background: var(--mint-50); color: var(--teal-700); }
.card__ic--peach { background: var(--peach-50); color: #B47450; }

.card__title {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.card__text {
  font-size: 0.95rem;
  color: var(--ink-3);
  margin: 0;
}

.card--soft { background: #fff; }

/* ==================================================
   Benefits (solution section)
   ================================================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.benefit {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  padding: 1.15rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.benefit:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.benefit__ic {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--mint-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
}
.benefit__ic svg { width: 24px; height: 24px; }
.benefit__label {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
}
@media (min-width: 720px) {
  .benefits { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
@media (min-width: 1000px) {
  .benefits { grid-template-columns: repeat(6, 1fr); }
}

/* ==================================================
   What's inside
   ================================================== */
.inside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.inside__main {
  background: linear-gradient(160deg, #FFF 0%, var(--surface-peach) 100%);
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.tag {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
}
.tag--coral { background: var(--coral-50); color: var(--coral-600); }
.inside__title {
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.65rem;
}
.inside__text {
  color: var(--ink-3);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}
.inside__bullets {
  display: grid;
  gap: 0.55rem;
  max-width: 360px;
  margin: 0 auto;
}
.inside__bullets li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
  padding-left: 0.25rem;
  text-align: left;
}
.inside__bullets li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.inside__bonuses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.bonus {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.1rem;
  position: relative;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.bonus:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bonus__badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--mint-50);
  padding: 0.25rem 0.55rem;
  border-radius: var(--r-pill);
}
.bonus__ic {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin: 0 auto 0.85rem;
}
.bonus__ic svg { width: 26px; height: 26px; }
.bonus__ic--mint  { background: var(--mint-50); color: var(--teal-700); }
.bonus__ic--coral { background: var(--coral-50); color: var(--coral-600); }
.bonus__ic--peach { background: var(--peach-50); color: #B47450; }
.bonus__title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.bonus__text {
  font-size: 0.92rem;
  color: var(--ink-3);
  margin: 0;
}

.inside__highlight {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.inside__highlight .dot { margin: 0 0.5rem; color: var(--coral); }

@media (min-width: 900px) {
  .inside { grid-template-columns: 1.1fr 1fr; }
  .inside__bonuses { grid-template-columns: 1fr; gap: 1rem; }
  .inside__main { padding: 2.5rem 2rem; }
}
@media (min-width: 1100px) {
  .inside { grid-template-columns: 1.15fr 1fr; gap: 1.5rem; }
}

/* ==================================================
   Practical result (numbered cards)
   ================================================== */
.results {
  counter-reset: result;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}
.result {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}
.result__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-50), var(--peach-50));
  color: var(--coral-600);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.result__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--ink);
  line-height: 1.25;
}
.result__text {
  font-size: 0.95rem;
  color: var(--ink-3);
  margin: 0;
}
@media (min-width: 720px) { .results { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .results { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; } }

/* ==================================================
   Testimonials
   ================================================== */
.testis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.testi {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: center;
  align-items: center;
}
.testi__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--coral);
}
.testi__stars svg { width: 17px; height: 17px; }
.testi__text {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.62;
}
.testi__text em { color: var(--teal-700); font-style: normal; font-weight: 600; }
.testi__who {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.4rem;
  text-align: left;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  flex-shrink: 0;
  background: var(--coral-600);
}
.avatar--coral { background: linear-gradient(135deg, #F4B6A3, #D9836F); }
.avatar--mint  { background: linear-gradient(135deg, #B8DFC7, #6EB5A8); }
.avatar--peach { background: linear-gradient(135deg, #F5C39F, #C18759); }
.avatar--teal  { background: linear-gradient(135deg, #9DCDC0, #3F8277); }
.testi__who strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}
.testi__who span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.82rem;
  display: none;
}
@media (min-width: 720px) { .testis { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testis { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }

/* ==================================================
   Comparison (objection)
   ================================================== */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.compare__col {
  border-radius: var(--r-xl);
  padding: 1.75rem 1.35rem;
  border: 1px solid var(--hair);
  text-align: center;
  position: relative;
}
.compare__col--muted {
  background: #FBF8F3;
  color: var(--ink-3);
}
.compare__col--accent {
  background: linear-gradient(160deg, #FFF, var(--surface-mint));
  box-shadow: var(--shadow-md);
  border-color: rgba(110, 181, 168, 0.35);
}
.compare__ic {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin: 0 auto 0.9rem;
}
.compare__ic svg { width: 26px; height: 26px; }
.compare__ic--muted { background: rgba(28,28,28,0.06); color: var(--ink-muted); }
.compare__ic--accent { background: var(--mint-50); color: var(--teal-700); }

.compare__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.9rem;
}
.compare__list {
  display: grid;
  gap: 0.55rem;
  font-size: 0.97rem;
  color: var(--ink-2);
}
.compare__list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.compare__list--check li { color: var(--teal-700); font-weight: 600; }
.compare__list .ic--check { color: var(--teal-600); width: 1.1rem; height: 1.1rem; }
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

/* ==================================================
   Audience (for / not-for)
   ================================================== */
.audience {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.audience__col {
  padding: 1.8rem 1.35rem;
  border-radius: var(--r-xl);
  text-align: center;
}
.audience__col--for {
  background: linear-gradient(160deg, var(--surface-peach) 0%, #fff 100%);
  border: 1px solid var(--coral-50);
}
.audience__col--not {
  background: #FBF8F3;
  border: 1px solid var(--hair);
}
.audience__list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  max-width: 420px;
  margin-inline: auto;
}
.audience__list li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.98rem;
  color: var(--ink-2);
  text-align: left;
}
.audience__list .ic--check { color: var(--teal-600); width: 1.2rem; height: 1.2rem; margin-top: 0.15rem; flex-shrink: 0; }
.audience__list .ic--x { color: var(--ink-muted); width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; flex-shrink: 0; }
.audience__list--muted li { color: var(--ink-3); }
@media (min-width: 820px) { .audience { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* ==================================================
   Author
   ================================================== */
.author {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
.author__photo {
  margin: 0 auto;
  max-width: 460px;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}
.author__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}
.author__caption {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-md);
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--hair);
}
.author__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral-600);
  display: inline-block;
}
.author__copy { text-align: center; }
.author__copy p {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.68;
}
.author__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.55rem;
  margin-top: 1.25rem;
}
.author__tags li {
  font-size: 0.83rem;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  color: var(--ink-2);
  font-weight: 600;
}
@media (min-width: 880px) {
  .author { grid-template-columns: minmax(0, 0.9fr) 1fr; gap: 3rem; }
  .author__copy { text-align: left; }
  .author__tags { justify-content: flex-start; }
}

/* ==================================================
   Offer
   ================================================== */
.offer {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  padding: 1.85rem 1.35rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--peach), var(--mint), var(--teal));
}
.offer__head { margin-bottom: 1.25rem; }
.offer__pill {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  background: var(--mint-50);
  color: var(--teal-700);
  margin-bottom: 0.75rem;
}
.offer__title {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.offer__includes {
  display: grid;
  gap: 0.55rem;
  max-width: 360px;
  margin: 0 auto 1.5rem;
}
.offer__includes li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.96rem;
  color: var(--ink-2);
  font-weight: 500;
}
.offer__includes .ic--check { color: var(--teal-600); width: 1.15rem; height: 1.15rem; }

.offer__price {
  background: linear-gradient(160deg, var(--surface-peach), #fff);
  border-radius: var(--r-lg);
  padding: 1.1rem 1rem 1.2rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--coral-50);
}
.offer__from {
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.offer__amount {
  font-size: clamp(2.5rem, 7vw, 3.25rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}
.offer__currency { font-size: 0.55em; font-weight: 700; color: var(--coral-600); }
.offer__cents { font-size: 0.45em; font-weight: 700; color: var(--ink-3); margin-left: 2px; }
.offer__installment {
  font-size: 0.95rem;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 0.25rem;
}
.offer__cta { width: 100%; max-width: 360px; }
.offer__micro {
  margin-top: 0.85rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

/* ==================================================
   FAQ
   ================================================== */
.faq {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.faq__item[open] {
  border-color: rgba(110, 181, 168, 0.35);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.15rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
  line-height: 1.35;
  text-align: left;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q > span:first-child { flex: 1; }
.faq__chev {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mint-50);
  color: var(--teal-700);
  flex-shrink: 0;
  transition: transform 220ms ease;
}
.faq__chev svg { width: 16px; height: 16px; }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a {
  padding: 0 1.15rem 1.15rem;
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.62;
  text-align: center;
}
@media (min-width: 720px) {
  .faq__a { text-align: left; }
}

/* ==================================================
   Final CTA
   ================================================== */
.final-cta {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) 1rem;
  background: linear-gradient(160deg, #fff, var(--surface-peach) 80%);
  border-radius: var(--r-xl);
  border: 1px solid var(--coral-50);
  box-shadow: var(--shadow-md);
}
.final-cta .lead { margin-bottom: 1.5rem; }
.final-cta__micro {
  margin-top: 0.9rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

/* ==================================================
   Footer
   ================================================== */
.footer {
  background: var(--surface-0);
  border-top: 1px solid var(--hair);
  padding: 3rem 0 2.5rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__logo img { height: 36px; width: auto; }
.footer__tagline {
  font-size: 0.98rem;
  color: var(--ink-3);
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}
.footer__cta { margin-top: 0.25rem; }
.footer__disclaimer {
  font-size: 0.82rem;
  color: var(--ink-muted);
  max-width: 600px;
  margin: 1.25rem 0 0;
  line-height: 1.6;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--hair);
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0.75rem 0 0;
}

/* ==================================================
   Sticky mobile CTA
   ================================================== */
.sticky-cta {
  position: fixed;
  z-index: 50;
  left: 0.5rem; right: 0.5rem;
  bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-radius: var(--r-xl);
  border: 1px solid var(--hair-strong);
  padding: 0.55rem 0.6rem 0.55rem 1rem;
  box-shadow: 0 -4px 18px rgba(28, 28, 28, 0.08), var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 320ms ease, opacity 260ms ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-cta__text {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.sticky-cta__btn { flex-shrink: 0; }

@media (min-width: 720px) {
  .sticky-cta { display: none; }
}

/* ==================================================
   Mobile-first alignment rules
   ================================================== */
@media (max-width: 719px) {
  .hero__inner,
  .hero__copy,
  .section__head,
  .h2, .lead, .eyebrow,
  .testi, .bonus, .card,
  .result, .final-cta,
  .author__copy, .offer {
    text-align: center;
  }
  .hero__bullets {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .hero__bullets li { justify-content: center; }
  .audience__col, .audience__list li {
    justify-content: center;
  }
  .testi__who { align-self: center; }
  .trust__item { justify-content: center; text-align: center; }
  .footer__tagline, .footer__disclaimer { text-align: center; }
}

/* ==================================================
   Motion preferences
   ================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
