:root {
  --ink: #15304b;
  --ink-soft: #4f6272;
  --teal: #0bb4ad;
  --teal-dark: #087e7a;
  --teal-pale: #eaf9f7;
  --coral: #f15b64;
  --coral-dark: #d8434d;
  --coral-pale: #fff0ef;
  --cream: #fbfaf7;
  --white: #ffffff;
  --line: #dde7e8;
  --yellow: #f6bd49;
  --green: #7abf68;
  --shadow: 0 18px 55px rgba(21, 48, 75, 0.12);
  --shadow-soft: 0 10px 35px rgba(21, 48, 75, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--cream);
}

.section-teal {
  background: var(--teal-pale);
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 25px rgba(241, 91, 100, 0.25);
}

.btn-primary:hover {
  background: var(--coral-dark);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-teal {
  color: var(--white);
  background: var(--teal-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.announcement {
  padding: 9px 20px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.77rem;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(221, 231, 232, 0.88);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  width: 190px;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  text-decoration: none;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.brand-mark {
  margin-right: 7px;
  color: var(--coral);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.16em;
  transform: rotate(-8deg);
}

.brand-gene {
  color: var(--coral);
}

.brand-kids {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 2px;
}

.submenu-toggle {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: var(--teal-dark);
  background: var(--mint);
}

.submenu-toggle .icon {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown.submenu-open .submenu-toggle .icon,
.nav-dropdown:hover .submenu-toggle .icon,
.nav-dropdown:focus-within .submenu-toggle .icon {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  display: grid;
  width: 326px;
  padding: 10px;
  border: 1px solid rgba(221, 231, 232, 0.96);
  border-radius: 16px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 22px 50px rgba(21, 48, 75, 0.16);
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.nav-submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.submenu-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-links .nav-submenu > a {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  padding: 10px;
  border-radius: 11px;
  color: var(--ink);
}

.nav-links .nav-submenu > a:hover,
.nav-links .nav-submenu > a:focus-visible {
  color: var(--ink);
  background: #f4fbfa;
}

.nav-submenu strong,
.nav-submenu small {
  display: block;
}

.nav-submenu strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
}

.nav-submenu small {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 500;
  line-height: 1.35;
}

.submenu-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.submenu-mark .icon {
  width: 18px;
  height: 18px;
}

.nutri-mark {
  color: #0a9a82;
  background: #e8f8f3;
}

.discover-mark {
  color: var(--coral);
  background: #fff0f0;
}

.complete-mark {
  color: #167e9a;
  background: #eaf6fa;
}

.nav-links .nav-submenu > .nav-submenu-all {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  padding: 11px 12px 5px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  color: var(--teal-dark);
  font-size: 0.74rem;
}

.nav-submenu-all .icon {
  width: 15px;
  height: 15px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 100%, rgba(241, 91, 100, 0.11), transparent 32%),
    radial-gradient(circle at 95% 5%, rgba(11, 180, 173, 0.10), transparent 27%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 12%;
  left: -80px;
  width: 270px;
  height: 270px;
  border: 1px dashed rgba(11, 180, 173, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 74px 0;
}

.hero-copy p {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.micro-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.micro-proof .icon {
  width: 18px;
  height: 18px;
  color: var(--teal-dark);
}

.hero-image {
  position: relative;
  align-self: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-image::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 24%;
  background: linear-gradient(90deg, var(--cream), rgba(251, 250, 247, 0));
  content: "";
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  padding: 25px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item small {
  color: var(--ink-soft);
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.question-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--coral);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.question-card .icon {
  margin-bottom: 20px;
  color: var(--coral);
}

.question-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.insight-card {
  min-height: 215px;
  padding: 32px;
  background: var(--white);
}

.insight-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.insight-card:nth-child(even) .insight-icon {
  color: var(--coral);
  background: var(--coral-pale);
}

.insight-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.discover-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 60px;
}

.discover-copy p {
  max-width: 530px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.check-list .icon {
  width: 19px;
  height: 19px;
  color: var(--teal-dark);
  margin-top: 3px;
}

.report-stage {
  position: relative;
  min-height: 510px;
}

.report-stage::before {
  position: absolute;
  inset: 8% 4% 5% 6%;
  border-radius: 50%;
  background: rgba(11, 180, 173, 0.10);
  content: "";
}

.report-page {
  position: absolute;
  width: 68%;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-page:first-child {
  top: 3%;
  left: 2%;
  transform: rotate(-6deg);
}

.report-page:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 54px;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.package-card.featured {
  border-color: var(--coral);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.package-card.featured::before {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 20px;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--coral);
  content: "Recommended";
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.package-kicker {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card.featured .package-kicker {
  margin-top: 15px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 4px 0 14px;
  color: var(--ink);
}

.package-price strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
}

.package-price span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.shipping-note {
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
}

.package-card .btn {
  margin-top: auto;
}

.package-includes {
  display: grid;
  gap: 10px;
  margin: 8px 0 32px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.package-includes .icon {
  width: 17px;
  height: 17px;
  color: var(--teal-dark);
  margin-top: 3px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  counter-reset: process;
}

.step-card {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--teal);
  counter-increment: process;
}

.step-card::before {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--teal-dark);
  content: "0" counter(process);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-card .icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--coral);
}

.step-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.sample-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 64px;
}

.sample-pages {
  position: relative;
  min-height: 520px;
}

.sample-page {
  position: absolute;
  width: 71%;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.sample-page:first-child {
  top: 8%;
  left: 0;
  transform: rotate(-5deg);
}

.sample-page:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
}

.guarantee {
  color: var(--white);
  background: var(--teal-dark);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 44px 0;
}

.guarantee-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.guarantee-mark .icon {
  width: 36px;
  height: 36px;
}

.guarantee h2,
.guarantee p {
  color: var(--white);
}

.guarantee h2 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.guarantee p {
  margin-bottom: 0;
  opacity: 0.8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 72px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 48px 21px 0;
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-question .icon {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 91, 100, 0.16), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(11, 180, 173, 0.18), transparent 28%),
    var(--cream);
}

.final-cta .section-head {
  margin-bottom: 28px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 42px;
}

.footer-brand .site-logo {
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.88rem;
}

.footer-col h3 {
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #20b85a;
  box-shadow: 0 12px 30px rgba(32, 184, 90, 0.30);
}

.whatsapp-float .icon {
  width: 27px;
  height: 27px;
}

.subhero {
  padding: 100px 0 80px;
  text-align: center;
  background: var(--cream);
}

.subhero .container {
  max-width: 840px;
}

.subhero h1 {
  font-size: clamp(2.7rem, 5.5vw, 4.8rem);
}

.order-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 44px;
}

.order-card,
.order-summary {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.order-summary {
  position: sticky;
  top: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 180, 173, 0.13);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-section {
  margin-bottom: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.form-section h2 {
  margin-bottom: 22px;
  font-family: inherit;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice label {
  display: grid;
  min-height: 104px;
  place-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.choice input:checked + label {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-pale);
  box-shadow: 0 0 0 2px rgba(11, 180, 173, 0.11);
}

.order-line,
.order-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.order-total {
  margin-top: 10px;
  border-bottom: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.notice {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--cream);
  font-size: 0.82rem;
}

.form-message {
  display: none;
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 9px;
  font-size: 0.86rem;
}

.form-message.error {
  display: block;
  color: #8b2830;
  background: #fff0ef;
}

.form-message.success {
  display: block;
  color: #126331;
  background: #edf9f1;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 40px;
  font-family: inherit;
  font-size: 1.45rem;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.mobile-open {
    position: fixed;
    inset: 114px 0 0;
    z-index: 39;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px 24px;
    background: var(--white);
  }

  .nav-links.mobile-open a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-links.mobile-open .nav-dropdown {
    width: 100%;
  }

  .nav-links.mobile-open .nav-dropdown-trigger {
    border-bottom: 1px solid var(--line);
  }

  .nav-links.mobile-open .nav-dropdown-trigger > a {
    flex: 1;
    border-bottom: 0;
  }

  .nav-links.mobile-open .submenu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .nav-links.mobile-open .nav-submenu {
    position: static;
    display: none;
    width: 100%;
    padding: 7px 0 11px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-links.mobile-open .nav-dropdown.submenu-open .nav-submenu {
    display: grid;
    transform: none;
  }

  .nav-links.mobile-open .nav-submenu::before {
    display: none;
  }

  .nav-links.mobile-open .nav-submenu > a {
    grid-template-columns: 36px 1fr;
    padding: 9px 10px;
    border: 0;
    font-size: 0.9rem;
  }

  .nav-links.mobile-open .nav-submenu > .nav-submenu-all {
    display: flex;
    margin-top: 4px;
    padding: 11px 10px 5px;
    border-top: 1px solid var(--line);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .discover-grid,
  .sample-grid,
  .faq-grid,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    padding: 68px 0 45px;
  }

  .hero-image {
    height: 520px;
    margin-right: -20px;
    margin-left: -20px;
  }

  .hero-image::after {
    inset: 0 0 auto;
    width: 100%;
    height: 22%;
    background: linear-gradient(180deg, var(--cream), rgba(251, 250, 247, 0));
  }

  .questions-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-stage,
  .sample-pages {
    min-height: 430px;
  }

  .guarantee-grid {
    grid-template-columns: 76px 1fr;
  }

  .guarantee-grid .btn {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.22rem;
  }

  .announcement {
    font-size: 0.7rem;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 8px;
  }

  .site-logo {
    width: 155px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-links.mobile-open {
    inset: 103px 0 0;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image {
    height: 390px;
  }

  .trust-grid,
  .insights-grid,
  .steps-grid,
  .form-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .report-stage,
  .sample-pages {
    min-height: 340px;
  }

  .report-page,
  .sample-page {
    width: 78%;
    border-width: 6px;
  }

  .package-card,
  .order-card,
  .order-summary {
    padding: 26px 22px;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-mark {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

/* Homepage sales-flow refinement */
.discover-price-line {
  display: flex;
  max-width: 540px;
  align-items: baseline;
  gap: 13px;
  margin: -7px 0 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(8, 126, 122, 0.17);
  border-bottom: 1px solid rgba(8, 126, 122, 0.17);
}

.discover-price-line strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.discover-price-line span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
}

.report-wow-note {
  display: grid;
  max-width: 820px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 15px;
  margin: 25px auto 0;
  padding: 16px 19px;
  border: 1px solid rgba(8, 126, 122, 0.17);
  border-radius: 14px;
  color: var(--ink-soft);
  background: var(--teal-pale);
  font-size: 0.82rem;
  line-height: 1.5;
}

.report-wow-note strong {
  color: var(--ink);
}

.report-wow-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(21, 48, 75, 0.08);
}

.report-wow-icon .icon {
  width: 23px;
  height: 23px;
}

@media (max-width: 560px) {
  .home-page main > .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .discover-price-line {
    display: grid;
    gap: 5px;
    margin-bottom: 18px;
    padding: 13px 0;
  }

  .discover-price-line strong {
    font-size: 1.75rem;
  }

  .report-wow-note {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    margin-top: 20px;
    padding: 14px;
    font-size: 0.74rem;
  }

  .report-wow-icon {
    width: 40px;
    height: 40px;
  }

  .report-preview-section .preview-actions {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Compact, conversion-focused layout refinement */
body {
  line-height: 1.58;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

p {
  margin-bottom: 16px;
}

.section {
  padding: 76px 0;
}

.section-head {
  margin-bottom: 34px;
}

.eyebrow {
  margin-bottom: 12px;
}

.nav-wrap {
  min-height: 74px;
  gap: 22px;
}

.site-logo {
  width: 174px;
}

.nav-links {
  gap: 20px;
}

.hero-grid {
  min-height: 600px;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 32px;
}

.hero-copy {
  padding: 50px 0;
}

.hero-copy p {
  margin-bottom: 24px;
}

.hero-actions {
  margin-bottom: 24px;
}

.trust-item {
  padding: 18px 22px;
}

.trust-icon {
  width: 42px;
  height: 42px;
}

.question-card {
  padding: 24px;
}

.question-card > .icon {
  box-sizing: content-box;
  width: 22px;
  height: 22px;
  margin-bottom: 16px;
  padding: 11px;
  border-radius: 13px;
  color: var(--coral);
  background: var(--coral-pale);
}

.insight-card {
  min-height: 178px;
  padding: 24px;
}

.insight-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 17px;
  border-radius: 14px;
}

.discover-grid {
  gap: 42px;
}

.report-stage,
.sample-pages {
  min-height: 420px;
}

.packages-grid {
  gap: 18px;
  margin-top: 36px;
}

.package-card {
  min-height: 430px;
  padding: 28px;
}

.package-card.featured {
  transform: translateY(-8px);
}

.package-card.featured .package-kicker {
  margin-top: 4px;
}

.package-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.package-symbol .icon {
  width: 22px;
  height: 22px;
}

.package-card.featured .package-symbol {
  margin-top: 14px;
  color: var(--coral);
  background: var(--coral-pale);
}

.package-includes {
  margin: 6px 0 26px;
}

.steps-grid {
  gap: 16px;
}

.step-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.step-card::before {
  display: block;
  margin-bottom: 13px;
}

.step-card .icon {
  box-sizing: content-box;
  width: 21px;
  height: 21px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: 12px;
  color: var(--coral);
  background: var(--coral-pale);
}

.sample-grid {
  gap: 44px;
}

.guarantee-grid {
  padding: 32px 0;
}

.faq-grid {
  gap: 52px;
}

.faq-question {
  padding: 18px 0;
}

.site-footer {
  padding: 48px 0 22px;
}

.footer-grid {
  gap: 42px;
  padding-bottom: 34px;
}

.subhero {
  padding: 72px 0 58px;
}

.mobile-order-bar {
  display: none;
}

@media (max-width: 1080px) {
  .nav-links.mobile-open {
    inset: 106px 0 0;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 52px 0 34px;
  }

  .hero-image {
    height: 420px;
  }

  .packages-grid {
    gap: 14px;
    margin-top: 30px;
  }

  .report-stage,
  .sample-pages {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  body:has(.mobile-order-bar) {
    padding-bottom: 66px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .announcement {
    padding: 7px 14px;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .site-logo {
    width: 145px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-links.mobile-open {
    inset: 95px 0 0;
  }

  .hero-copy {
    padding: 44px 0 28px;
  }

  .hero-image {
    height: 300px;
  }

  .trust-grid,
  .insights-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    grid-template-columns: 34px 1fr;
    gap: 9px;
    padding: 14px 12px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-icon .icon {
    width: 17px;
    height: 17px;
  }

  .trust-item strong {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .trust-item small {
    font-size: 0.68rem;
    line-height: 1.3;
  }

  .trust-item + .trust-item {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(2) {
    border-top: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .question-card {
    padding: 20px;
  }

  .insight-card {
    min-height: 164px;
    padding: 18px;
  }

  .insight-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 13px;
    border-radius: 12px;
  }

  .insight-icon .icon {
    width: 19px;
    height: 19px;
  }

  .insight-card h3 {
    font-size: 1rem;
  }

  .insight-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .step-card {
    padding: 17px 14px;
  }

  .step-card h3 {
    font-size: 0.94rem;
  }

  .step-card p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .report-stage,
  .sample-pages {
    min-height: 280px;
  }

  .package-card,
  .order-card,
  .order-summary {
    padding: 24px 20px;
  }

  .package-card {
    min-height: auto;
  }

  .package-card.featured .package-symbol {
    margin-top: 16px;
  }

  .footer-grid {
    gap: 26px;
  }

  .whatsapp-float {
    bottom: 78px;
  }

  .mobile-order-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 34;
    display: flex;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(21, 48, 75, 0.10);
    backdrop-filter: blur(14px);
  }

  .mobile-order-bar .btn {
    width: 100%;
    min-height: 48px;
  }

  .mobile-order-bar strong {
    margin-left: 4px;
  }
}

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

/* Live visual audit refinements */
.menu-toggle .close-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

@media (max-width: 1080px) {
  .nav-links.mobile-open {
    position: absolute;
    inset: 100% 0 auto;
    z-index: 39;
    display: flex;
    max-height: calc(100dvh - 106px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 10px 24px 18px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 36px rgba(21, 48, 75, 0.13);
    backdrop-filter: blur(18px);
  }

  .nav-links.mobile-open a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
  }

  .nav-links.mobile-open a:last-child {
    border-bottom: 0;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  body:has(.mobile-order-bar) {
    padding-bottom: 0;
  }

  body:has(.mobile-order-bar.is-visible) {
    padding-bottom: 66px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .nav-links.mobile-open {
    max-height: calc(100dvh - 95px);
    padding: 8px 20px 14px;
  }

  .hero-copy {
    padding: 30px 0 20px;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
  }

  .hero-copy p {
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 4px;
    margin-bottom: 17px;
  }

  .hero-actions .btn {
    min-height: 49px;
  }

  .hero-actions .btn-outline {
    min-height: auto;
    padding: 9px 14px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .micro-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .micro-proof span {
    align-items: flex-start;
    gap: 5px;
    font-size: 0.69rem;
    line-height: 1.32;
  }

  .micro-proof .icon {
    width: 15px;
    height: 15px;
  }

  .hero-image {
    height: 270px;
  }

  .question-card {
    padding: 18px;
  }

  .question-card > .icon {
    margin-bottom: 12px;
    padding: 9px;
  }

  .question-card h3 {
    margin-bottom: 7px;
    font-size: 1.05rem;
  }

  .question-card p {
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .footer-brand,
  .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-col:last-child .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-order-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(110%);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-order-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .whatsapp-float {
    bottom: 14px;
    transition: bottom 220ms ease;
  }

  body:has(.mobile-order-bar.is-visible) .whatsapp-float {
    bottom: 78px;
  }
}

/* Mockup-parity design system */
.curiosity-section .section-head,
.report-preview-section .section-head {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.parent-prompts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: -2px 0 24px;
}

.parent-prompts span {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
}

.parent-prompts .icon {
  width: 17px;
  height: 17px;
  color: var(--coral);
}

.home-insights-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  background: transparent;
}

.home-insights-grid .insight-card {
  min-height: 190px;
  padding: 22px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(21, 48, 75, 0.035);
}

.home-insights-grid .insight-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 15px;
  border: 1px solid rgba(8, 126, 122, 0.18);
  border-radius: 17px;
  background: rgba(232, 249, 247, 0.72);
}

.home-insights-grid .insight-card:nth-child(even) .insight-icon {
  border-color: rgba(241, 91, 100, 0.18);
  background: rgba(255, 238, 236, 0.74);
}

.home-insights-grid .insight-card h3 {
  margin-bottom: 7px;
  font-size: 1.02rem;
}

.home-insights-grid .insight-card p {
  font-size: 0.74rem;
  line-height: 1.45;
}

.section-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.discover-subhead {
  margin: -4px 0 15px;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.report-book {
  min-height: 410px;
  perspective: 1200px;
}

.report-book::before {
  inset: 8% 2% 3%;
  border-radius: 34px;
}

.report-book .report-page {
  border-width: 7px;
  border-radius: 6px;
}

.report-book .report-cover-page {
  top: 3%;
  left: 17%;
  z-index: 1;
  width: 64%;
  opacity: 0.35;
  transform: rotate(-2deg) translateY(-4px);
}

.report-book .report-left-page {
  top: 23%;
  left: 0;
  z-index: 2;
  width: 58%;
  transform: rotate(-3deg) rotateY(5deg);
  transform-origin: right center;
}

.report-book .report-right-page {
  top: 25%;
  right: 0;
  bottom: auto;
  z-index: 3;
  width: 58%;
  transform: rotate(3deg) rotateY(-5deg);
  transform-origin: left center;
}

.packages-grid {
  margin-top: 30px;
}

.package-card {
  min-height: 410px;
  border-radius: 18px;
}

.steps-grid {
  gap: 0;
}

.step-card {
  padding: 12px 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.step-card::before {
  margin-bottom: 10px;
}

.step-card .icon {
  box-sizing: content-box;
  width: 30px;
  height: 30px;
  margin: 0 auto 15px;
  padding: 14px;
  border: 1px solid rgba(8, 126, 122, 0.18);
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--white);
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 69px;
  right: -15%;
  width: 30%;
  border-top: 1px dashed rgba(8, 126, 122, 0.42);
  content: "";
}

.report-preview-section {
  background: linear-gradient(180deg, var(--white), #fbfdfd);
}

.report-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
}

.report-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 48, 75, 0.08);
}

.report-gallery img {
  width: 100%;
  aspect-ratio: 1.29 / 1;
  object-fit: contain;
  background: var(--white);
}

.report-gallery figcaption {
  min-height: 45px;
  padding: 10px 8px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}

.preview-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.closing-section {
  background: linear-gradient(135deg, #fffdfb, #f5fbfa);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 22px;
}

.closing-faq,
.closing-cta {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.closing-faq {
  padding: 34px;
}

.closing-faq h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.closing-faq .faq-list {
  margin-top: 18px;
}

.faq-support-link {
  margin-top: 20px;
  font-size: 0.82rem;
}

.closing-cta {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(241, 91, 100, 0.12), transparent 35%),
    var(--cream);
}

.closing-cta::after {
  position: absolute;
  inset: 42% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--cream), rgba(251, 250, 247, 0.08) 40%);
  content: "";
}

.closing-cta-copy {
  position: relative;
  z-index: 3;
  padding: 38px 36px;
}

.closing-cta-copy h2 {
  max-width: 430px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.closing-cta-copy p {
  max-width: 430px;
}

.closing-cta > img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 56%;
  object-fit: cover;
  object-position: 67% center;
}

.closing-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(221, 231, 232, 0.9);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.closing-whatsapp .icon {
  width: 17px;
  height: 17px;
}

@media (min-width: 1081px) {
  .hero .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero .hero-actions .btn-outline {
    min-height: auto;
    padding: 9px 2px;
    border-color: transparent;
    color: var(--teal-dark);
    background: transparent;
    box-shadow: none;
  }

  .trust-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 24px 20px;
    text-align: center;
  }

  .trust-icon {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(8, 126, 122, 0.18);
    border-radius: 17px;
    background: transparent;
  }

  .trust-icon .icon {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 1080px) {
  .parent-prompts,
  .home-insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .closing-grid {
    grid-template-columns: 1fr;
  }

  .closing-cta {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .parent-prompts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .home-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    gap: 14px;
  }

  .step-card {
    padding: 18px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    text-align: left;
  }

  .step-card .icon {
    margin-right: 0;
    margin-left: 0;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .report-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-gallery figure:last-child {
    width: calc(50% - 6px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .curiosity-section .section-head,
  .report-preview-section .section-head {
    margin-bottom: 22px;
  }

  .parent-prompts span {
    font-size: 0.66rem;
  }

  .home-insights-grid .insight-card {
    min-height: 162px;
    padding: 18px 12px;
  }

  .home-insights-grid .insight-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 11px;
  }

  .report-book {
    min-height: 290px;
  }

  .preview-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .preview-actions .btn,
  .preview-actions .text-link {
    justify-content: center;
  }

  .closing-faq {
    padding: 26px 20px;
  }

  .closing-cta {
    min-height: 525px;
  }

  .closing-cta-copy {
    padding: 30px 22px;
  }

  .closing-cta > img {
    height: 48%;
  }
}

/* Precision hero composition */
.hero-title-line {
  display: block;
}

@media (min-width: 821px) {
  .hero .micro-proof {
    display: none;
  }

  .hero-grid.container {
    position: relative;
    display: block;
    width: 100%;
    min-height: 600px;
    margin: 0;
  }

  .hero-copy {
    width: 50%;
    min-height: 600px;
    padding: 52px clamp(28px, 3.7vw, 68px) 48px clamp(28px, 5vw, 96px);
  }

  .hero h1 {
    max-width: 660px;
    margin-bottom: 18px;
    font-size: clamp(3.1rem, 4.5vw, 4.25rem);
    line-height: 1.03;
  }

  .hero-copy p {
    max-width: 570px;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-image {
    position: absolute;
    inset: 0 0 0 39%;
    width: auto;
    height: 100%;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-position: right center;
  }

  .hero-image::after {
    width: 28%;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .hero-copy {
    width: 54%;
    padding-left: clamp(24px, 4vw, 48px);
  }

  .hero h1 {
    font-size: clamp(3rem, 5.4vw, 3.75rem);
  }

  .hero-image {
    left: 43%;
  }
}

@media (max-width: 820px) {
  .hero-grid.container {
    display: grid;
    width: min(calc(100% - 40px), var(--container));
    min-height: auto;
    margin-inline: auto;
  }

  .hero-copy {
    width: auto;
    min-height: 0;
  }

  .hero-image {
    position: relative;
    inset: auto;
    width: auto;
  }
}

@media (max-width: 560px) {
  .hero-grid.container {
    width: min(calc(100% - 30px), var(--container));
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.04;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.08rem;
  }
}

/* Content-rich commercial system v8 */
.compact-subhero {
  padding: 70px 0 62px;
}

.compact-subhero .container {
  max-width: 940px;
}

.compact-subhero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.compact-subhero p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.04rem;
}

.subhero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 28px;
}

.subhero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.subhero-proof .icon {
  width: 18px;
  height: 18px;
  color: var(--teal-dark);
}

.package-choice-section {
  padding-top: 78px;
}

.rich-package-grid {
  margin-top: 0;
}

.rich-package-grid .package-card {
  min-height: 690px;
}

.rich-package-grid .package-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 2.8vw, 2.55rem);
}

.best-for {
  padding: 13px 14px;
  border-radius: 10px;
  background: var(--cream);
  font-size: 0.88rem;
}

.package-actions {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.package-actions .btn {
  width: 100%;
  margin-top: 0;
}

.package-actions .text-link {
  justify-content: center;
  font-size: 0.78rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-hint {
  display: none;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: right;
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child {
  width: 40%;
  text-align: left;
}

.comparison-table thead th {
  color: var(--ink);
  background: var(--cream);
  font-size: 0.92rem;
}

.comparison-table thead small {
  color: var(--ink-soft);
  font-weight: 600;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table .recommended-col {
  background: rgba(255, 240, 239, 0.58);
}

.table-yes {
  color: var(--teal-dark);
  font-weight: 800;
}

.table-no {
  color: #9aa7af;
}

.featured-question {
  border-color: rgba(241, 91, 100, 0.55);
  background: linear-gradient(180deg, var(--white), var(--coral-pale));
}

.decision-cards .question-card p {
  margin-bottom: 18px;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.content-card {
  padding: 26px;
  border: 1px solid rgba(8, 126, 122, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
}

.content-card > .icon {
  box-sizing: content-box;
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  padding: 11px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: var(--white);
}

.content-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.product-subhero {
  padding: 72px 0;
  text-align: left;
}

.product-subhero .product-subhero-grid {
  display: grid;
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  align-items: center;
  gap: 70px;
}

.product-subhero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.product-subhero p {
  max-width: 720px;
}

.product-subhero .final-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.product-price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-price-card > span,
.product-price-card > small,
.product-price-card > strong {
  display: block;
}

.product-price-card > span {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price-card > strong {
  margin: 8px 0 2px;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1;
}

.product-price-card > small {
  color: var(--ink-soft);
}

.product-price-card ul {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.product-price-card li::before {
  margin-right: 8px;
  color: var(--teal-dark);
  content: "✓";
  font-weight: 800;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scope-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scope-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.scope-number {
  display: inline-grid;
  width: 35px;
  height: 35px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.example-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.example-chips span {
  padding: 5px 8px;
  border: 1px solid rgba(8, 126, 122, 0.12);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  font-size: 0.69rem;
  font-weight: 700;
}

.home-insights-grid .example-chips {
  justify-content: center;
  margin-top: 12px;
}

.home-insights-grid .example-chips span {
  font-size: 0.62rem;
}

.number-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  counter-reset: item;
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  color: var(--ink);
  counter-increment: item;
}

.number-list li::before {
  grid-row: 1 / 3;
  color: var(--coral);
  content: "0" counter(item);
  font-size: 0.72rem;
  font-weight: 800;
}

.number-list span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.product-hero .hero-copy {
  padding-top: 46px;
}

.product-hero .badge {
  margin-bottom: 12px;
}

.discover-why .section-head {
  max-width: 850px;
}

.parent-journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.parent-journey-grid article {
  min-height: 230px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.parent-journey-grid article > span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parent-journey-grid p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.rich-insights-grid {
  gap: 14px;
  border: 0;
  background: transparent;
}

.rich-insights-grid .insight-card {
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.rich-insights-grid .insight-card p {
  margin-bottom: 0;
}

.rich-insights-grid .insight-card small {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.health-insight-card {
  background: linear-gradient(180deg, var(--white), var(--teal-pale));
}

.result-flow {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
}

.result-flow article {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(8, 126, 122, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.result-flow article > strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 0.76rem;
}

.result-flow span,
.result-flow b {
  display: block;
}

.result-flow span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.result-flow b {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.88rem;
}

.result-flow-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.answer-section {
  background: linear-gradient(135deg, #fffdfb, var(--teal-pale));
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 64px;
}

.answer-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
}

.upgrade-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.upgrade-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.upgrade-card > span {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upgrade-card h3 {
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.complete-layers .question-card {
  position: relative;
  padding-top: 32px;
}

.complete-layers .question-card > .scope-number {
  position: absolute;
  top: 20px;
  right: 20px;
}

.health-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.health-area {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.health-area .insight-icon {
  width: 52px;
  height: 52px;
  margin: 0;
}

.health-area p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.complete-value-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.report-story-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 13px;
}

.report-story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.report-story-card figure {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #f8fbfb;
}

.report-story-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: contain;
}

.report-story-card > span,
.report-story-card h3,
.report-story-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.report-story-card > span {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.report-story-card p {
  margin-bottom: 20px;
  font-size: 0.78rem;
}

.report-format-note {
  display: grid;
  max-width: 740px;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  margin: 36px auto 0;
  padding: 22px;
  border: 1px solid rgba(8, 126, 122, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.report-format-note > .icon {
  box-sizing: content-box;
  padding: 10px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: var(--white);
}

.report-format-note p {
  margin-bottom: 0;
}

.package-map-section .final-actions {
  margin-top: 34px;
}

.timeline-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 38px 28px;
  border: 1px solid rgba(8, 126, 122, 0.16);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline-card span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  font-size: 0.76rem;
  font-weight: 800;
}

.timeline-card .icon {
  width: 16px;
  height: 16px;
  color: var(--coral);
}

.rich-faq-grid {
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.mini-package-guide {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.mini-package-guide span {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--cream);
  font-size: 0.78rem;
}

.mini-package-guide b {
  color: var(--ink);
}

.checkout-help {
  margin: 14px 0 0;
  font-size: 0.78rem;
}

.checkout-help .text-link {
  display: inline;
}

.summary-description {
  margin-top: -8px;
  font-size: 0.86rem;
}

.summary-includes {
  display: grid;
  gap: 7px;
  margin: 20px 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.summary-includes li::before {
  margin-right: 8px;
  color: var(--teal-dark);
  content: "✓";
  font-weight: 800;
}

.choice label small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.67rem;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .feature-list-grid,
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parent-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rich-package-grid .package-card {
    min-height: 660px;
  }
}

@media (max-width: 820px) {
  .product-subhero .product-subhero-grid,
  .answer-grid,
  .upgrade-grid,
  .complete-value-grid {
    grid-template-columns: 1fr;
  }

  .product-subhero .product-subhero-grid {
    gap: 34px;
  }

  .product-price-card {
    max-width: 500px;
  }

  .scope-columns,
  .parent-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .health-areas-grid {
    grid-template-columns: 1fr;
  }

  .result-flow-large {
    grid-template-columns: 1fr;
  }

  .report-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-intro {
    position: static;
  }

  .rich-package-grid .package-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .compact-subhero,
  .product-subhero {
    padding: 50px 0 46px;
  }

  body[data-page="order"] .nav-actions .btn-outline {
    display: none;
  }

  .compact-subhero h1,
  .product-subhero h1 {
    font-size: 2.35rem;
  }

  .product-subhero .product-subhero-grid {
    width: min(calc(100% - 30px), var(--container));
  }

  .subhero-proof {
    align-items: center;
    flex-direction: column;
  }

  .feature-list-grid,
  .four-up,
  .scope-columns,
  .parent-journey-grid,
  .report-story-grid {
    grid-template-columns: 1fr;
  }

  .comparison-wrap {
    margin-right: -15px;
    margin-left: -15px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .comparison-hint {
    display: block;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
  }

  .health-area {
    grid-template-columns: 46px 1fr;
    padding: 20px;
  }

  .health-area .insight-icon {
    width: 44px;
    height: 44px;
  }

  .report-story-card img {
    aspect-ratio: 1.36 / 1;
  }

  .timeline-card {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline-card .icon {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .mini-package-guide span {
    grid-template-columns: 76px 1fr;
  }
}

/* Sample report experience v10 */
.sample-report-hero {
  overflow: hidden;
  padding: 50px 0 52px;
  background:
    radial-gradient(circle at 92% 16%, rgba(11, 180, 173, 0.14), transparent 26%),
    radial-gradient(circle at 7% 92%, rgba(241, 91, 100, 0.10), transparent 30%),
    var(--cream);
}

.sample-hero-grid {
  display: grid;
  align-items: center;
  max-width: var(--container) !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 54px;
}

.sample-hero-copy {
  text-align: left;
}

.sample-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 15px;
  font-size: clamp(2.9rem, 4vw, 4rem);
  line-height: 1.01;
}

.sample-hero-copy > p {
  max-width: 610px;
  margin-right: 0;
  margin-left: 0;
  font-size: 0.98rem;
  line-height: 1.62;
}

.sample-hero-copy .final-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 24px 0 28px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-proof-row .icon {
  width: 17px;
  height: 17px;
  color: var(--teal-dark);
}

.report-preview-stack {
  position: relative;
  min-height: 320px;
  isolation: isolate;
}

.preview-page {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--white);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(21, 48, 75, 0.18);
}

.preview-page img {
  display: block;
  width: 100%;
  height: auto;
}

.preview-page-back {
  top: 8px;
  right: 0;
  width: 72%;
  opacity: 0.55;
  transform: rotate(5deg);
}

.preview-page-middle {
  top: 78px;
  left: 2%;
  width: 77%;
  opacity: 0.84;
  transform: rotate(-6deg);
}

.preview-page-front {
  right: 3%;
  bottom: 8px;
  z-index: 2;
  width: 88%;
  transform: rotate(-1deg);
}

.preview-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(21, 48, 75, 0.16);
  backdrop-filter: blur(14px);
}

.preview-badge > .icon {
  width: 25px;
  height: 25px;
  color: var(--coral);
}

.preview-badge strong,
.preview-badge span {
  display: block;
}

.preview-badge strong {
  margin-bottom: 1px;
  font-size: 0.76rem;
}

.preview-badge span {
  color: var(--muted);
  font-size: 0.68rem;
}

.wide-head {
  max-width: 850px;
}

.annotated-report-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(21, 48, 75, 0.12);
}

.annotated-report-stage {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #e9f5f8;
}

.annotated-report-stage > img {
  display: block;
  width: 100%;
  height: auto;
}

.report-hotspot {
  position: absolute;
  z-index: 3;
}

.report-hotspot > b {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 8px 22px rgba(241, 91, 100, 0.35);
  font-size: 0.84rem;
}

.report-hotspot > b::before {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 2px solid rgba(241, 91, 100, 0.44);
  border-radius: 50%;
  content: "";
}

.report-hotspot > span {
  position: absolute;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border: 1px solid rgba(21, 48, 75, 0.12);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 24px rgba(21, 48, 75, 0.16);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1;
}

.report-hotspot > span .icon {
  width: 15px;
  height: 15px;
  color: var(--coral);
}

.hotspot-result {
  top: 19%;
  left: 20%;
}

.hotspot-result > span {
  right: 20px;
  bottom: 29px;
}

.hotspot-actions {
  top: 14%;
  left: 48%;
}

.hotspot-actions > span {
  top: 30px;
  right: 20px;
}

.hotspot-sources {
  top: 52%;
  left: 23%;
}

.hotspot-sources > span {
  bottom: 29px;
  left: 20px;
}

.hotspot-genotype {
  top: 82%;
  left: 83%;
}

.hotspot-genotype > span {
  top: 30px;
  left: 20px;
}

.sample-result-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 4px 0;
  color: var(--muted);
}

.sample-result-note .icon {
  width: 17px;
  min-width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--teal-dark);
}

.sample-result-note p {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.55;
}

.report-snippet-grid {
  display: grid;
  max-width: 1100px;
  margin: 34px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.report-snippet-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(21, 48, 75, 0.06);
}

.snippet-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.snippet-topline .icon {
  width: 18px;
  height: 18px;
}

.report-crop {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #dce8eb;
  border-radius: 11px;
  background: #eef8fa;
}

.report-snippet-card h3 {
  margin-bottom: 7px;
  font-family: inherit;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.report-snippet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.58;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.scenario-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(21, 48, 75, 0.06);
}

.scenario-card::after {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(11, 180, 173, 0.07);
  content: "";
}

.featured-scenario {
  border-color: rgba(241, 91, 100, 0.38);
  box-shadow: 0 18px 38px rgba(241, 91, 100, 0.10);
}

.scenario-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: var(--mint);
}

.featured-scenario .scenario-icon {
  color: var(--coral);
  background: #fff0f0;
}

.scenario-icon .icon {
  width: 23px;
  height: 23px;
}

.scenario-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-card h3 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 1.04rem;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.scenario-card > p {
  min-height: 112px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.62;
}

.scenario-path {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.scenario-path b {
  color: var(--ink);
  font-size: 0.63rem;
  line-height: 1.25;
}

.scenario-path .icon {
  width: 13px;
  min-width: 13px;
  height: 13px;
  color: var(--coral);
}

.report-reveal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.report-reveal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(21, 48, 75, 0.09);
}

.reveal-image {
  position: relative;
  overflow: hidden;
  background: #fff7dc;
}

.reveal-image img {
  display: block;
  width: 100%;
  height: auto;
}

.reveal-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 7px 18px rgba(21, 48, 75, 0.18);
  font-size: 0.62rem;
  font-weight: 800;
}

.reveal-label .icon {
  width: 13px;
  height: 13px;
}

.learning-reveal .reveal-label-a {
  top: 5%;
  left: 37%;
}

.nutrition-reveal .reveal-label-a {
  top: 34%;
  left: 4%;
}

.nutrition-reveal .reveal-label-b {
  top: 34%;
  left: 30%;
}

.nutrition-reveal .reveal-label-c {
  top: 34%;
  right: 4%;
}

.learning-reveal .reveal-label-b {
  bottom: 46%;
  left: 4%;
}

.learning-reveal .reveal-label-c {
  right: 4%;
  bottom: 46%;
}

.fitness-reveal .reveal-label-a {
  top: 5%;
  left: 28%;
}

.fitness-reveal .reveal-label-b {
  top: 36%;
  left: 29%;
}

.fitness-reveal .reveal-label-c {
  right: 32%;
  bottom: 29%;
}

.reveal-copy {
  padding: 25px 26px 28px;
}

.reveal-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal-copy h3 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.reveal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.62;
}

.sample-final-cta {
  background:
    radial-gradient(circle at 15% 10%, rgba(11, 180, 173, 0.10), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(241, 91, 100, 0.10), transparent 28%);
}

@media (max-width: 1080px) {
  .sample-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 36px;
  }

  .report-preview-stack {
    min-height: 285px;
  }

  .report-hotspot > span {
    font-size: 0.62rem;
  }

  .report-snippet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-card {
    padding: 23px;
  }

  .scenario-card > p {
    min-height: 130px;
  }
}

@media (max-width: 820px) {
  .sample-report-hero {
    padding: 44px 0 46px;
  }

  .sample-hero-grid {
    grid-template-columns: 1fr;
  }

  .sample-hero-copy {
    text-align: center;
  }

  .sample-hero-copy h1,
  .sample-hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .sample-hero-copy .final-actions,
  .hero-proof-row {
    justify-content: center;
  }

  .report-preview-stack {
    width: min(520px, 100%);
    min-height: 320px;
    margin: 0 auto;
  }

  .report-preview-stack .preview-page-front {
    top: 8px;
    right: 4%;
    bottom: auto;
    width: 78%;
  }

  .report-preview-stack .preview-page-back {
    top: 0;
    right: 2%;
    width: 66%;
  }

  .scenario-grid,
  .report-reveal-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card > p {
    min-height: 0;
  }

  .report-reveal-card {
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .sample-report-hero {
    padding: 38px 0 40px;
  }

  .sample-report-hero h1 {
    font-size: 2.25rem;
  }

  .sample-report-hero .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sample-report-hero .final-actions .btn-outline {
    display: none;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-proof-row span:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .report-preview-stack {
    min-height: 220px;
  }

  .report-preview-stack .preview-page-front {
    top: 4px;
    right: 5%;
    width: 80%;
  }

  .report-preview-stack .preview-page-back {
    right: 2%;
    width: 68%;
  }

  .preview-page {
    border-width: 5px;
  }

  .preview-page-back {
    right: 0;
  }

  .preview-page-middle {
    top: 55px;
  }

  .preview-page-front {
    bottom: 16px;
  }

  .preview-badge {
    padding: 9px 12px;
  }

  .annotated-report-card {
    margin-right: -15px;
    margin-left: -15px;
    padding: 8px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .annotated-report-stage {
    border-radius: 8px;
  }

  .report-hotspot > b {
    width: 28px;
    height: 28px;
    border-width: 3px;
    font-size: 0.7rem;
  }

  .report-hotspot > b::before {
    inset: -7px;
  }

  .report-hotspot > span {
    display: none;
  }

  .sample-result-note {
    padding: 11px 7px 4px;
  }

  .report-snippet-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .report-snippet-card {
    padding: 12px;
  }

  .scenario-card {
    padding: 22px;
  }

  .scenario-path {
    align-items: flex-start;
  }

  .reveal-label {
    padding: 4px 7px;
    font-size: 0.52rem;
  }

  .reveal-label .icon {
    width: 10px;
    height: 10px;
  }

  .reveal-copy {
    padding: 21px;
  }
}

/* Checkout conversion and usability repair v12 */
body[data-page="order"] .order-subhero {
  padding: 44px 0 40px;
}

body[data-page="order"] .order-subhero .container {
  max-width: 900px;
}

body[data-page="order"] .order-subhero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.75rem, 4.4vw, 3.8rem);
  line-height: 1.02;
}

body[data-page="order"] .order-subhero p {
  max-width: 700px;
  font-size: 0.96rem;
  line-height: 1.58;
}

.order-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 20px;
}

.order-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.order-hero-trust .icon {
  width: 16px;
  height: 16px;
  color: var(--teal-dark);
}

body[data-page="order"] main > .section-soft {
  padding: 42px 0 70px;
}

body[data-page="order"] .order-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 32px;
}

body[data-page="order"] .order-card,
body[data-page="order"] .order-summary {
  border-radius: 20px;
}

body[data-page="order"] .order-card {
  padding: 31px;
}

body[data-page="order"] .order-summary {
  top: 106px;
  padding: 31px;
}

body[data-page="order"] .order-summary h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: 1.08;
}

body[data-page="order"] .form-section {
  margin-bottom: 26px;
  padding-bottom: 25px;
}

body[data-page="order"] .form-section h2 {
  margin-bottom: 17px;
  font-size: 1.16rem;
}

body[data-page="order"] .field input,
body[data-page="order"] .field select {
  min-height: 52px;
  border-color: #d9e4e6;
  background: #fdfefe;
}

.required-mark {
  color: var(--coral);
}

body[data-page="order"] .choice label {
  min-height: 126px;
  align-content: center;
  padding: 13px 11px;
  border-radius: 12px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body[data-page="order"] .choice label:hover {
  border-color: rgba(11, 180, 173, 0.55);
  transform: translateY(-1px);
}

body[data-page="order"] .choice input:focus-visible + label {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(11, 180, 173, 0.18);
}

.choice-badge {
  width: max-content;
  margin: 0 auto 8px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.choice input:checked + label .choice-badge {
  color: var(--white);
  background: var(--teal-dark);
}

.hardcopy-option {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfd;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hardcopy-option:hover,
.hardcopy-option:has(input:checked) {
  border-color: var(--teal);
  background: #f0fbf9;
  box-shadow: 0 0 0 2px rgba(11, 180, 173, 0.08);
}

.hardcopy-option > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hardcopy-control {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border: 2px solid #cbdadc;
  border-radius: 9px;
  color: var(--white);
  background: var(--white);
  transition: border-color 160ms ease, background 160ms ease;
}

.hardcopy-control .icon {
  width: 17px;
  height: 17px;
  opacity: 0;
}

.hardcopy-option > input:checked + .hardcopy-control {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.hardcopy-option > input:checked + .hardcopy-control .icon {
  opacity: 1;
}

.hardcopy-option > input:focus-visible + .hardcopy-control {
  box-shadow: 0 0 0 4px rgba(11, 180, 173, 0.18);
}

.hardcopy-copy strong,
.hardcopy-copy small {
  display: block;
}

.hardcopy-copy strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
}

.hardcopy-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.hardcopy-price {
  color: var(--teal-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.checkout-terms a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-submit {
  width: 100%;
  min-height: 54px;
  box-shadow: 0 12px 26px rgba(241, 91, 100, 0.22);
}

.checkout-submit:not([disabled])::after {
  margin-left: 9px;
  content: "→";
}

.checkout-payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.checkout-payment-note .icon {
  width: 15px;
  height: 15px;
  color: var(--teal-dark);
}

.mobile-order-review {
  display: none;
}

@media (max-width: 820px) {
  body[data-page="order"] .order-subhero {
    padding: 38px 0 34px;
  }

  body[data-page="order"] main > .section-soft {
    padding: 30px 0 55px;
  }

  body[data-page="order"] .order-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="order"] .order-card {
    width: min(700px, 100%);
    margin: 0 auto;
  }

  body[data-page="order"] .order-summary {
    display: none;
  }

  .mobile-order-review {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
    margin: 2px 0 18px;
    padding: 17px;
    border: 1px solid rgba(11, 180, 173, 0.25);
    border-radius: 14px;
    background: #f0fbf9;
  }

  .mobile-order-review > div {
    display: grid;
    gap: 3px;
  }

  .mobile-order-review > div:nth-child(2) {
    text-align: right;
  }

  .mobile-order-review span {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-order-review strong {
    color: var(--ink);
    font-size: 0.92rem;
  }

  .mobile-order-review > div:nth-child(2) strong {
    color: var(--teal-dark);
    font-size: 1.04rem;
  }

  .mobile-order-review p,
  .mobile-order-review small {
    grid-column: 1 / -1;
    margin: 0;
  }

  .mobile-order-review p {
    padding-top: 9px;
    border-top: 1px solid rgba(11, 180, 173, 0.18);
    color: var(--muted);
    font-size: 0.7rem;
  }

  .mobile-order-review small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
  }

  .mobile-order-review small .icon {
    width: 14px;
    height: 14px;
    color: var(--teal-dark);
  }
}

@media (max-width: 560px) {
  body[data-page="order"] .order-subhero {
    padding: 32px 0 29px;
  }

  body[data-page="order"] .order-subhero h1 {
    margin-bottom: 10px;
    font-size: 2.18rem;
  }

  body[data-page="order"] .order-subhero p {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .order-hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    margin-top: 16px;
    text-align: left;
  }

  .order-hero-trust span {
    font-size: 0.63rem;
  }

  .order-hero-trust span:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  body[data-page="order"] main > .section-soft {
    padding: 22px 0 44px;
  }

  body[data-page="order"] .order-card {
    padding: 22px 19px;
    border-radius: 17px;
  }

  body[data-page="order"] .form-section {
    margin-bottom: 23px;
    padding-bottom: 22px;
  }

  body[data-page="order"] .form-section h2 {
    margin-bottom: 15px;
    font-size: 1.12rem;
  }

  body[data-page="order"] .choice label {
    min-height: 112px;
  }

  body[data-page="order"] .field input,
  body[data-page="order"] .field select {
    min-height: 50px;
    font-size: 16px;
  }

  .hardcopy-option {
    grid-template-columns: 31px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px 12px;
  }

  .hardcopy-copy strong {
    font-size: 0.76rem;
  }

  .hardcopy-copy small {
    font-size: 0.63rem;
  }

  .hardcopy-price {
    font-size: 0.75rem;
  }

  .checkout-terms {
    margin-top: 14px;
    font-size: 0.74rem;
  }
}

/* Insights page clarity and mobile readability v14 */
.insights-subhero .insight-hero-actions {
  margin-top: 25px;
}

.insight-package-key {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: -4px 0 26px;
  padding: 15px;
  border: 1px solid rgba(8, 126, 122, 0.15);
  border-radius: 16px;
  background: #f7fcfb;
}

.insight-package-key > span {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--white);
}

.insight-package-key > span > .icon {
  box-sizing: content-box;
  width: 19px;
  height: 19px;
  padding: 9px;
  border-radius: 10px;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.insight-package-key .key-discover > .icon {
  color: var(--coral);
  background: var(--coral-pale);
}

.insight-package-key strong,
.insight-package-key small {
  display: block;
}

.insight-package-key strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.insight-package-key small {
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.35;
}

.insight-package-key .key-arrow {
  width: 17px;
  height: 17px;
  color: var(--coral);
}

.rich-insights-grid .insight-card .scope-tag {
  display: inline-flex;
  width: fit-content;
  margin-top: 17px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  font-size: 0.65rem;
  line-height: 1.25;
}

.rich-insights-grid .insight-card .scope-discover {
  color: #a63842;
  background: var(--coral-pale);
}

.rich-insights-grid .insight-card .scope-complete {
  color: #12667b;
  background: #e8f5f8;
}

.scope-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.scope-card-head h3 {
  margin-bottom: 0;
}

.scope-card-head strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.decision-cards .question-card {
  position: relative;
}

.scope-recommended {
  position: absolute;
  top: -10px;
  left: 50%;
  display: inline-flex;
  margin: 0;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@media (max-width: 560px) {
  body[data-page="insights"] .compact-subhero {
    padding: 42px 0 40px;
  }

  body[data-page="insights"] .compact-subhero h1 {
    font-size: 2.2rem;
  }

  .insights-subhero .insight-hero-actions {
    display: grid;
    gap: 8px;
    margin-top: 20px;
  }

  .insights-subhero .insight-hero-actions .btn {
    width: 100%;
  }

  .insight-package-key {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 18px;
    padding: 10px;
  }

  .insight-package-key .key-arrow {
    margin: -2px auto;
    transform: rotate(90deg);
  }

  body[data-page="insights"] .rich-insights-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body[data-page="insights"] .rich-insights-grid .insight-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    column-gap: 13px;
    padding: 18px;
  }

  body[data-page="insights"] .rich-insights-grid .insight-icon {
    grid-row: 1 / span 4;
    margin: 0;
  }

  body[data-page="insights"] .rich-insights-grid h3,
  body[data-page="insights"] .rich-insights-grid p,
  body[data-page="insights"] .rich-insights-grid .example-chips,
  body[data-page="insights"] .rich-insights-grid .scope-tag {
    grid-column: 2;
  }

  body[data-page="insights"] .rich-insights-grid h3 {
    margin-bottom: 7px;
    font-size: 1rem;
  }

  body[data-page="insights"] .rich-insights-grid p {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  body[data-page="insights"] .rich-insights-grid .example-chips {
    gap: 5px;
    margin-top: 11px;
  }

  body[data-page="insights"] .rich-insights-grid .example-chips span {
    padding: 4px 7px;
    font-size: 0.61rem;
  }

  body[data-page="insights"] .rich-insights-grid .scope-tag {
    margin-top: 12px;
  }

  .scope-card-head strong {
    font-size: 1.25rem;
  }
}

/* Package comparison clarity v15 */
.table-recommended {
  display: block;
  width: fit-content;
  margin: 0 auto 6px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.57rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table-no {
  font-size: 0.72rem;
}

.mobile-package-comparison {
  display: none;
}

@media (max-width: 560px) {
  body[data-page="packages"] .packages-subhero {
    padding: 42px 0 40px;
  }

  body[data-page="packages"] .packages-subhero h1 {
    font-size: 2.2rem;
  }

  body[data-page="packages"] .subhero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 9px 12px;
    text-align: left;
  }

  body[data-page="packages"] .subhero-proof span {
    align-items: flex-start;
    font-size: 0.69rem;
    line-height: 1.35;
  }

  body[data-page="packages"] .comparison-hint,
  body[data-page="packages"] .comparison-wrap {
    display: none;
  }

  .mobile-package-comparison {
    display: grid;
    gap: 10px;
  }

  .mobile-package-comparison details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .mobile-package-comparison details.recommended {
    border-color: var(--coral);
    background: linear-gradient(180deg, var(--white), var(--coral-pale));
  }

  .mobile-package-comparison summary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 17px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-package-comparison summary::-webkit-details-marker {
    display: none;
  }

  .mobile-package-comparison summary strong,
  .mobile-package-comparison summary small {
    display: block;
  }

  .mobile-package-comparison summary strong {
    color: var(--ink);
    font-size: 0.9rem;
  }

  .mobile-package-comparison summary small {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 0.64rem;
  }

  .mobile-recommended {
    display: inline-flex;
    margin-bottom: 6px;
    padding: 3px 7px;
    border-radius: 999px;
    color: var(--white);
    background: var(--coral);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-compare-price {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.16rem;
    font-weight: 700;
  }

  .mobile-compare-price .icon {
    width: 17px;
    height: 17px;
    color: var(--teal-dark);
    transition: transform 180ms ease;
  }

  .mobile-package-comparison details[open] .mobile-compare-price .icon {
    transform: rotate(180deg);
  }

  .mobile-compare-body {
    padding: 0 17px 18px;
    border-top: 1px solid rgba(221, 231, 232, 0.8);
  }

  .mobile-compare-body p {
    margin: 14px 0 8px;
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 800;
  }

  .mobile-compare-body ul {
    display: grid;
    gap: 7px;
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
    color: var(--ink-soft);
    font-size: 0.72rem;
  }

  .mobile-compare-body li::before {
    margin-right: 7px;
    color: var(--teal-dark);
    content: "✓";
    font-weight: 800;
  }

  .mobile-compare-body .btn {
    width: 100%;
  }
}

/* GeneKids Nutri sales-flow refinement v16 */
.nutri-final-cta .section-head {
  max-width: 840px;
}

.nutri-compare-link {
  width: fit-content;
  margin: 20px auto 0;
  font-size: 0.8rem;
}

@media (max-width: 560px) {
  .nutri-page .nutri-subhero {
    padding: 42px 0 40px;
  }

  .nutri-page .nutri-subhero h1 {
    font-size: 2.2rem;
  }

  .nutri-page .product-price-card ul {
    margin-top: 17px;
    padding-top: 15px;
  }

  .nutri-page .nutri-final-cta {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nutri-compare-link {
    margin-top: 16px;
  }
}

/* GeneKids Discover sales-flow refinement v17 */
.discover-purchase-facts {
  display: grid;
  max-width: 650px;
  margin-top: 19px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 15px;
}

.discover-purchase-facts span {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.38;
}

.discover-purchase-facts .icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--teal-dark);
  stroke-width: 2.1;
}

@media (max-width: 820px) {
  .discover-purchase-facts {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .discover-page .discover-product-hero .hero-copy {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  .discover-page .discover-product-hero h1 {
    font-size: 2.25rem;
  }

  .discover-purchase-facts {
    margin-top: 17px;
    gap: 9px 12px;
  }

  .discover-purchase-facts span {
    font-size: 0.64rem;
  }

  .discover-page .parent-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .discover-page .parent-journey-grid article {
    min-height: 190px;
    padding: 18px 15px;
  }

  .discover-page .parent-journey-grid article:last-child {
    min-height: 150px;
    grid-column: 1 / -1;
  }

  .discover-page .parent-journey-grid article > span {
    margin-bottom: 13px;
    font-size: 0.62rem;
  }

  .discover-page .parent-journey-grid h3 {
    font-size: 0.92rem;
  }

  .discover-page .parent-journey-grid p {
    font-size: 0.72rem;
    line-height: 1.48;
  }

  .discover-page .rich-insights-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .discover-page .rich-insights-grid .insight-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    column-gap: 13px;
    padding: 18px;
  }

  .discover-page .rich-insights-grid .insight-icon {
    margin: 0;
    grid-row: 1 / span 3;
  }

  .discover-page .rich-insights-grid h3,
  .discover-page .rich-insights-grid p,
  .discover-page .rich-insights-grid .example-chips {
    grid-column: 2;
  }

  .discover-page .rich-insights-grid h3 {
    margin-bottom: 7px;
    font-size: 1rem;
  }

  .discover-page .rich-insights-grid p {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .discover-page .rich-insights-grid .example-chips {
    gap: 5px;
    margin-top: 11px;
  }

  .discover-page .rich-insights-grid .example-chips span {
    padding: 4px 7px;
    font-size: 0.61rem;
  }
}

/* GeneKids Complete premium-product refinement v18 */
.complete-report-preview {
  min-width: 0;
}

.complete-report-caption {
  display: flex;
  width: fit-content;
  max-width: 470px;
  align-items: center;
  gap: 11px;
  margin: -2px auto 0;
  padding: 11px 15px;
  border: 1px solid rgba(8, 126, 122, 0.16);
  border-radius: 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.69rem;
  line-height: 1.42;
  box-shadow: var(--shadow-soft);
}

.complete-report-caption .icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  color: var(--teal-dark);
}

.complete-report-caption strong {
  display: block;
  color: var(--ink);
  font-size: 0.72rem;
}

@media (max-width: 560px) {
  .complete-page .complete-subhero {
    padding: 42px 0 40px;
  }

  .complete-page .complete-subhero h1 {
    font-size: 2.2rem;
  }

  .complete-page .product-price-card {
    padding: 25px;
  }

  .complete-page .product-price-card ul {
    gap: 8px;
    margin-top: 17px;
    padding-top: 15px;
    font-size: 0.76rem;
  }

  .complete-report-caption {
    margin-top: 4px;
    padding: 10px 13px;
    font-size: 0.64rem;
  }
}

/* How GeneKids Works journey refinement v19 */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
}

.how-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 25px;
}

.how-hero-actions .text-link {
  font-size: 0.8rem;
}

.how-page .how-proof-grid {
  display: grid;
  max-width: 790px;
  margin: 23px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
}

.how-page .how-proof-grid span {
  justify-content: center;
  text-align: left;
}

.how-page .step-card::before {
  content: attr(data-step);
}

.process-support-note {
  display: grid;
  max-width: 900px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(8, 126, 122, 0.17);
  border-radius: 15px;
  background: var(--teal-pale);
}

.process-support-note > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-dark);
  background: var(--white);
}

.process-support-note > span .icon {
  width: 23px;
  height: 23px;
}

.process-support-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.process-support-note strong {
  color: var(--ink);
}

.process-support-note .text-link {
  font-size: 0.74rem;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .how-page .how-subhero {
    padding: 42px 0 40px;
  }

  .how-page .how-subhero h1 {
    font-size: 2.22rem;
  }

  .how-page .how-subhero p {
    font-size: 0.92rem;
  }

  .how-hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 21px;
  }

  .how-hero-actions .btn,
  .how-hero-actions .text-link {
    justify-content: center;
  }

  .how-page .how-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    margin-top: 20px;
  }

  .how-page .how-proof-grid span {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .process-support-note {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding: 14px;
  }

  .process-support-note > span {
    width: 40px;
    height: 40px;
  }

  .process-support-note p {
    font-size: 0.72rem;
  }

  .process-support-note .text-link {
    grid-column: 2;
    justify-self: start;
  }
}

/* FAQ clarity and conversion refinement v21 */
.faq-proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 24px;
}

.faq-proof-row span,
.faq-proof-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.faq-proof-row a {
  color: var(--teal-dark);
}

.faq-proof-row .icon {
  width: 16px;
  height: 16px;
  color: var(--teal-dark);
}

.faq-page .mini-package-guide span {
  grid-template-columns: 145px minmax(0, 1fr);
}

.faq-page .mini-guide-recommended {
  border: 1px solid rgba(241, 91, 100, 0.22);
  background: var(--coral-pale);
}

.faq-page .faq-answer .text-link {
  font-weight: 800;
}

.faq-cta-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  font-size: 0.74rem;
}

.faq-cta-help .icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 560px) {
  .faq-page .faq-subhero {
    padding: 42px 0 40px;
  }

  .faq-page .faq-subhero h1 {
    font-size: 2.2rem;
  }

  .faq-page .faq-subhero p {
    font-size: 0.9rem;
  }

  .faq-page .faq-subhero .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    margin-top: 21px;
    text-align: left;
  }

  .faq-proof-row span,
  .faq-proof-row a {
    align-items: flex-start;
    font-size: 0.63rem;
    line-height: 1.35;
  }

  .faq-proof-row a {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .faq-page .mini-package-guide span {
    grid-template-columns: 138px minmax(0, 1fr);
    font-size: 0.72rem;
  }
}

/* Sample report content and conversion refinement v20 */
.sample-report-page .report-reveal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sample-report-page .report-reveal-card {
  min-width: 0;
}

.sample-report-page .reveal-copy {
  padding: 22px 23px 25px;
}

.sample-report-page .reveal-copy h3 {
  font-size: 1rem;
}

.health-reveal .reveal-image {
  background: #f0fbfb;
}

.health-reveal .reveal-label-a {
  top: 24%;
  left: 4%;
}

.health-reveal .reveal-label-b {
  top: 16%;
  right: 5%;
}

.health-reveal .reveal-label-c {
  right: 16%;
  bottom: 24%;
}

@media (max-width: 1080px) {
  .sample-report-page .report-reveal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sample-report-page .health-reveal {
    grid-column: 1 / -1;
    width: min(620px, 100%);
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .sample-report-page .report-reveal-grid {
    grid-template-columns: 1fr;
  }

  .sample-report-page .health-reveal {
    grid-column: auto;
    width: auto;
  }
}

@media (max-width: 560px) {
  .sample-report-page .reveal-copy {
    padding: 21px;
  }

  .sample-report-page .health-reveal .reveal-label-b {
    top: 14%;
  }
}

/* Contact support journey refinement v22 */
.contact-subhero {
  background:
    radial-gradient(circle at 18% 80%, rgba(241, 91, 100, 0.09), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(11, 180, 173, 0.10), transparent 25%),
    var(--cream);
}

.contact-subhero h1 {
  margin-bottom: 15px;
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.contact-subhero > .container > p {
  max-width: 680px;
}

.contact-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 24px;
}

.contact-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 700;
}

.contact-hero-meta .icon {
  width: 16px;
  height: 16px;
  color: var(--teal-dark);
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-topic-card {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--coral);
  border-radius: 19px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.featured-contact-topic {
  border-color: rgba(241, 91, 100, 0.35);
  background: linear-gradient(150deg, var(--white), rgba(255, 240, 239, 0.72));
}

.contact-topic-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 19px;
  border-radius: 13px;
  color: var(--coral);
  background: var(--coral-pale);
}

.contact-topic-icon .icon {
  width: 22px;
  height: 22px;
}

.contact-topic-card > span {
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-topic-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.contact-topic-card p {
  margin-bottom: 20px;
  font-size: 0.79rem;
  line-height: 1.6;
}

.contact-topic-card .text-link {
  margin-top: auto;
  font-size: 0.75rem;
}

.contact-prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: start;
  gap: 70px;
}

.contact-prep-grid > div > p {
  max-width: 620px;
}

.contact-message-list {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.contact-message-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.contact-message-list strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 0.76rem;
}

.contact-message-list h3 {
  margin: 1px 0 3px;
  font-size: 0.86rem;
}

.contact-message-list p {
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.48;
}

.contact-shortcuts {
  padding: 27px;
  border: 1px solid rgba(8, 126, 122, 0.18);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-shortcuts > span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-shortcuts > h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
}

.contact-shortcuts > p {
  font-size: 0.76rem;
}

.contact-shortcuts nav {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.contact-shortcuts nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  text-decoration: none;
}

.contact-shortcuts nav a > .icon:first-child {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
}

.contact-shortcuts nav a > .icon:last-child {
  width: 15px;
  height: 15px;
  color: var(--coral);
}

.contact-shortcuts nav span,
.contact-shortcuts nav b {
  display: block;
}

.contact-shortcuts nav span {
  font-size: 0.66rem;
  line-height: 1.45;
}

.contact-shortcuts nav b {
  margin-bottom: 1px;
  color: var(--ink);
  font-size: 0.75rem;
}

@media (max-width: 820px) {
  .contact-topic-grid,
  .contact-prep-grid {
    grid-template-columns: 1fr;
  }

  .contact-topic-card {
    min-height: 0;
  }

  .contact-prep-grid {
    gap: 38px;
  }

  .contact-shortcuts {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .contact-page .contact-subhero {
    padding: 42px 0 40px;
  }

  .contact-page .contact-subhero h1 {
    font-size: 2.35rem;
  }

  .contact-page .contact-subhero > .container > p {
    font-size: 0.9rem;
  }

  .contact-page .contact-subhero .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    text-align: left;
  }

  .contact-hero-meta span {
    align-items: flex-start;
    font-size: 0.63rem;
    line-height: 1.35;
  }

  .contact-hero-meta span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .contact-topic-card,
  .contact-shortcuts {
    padding: 22px;
  }

  .contact-message-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }

  .contact-message-list strong {
    width: 38px;
    height: 38px;
  }
}

/* Refund guarantee audit v23 */
.refund-subhero {
  padding: 56px 0 48px;
  background:
    radial-gradient(circle at 15% 20%, rgba(241, 91, 100, 0.10), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(11, 180, 173, 0.14), transparent 26%),
    var(--cream);
}

.refund-subhero .container {
  max-width: 920px;
}

.refund-hero-icon {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(11, 180, 173, 0.22);
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.refund-hero-icon .icon {
  width: 30px;
  height: 30px;
}

.refund-subhero h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 5vw, 4.45rem);
}

.refund-subhero > .container > p {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-size: 1rem;
}

.refund-subhero .final-actions {
  margin-bottom: 26px;
}

.refund-hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 48, 75, 0.10);
}

.refund-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 700;
}

.refund-hero-proof .icon {
  width: 17px;
  height: 17px;
  color: var(--teal-dark);
}

.refund-summary-section {
  padding: 78px 0 82px;
}

.refund-summary-section .section-head {
  margin-bottom: 36px;
}

.refund-summary-section .section-head h2 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4vw, 3.45rem);
}

.refund-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.refund-summary-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.refund-summary-card-featured {
  border-color: rgba(11, 180, 173, 0.48);
  background: linear-gradient(180deg, rgba(234, 249, 247, 0.78), var(--white) 70%);
}

.refund-card-number {
  position: absolute;
  right: 22px;
  top: 16px;
  color: rgba(21, 48, 75, 0.07);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.refund-card-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.refund-summary-card-featured .refund-card-icon {
  color: var(--white);
  background: var(--teal-dark);
}

.refund-card-icon .icon {
  width: 25px;
  height: 25px;
}

.refund-card-label {
  display: block;
  margin-bottom: 7px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.refund-summary-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.refund-summary-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.refund-process-section {
  padding: 76px 0;
}

.refund-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 70px;
}

.refund-process-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
}

.refund-method-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(11, 180, 173, 0.24);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.refund-method-note > .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.refund-method-note p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.refund-method-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.refund-steps {
  display: grid;
  gap: 12px;
}

.refund-steps article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.refund-steps article > span {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.refund-steps h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.refund-steps p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.refund-boundary-section {
  padding: 72px 0;
}

.refund-boundary-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid rgba(241, 91, 100, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(110deg, var(--coral-pale), var(--white) 72%);
  box-shadow: var(--shadow-soft);
}

.refund-boundary-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--coral-dark);
  background: var(--white);
}

.refund-boundary-icon .icon {
  width: 29px;
  height: 29px;
}

.refund-boundary-copy .eyebrow {
  margin-bottom: 8px;
}

.refund-boundary-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.refund-boundary-copy p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.refund-boundary-copy p:last-child {
  margin-bottom: 0;
}

.refund-boundary-card .btn {
  white-space: nowrap;
}

.refund-final-cta {
  padding: 78px 0;
}

.refund-final-cta .section-head h2 {
  font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.refund-help-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 0.82rem;
}

.refund-help-link .icon {
  width: 17px;
  height: 17px;
}

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

  .refund-summary-card {
    min-height: 0;
  }

  .refund-process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .refund-boundary-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .refund-boundary-card .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .refund-page .refund-subhero {
    padding: 38px 0 34px;
  }

  .refund-hero-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .refund-hero-icon .icon {
    width: 26px;
    height: 26px;
  }

  .refund-page .refund-subhero h1 {
    font-size: 2.55rem;
  }

  .refund-subhero > .container > p {
    font-size: 0.88rem;
  }

  .refund-subhero .final-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 22px;
  }

  .refund-hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    text-align: left;
  }

  .refund-hero-proof span {
    align-items: flex-start;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .refund-hero-proof span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .refund-summary-section,
  .refund-process-section,
  .refund-boundary-section,
  .refund-final-cta {
    padding: 56px 0;
  }

  .refund-summary-section .section-head,
  .refund-final-cta .section-head {
    margin-bottom: 28px;
  }

  .refund-summary-section .section-head h2,
  .refund-process-copy h2,
  .refund-final-cta .section-head h2 {
    font-size: 2.25rem;
  }

  .refund-summary-card {
    padding: 24px;
  }

  .refund-card-icon {
    margin-bottom: 18px;
  }

  .refund-process-grid {
    gap: 28px;
  }

  .refund-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
  }

  .refund-steps article > span {
    width: 42px;
    height: 42px;
  }

  .refund-boundary-card {
    display: block;
    padding: 24px;
  }

  .refund-boundary-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .refund-boundary-copy h2 {
    font-size: 2rem;
  }

  .refund-boundary-card .btn {
    width: 100%;
    margin-top: 18px;
    white-space: normal;
  }

  .refund-final-cta .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .refund-help-link {
    justify-content: center;
  }
}
