/* ==========================================================================
   HealthMe Recips — shared stylesheet
   Wd Negocios Digitais Ltda
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — pulled from the HealthMe Recips logo */
  --green-950: #062A17;
  --green-900: #0B3D24;
  --green-800: #10502F;
  --green-700: #15703E;
  --green-600: #1E9E4A;
  --green-500: #35B85E;
  --green-400: #62CE81;
  --lime-500: #7ED957;
  --lime-100: #E8F7DF;

  --orange-700: #D9541A;
  --orange-600: #F26B1D;
  --orange-500: #FF7A1A;
  --amber-500: #FFB020;
  --amber-100: #FFF0D6;

  /* Neutrals */
  --ink: #12211A;
  --ink-soft: #2C3E34;
  --muted: #5B6E62;
  --muted-light: #829688;
  --line: #E2EAE3;
  --line-strong: #CFDCD2;
  --cream: #FBFAF5;
  --sand: #F4F7F0;
  --white: #FFFFFF;

  /* Effects */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 61, 36, .06), 0 2px 6px rgba(11, 61, 36, .05);
  --shadow: 0 4px 10px rgba(11, 61, 36, .06), 0 14px 34px rgba(11, 61, 36, .08);
  --shadow-lg: 0 10px 24px rgba(11, 61, 36, .10), 0 30px 70px rgba(11, 61, 36, .14);
  --shadow-cta: 0 8px 18px rgba(242, 107, 29, .28), 0 18px 40px rgba(242, 107, 29, .22);

  --ff-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --ff-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1160px;
  --gutter: 22px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-600); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--green-950);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.75rem); }
h2 { font-size: clamp(1.72rem, 1.2rem + 2.1vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .55vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .5em; }

strong { color: var(--green-900); font-weight: 700; }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 2.5rem 0;
}

::selection { background: var(--lime-100); color: var(--green-950); }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding: clamp(56px, 7vw, 104px) 0; position: relative; }
.section--tight { padding: clamp(42px, 5vw, 72px) 0; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }

.section--dark {
  background:
    radial-gradient(900px 460px at 15% 0%, rgba(53, 184, 94, .20), transparent 62%),
    radial-gradient(800px 420px at 92% 100%, rgba(255, 122, 26, .16), transparent 60%),
    linear-gradient(168deg, var(--green-950) 0%, #08341C 55%, var(--green-900) 100%);
  color: #D6E6DB;
}
.section--dark h2,
.section--dark h3 { color: #FFFFFF; }
.section--dark a { color: var(--lime-500); }
/* the default <strong> green is unreadable on the dark ground */
.section--dark strong,
.page-hero strong,
.site-footer strong { color: #F0FAF3; }

.stack > * + * { margin-top: 1.1rem; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mw-720 { max-width: 720px; }
.mw-620 { max-width: 620px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   4. Common atoms
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--lime-100);
  border: 1px solid rgba(30, 158, 74, .22);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  margin-bottom: 18px;
}
.eyebrow svg { flex: none; }
.section--dark .eyebrow {
  color: #CFF3D6;
  background: rgba(126, 217, 87, .12);
  border-color: rgba(126, 217, 87, .28);
}

.lead {
  font-size: clamp(1.02rem, .97rem + .3vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
}
.section--dark .lead { color: rgba(224, 240, 229, .82); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head.text-center { margin-inline: auto; }

.fine {
  font-size: .84rem;
  line-height: 1.6;
  color: var(--muted);
}
.section--dark .fine { color: rgba(206, 226, 213, .68); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 17px 30px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease,
    border-color .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }

/* `.section--dark a` would otherwise win on specificity and tint the label green */
.btn--primary,
.section--dark a.btn--primary,
.page-hero a.btn--primary {
  background: linear-gradient(180deg, var(--orange-500) 0%, var(--orange-700) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover,
.section--dark a.btn--primary:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(242, 107, 29, .32), 0 24px 52px rgba(242, 107, 29, .26);
}

.btn--ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--line-strong);
}
.btn--ghost:hover { color: var(--green-900); border-color: var(--green-500); background: var(--lime-100); }

.section--dark .btn--ghost {
  color: #E6F4EA;
  border-color: rgba(214, 240, 222, .28);
}
.section--dark .btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(214, 240, 222, .5);
  color: #FFFFFF;
}

.btn--lg { font-size: 1.06rem; padding: 19px 30px; }
.btn--block { display: flex; width: 100%; }

.btn__price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  margin-left: 2px;
  border-left: 1px solid rgba(255, 255, 255, .38);
  font-weight: 800;
}

.cta-note {
  margin-top: 14px;
  font-size: .86rem;
  line-height: 1.5;
  color: var(--muted);
}
.section--dark .cta-note { color: rgba(206, 226, 213, .72); }
/* inline rather than flex, so the icon stays on the first line of wrapped text */
.cta-note svg { display: inline-block; vertical-align: -2px; margin-right: 7px; }

/* Cards ------------------------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 158, 74, .28);
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); font-size: .96rem; }

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(150deg, var(--lime-100), #D6F0DC);
  color: var(--green-700);
  border: 1px solid rgba(30, 158, 74, .18);
}
.icon-badge--warm {
  background: linear-gradient(150deg, var(--amber-100), #FFE1BC);
  color: var(--orange-700);
  border-color: rgba(242, 107, 29, .2);
}

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

/* Check list ------------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-size: 1rem;
  color: var(--ink-soft);
}
.checklist svg { flex: none; margin-top: 3px; color: var(--green-600); }
.section--dark .checklist li { color: rgba(226, 241, 231, .9); }
.section--dark .checklist svg { color: var(--lime-500); }

/* --------------------------------------------------------------------------
   5. Announcement bar + header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--green-950);
  color: #C9E6D3;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  min-height: 40px;
  padding-block: 9px;
  text-align: center;
}
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { color: var(--lime-500); flex: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
/* The logo mark is artwork drawn on black, so it is presented as an app-style tile. */
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  background: #000;
  border-radius: 13px;
  box-shadow: 0 2px 6px rgba(11, 61, 36, .18), inset 0 0 0 1px rgba(126, 217, 87, .28);
}
.brand__name {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--green-950);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.brand__name em { font-style: normal; color: var(--orange-600); }
.brand__sub {
  display: block;
  font-family: var(--ff-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-top: 2px;
}

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover { color: var(--green-900); }
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { flex: none; padding: 13px 24px; font-size: .95rem; }

/* Footer-page brand block on legal pages */
.page-hero {
  background:
    radial-gradient(700px 340px at 12% 0%, rgba(53, 184, 94, .18), transparent 60%),
    linear-gradient(170deg, var(--green-950), var(--green-900));
  color: #D9EADF;
  padding: clamp(48px, 6vw, 82px) 0 clamp(44px, 5vw, 68px);
}
.page-hero h1 { color: #FFFFFF; margin-bottom: .35em; }
.page-hero p { color: rgba(219, 236, 226, .8); max-width: 640px; }
.page-hero .breadcrumb {
  font-size: .84rem;
  color: rgba(206, 230, 214, .62);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(206, 230, 214, .8); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--lime-500); }
.page-hero .updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .82rem;
  color: #CFF3D6;
  background: rgba(126, 217, 87, .12);
  border: 1px solid rgba(126, 217, 87, .26);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 82% 8%, rgba(255, 176, 32, .14), transparent 60%),
    radial-gradient(680px 460px at 6% 22%, rgba(126, 217, 87, .18), transparent 62%),
    linear-gradient(180deg, #FDFEFB 0%, var(--sand) 100%);
  padding: clamp(46px, 6vw, 88px) 0 clamp(56px, 7vw, 100px);
}
.hero__blob {
  position: absolute;
  pointer-events: none;
  opacity: .5;
}
.hero__blob--a { top: -90px; right: -110px; width: 460px; }
.hero__blob--b { bottom: -140px; left: -130px; width: 420px; opacity: .35; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 62px);
  align-items: center;
}

.hero h1 { margin-bottom: .38em; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--orange-600), var(--amber-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { max-width: 560px; }

.hero__points {
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero__points li { display: flex; gap: 11px; align-items: flex-start; margin: 0; font-size: 1rem; }
.hero__points svg { flex: none; margin-top: 3px; color: var(--green-600); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__trust {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__trust svg { flex: none; color: var(--green-600); }

/* Device / mockup showcase */
.showcase { position: relative; }
.showcase__frame {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #FFFFFF, #EFF6EC);
  border: 1px solid rgba(30, 158, 74, .16);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 2;
}
.showcase__frame img { border-radius: 20px; width: 100%; }

.showcase__glow {
  position: absolute;
  inset: 8% -6% -10% -6%;
  background: radial-gradient(closest-side, rgba(53, 184, 94, .30), transparent 78%);
  filter: blur(28px);
  z-index: 1;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  backdrop-filter: blur(6px);
}
.float-card__icon {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--lime-100);
  color: var(--green-700);
  flex: none;
}
.float-card__icon--warm { background: var(--amber-100); color: var(--orange-700); }
.float-card__value {
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.1;
}
.float-card__label { font-size: .74rem; color: var(--muted); letter-spacing: .02em; }

.float-card--a { top: 8%; left: -22px; animation: floaty 6s ease-in-out infinite; }
.float-card--b { bottom: 12%; right: -18px; animation: floaty 6s ease-in-out infinite .9s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* --------------------------------------------------------------------------
   7. Trust strip
   -------------------------------------------------------------------------- */
.strip { border-block: 1px solid var(--line); background: var(--white); }
.strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-block: 26px;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 6px 18px;
  border-right: 1px solid var(--line);
}
.strip__item:last-child { border-right: 0; }
.strip__item svg { flex: none; color: var(--green-600); }
.strip__title { display: block; font-weight: 700; font-size: .95rem; color: var(--green-950); line-height: 1.25; }
.strip__desc { display: block; font-size: .82rem; color: var(--muted); line-height: 1.35; margin-top: 3px; }

/* --------------------------------------------------------------------------
   8. Split section (about)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4.5vw, 68px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(158deg, #F1F8EE, #E2F2E4);
  border: 1px solid rgba(30, 158, 74, .16);
  box-shadow: var(--shadow);
  padding: 26px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.stat__num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
}
.stat__label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   9. Chapter cards (what's inside)
   -------------------------------------------------------------------------- */
.chapter {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.chapter::after {
  content: "";
  position: absolute;
  inset: auto -40px -46px auto;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(126, 217, 87, .22), transparent);
  transition: transform .3s ease;
}
.chapter:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(30, 158, 74, .3); }
.chapter:hover::after { transform: scale(1.25); }
.chapter > * { position: relative; z-index: 1; }
.chapter h3 { margin-bottom: .3em; }
.chapter p { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }
.chapter__count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--green-800);
  background: var(--lime-100);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
}

/* --------------------------------------------------------------------------
   10. Recipe preview cards
   -------------------------------------------------------------------------- */
.recipe {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.recipe:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.recipe__art { background: linear-gradient(160deg, #EEF8EA, #DFF0E2); padding: 18px; }
.recipe__art svg { width: 100%; height: auto; }
.recipe__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.recipe__tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-700);
  background: var(--amber-100);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}
.recipe__body h3 { margin: 0; font-size: 1.16rem; }
.recipe__body p { font-size: .93rem; color: var(--muted); margin: 0; }
.recipe__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.recipe__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}
.recipe__meta svg { flex: none; color: var(--green-600); }

/* --------------------------------------------------------------------------
   11. Steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(126, 217, 87, .55) 0 10px, transparent 10px 20px);
}
.step { position: relative; text-align: center; padding-top: 0; }
.step__num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(160deg, var(--green-600), var(--green-800));
  box-shadow: 0 8px 20px rgba(21, 112, 62, .28);
  border: 4px solid var(--white);
  position: relative;
  z-index: 1;
}
.section--cream .step__num,
.section--sand .step__num { border-color: var(--cream); }
.step h3 { margin-bottom: .35em; }
.step p { color: var(--muted); font-size: .96rem; max-width: 320px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   12. Two-column honest expectations
   -------------------------------------------------------------------------- */
.panel {
  border-radius: var(--radius-lg);
  padding: 30px 30px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  height: 100%;
}
.panel--yes { border-color: rgba(30, 158, 74, .3); background: linear-gradient(180deg, #F5FCF3, #FFFFFF); }
.panel--no { border-color: rgba(242, 107, 29, .26); background: linear-gradient(180deg, #FFF8F1, #FFFFFF); }
.panel h3 { display: flex; align-items: center; gap: 10px; }
.panel ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.panel li { display: flex; gap: 11px; align-items: flex-start; margin: 0; font-size: .97rem; }
.panel li svg { flex: none; margin-top: 3px; }
.panel--yes li svg { color: var(--green-600); }
.panel--no li svg { color: var(--orange-600); }

/* --------------------------------------------------------------------------
   13. Pricing
   -------------------------------------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(30, 158, 74, .24);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card__top {
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  color: #DCEFE3;
  padding: 30px 32px 28px;
  text-align: center;
  position: relative;
}
.price-card__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-950);
  background: var(--lime-500);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 16px;
}
.price-card__amount {
  font-family: var(--ff-display);
  font-size: clamp(2.9rem, 2.2rem + 2.4vw, 4rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
}
.price-card__amount sup { font-size: .38em; margin-top: .55em; }
.price-card__cur { font-size: .9rem; letter-spacing: .16em; color: rgba(214, 239, 224, .78); display: block; margin-top: 10px; }
.price-card__body { padding: 30px 32px 34px; }
.price-card__body .checklist { margin-bottom: 26px; }
.price-card__foot {
  margin-top: 18px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.guarantee {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(126, 217, 87, .24);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-top: 26px;
}
.guarantee svg { flex: none; }
.guarantee h3 { margin-bottom: .3em; font-size: 1.12rem; }
.guarantee p { font-size: .93rem; margin: 0; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 14px; max-width: 860px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: rgba(30, 158, 74, .3); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 21px 58px 21px 24px;
  font-weight: 700;
  font-size: 1.01rem;
  color: var(--green-950);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -7px;
  border-right: 2.2px solid var(--green-600);
  border-bottom: 2.2px solid var(--green-600);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq summary:hover { color: var(--orange-700); }
.faq__answer { padding: 0 24px 23px; color: var(--muted); font-size: .97rem; }
.faq__answer p { margin-bottom: .8em; }

/* --------------------------------------------------------------------------
   15. Final CTA
   -------------------------------------------------------------------------- */
.final-cta { text-align: center; }
.final-cta .lead { max-width: 660px; margin-inline: auto; }
.final-cta .btn { margin-top: 30px; }

/* --------------------------------------------------------------------------
   16. Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-card .icon-badge { margin-bottom: 16px; }
.contact-card h3 { margin-bottom: .35em; font-size: 1.1rem; }
.contact-card p { color: var(--muted); font-size: .94rem; margin-bottom: .8em; }
.contact-card a.big {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-800);
  text-decoration: none;
  word-break: break-word;
}
.contact-card a.big:hover { color: var(--orange-600); text-decoration: underline; }

.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.info-box h3 { font-size: 1.05rem; margin-bottom: .4em; }
.info-box p { margin: 0; font-size: .95rem; color: var(--muted); }
.info-box--warm { border-left-color: var(--orange-500); }

address.company {
  font-style: normal;
  font-size: .97rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   17. Legal / long-form pages
   -------------------------------------------------------------------------- */
.legal {
  max-width: 820px;
  margin-inline: auto;
  font-size: 1rem;
}
.legal h2 {
  font-size: clamp(1.28rem, 1.1rem + .7vw, 1.6rem);
  margin-top: 2.4em;
  margin-bottom: .5em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
}
.legal > h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6em; margin-bottom: .4em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul, .legal ol { padding-left: 1.35em; }
.legal li { margin-bottom: .6em; }

.toc {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  margin-bottom: 44px;
}
.toc h2 {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 .6em !important;
  font-size: 1.05rem !important;
  font-family: var(--ff-body);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.toc ol { margin: 0; padding-left: 1.3em; columns: 2; column-gap: 34px; }
.toc li { margin-bottom: .45em; break-inside: avoid; }
.toc a { color: var(--green-800); text-decoration: none; font-weight: 600; font-size: .95rem; }
.toc a:hover { color: var(--orange-600); text-decoration: underline; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  margin: 1.4em 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.legal-table th, .legal-table td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-table th { background: var(--sand); font-weight: 700; color: var(--green-900); }
.legal-table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--green-950);
  color: rgba(206, 228, 214, .78);
  font-size: .93rem;
  padding: clamp(48px, 5vw, 72px) 0 34px;
}
.site-footer h4 {
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(178, 210, 189, .7);
  margin-bottom: 18px;
}
.site-footer a { color: rgba(215, 235, 222, .88); text-decoration: none; }
.site-footer a:hover { color: var(--lime-500); text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.footer__brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; text-decoration: none; }
.footer__brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: #000;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(126, 217, 87, .3);
}
.footer__brand .brand__name { color: #FFFFFF; }
.footer__brand .brand__sub { color: var(--lime-500); }
.footer__about { max-width: 400px; line-height: 1.7; color: rgba(198, 222, 207, .74); }

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__list li { margin: 0; }

.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; margin: 0; line-height: 1.55; }
.footer__contact svg { flex: none; margin-top: 3px; color: var(--green-400); }
/* address.company defaults to a dark ink colour — unreadable on the dark footer */
.site-footer address.company { color: rgba(214, 235, 222, .82); }

.footer__disclaimer {
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid rgba(126, 217, 87, .16);
  background: rgba(126, 217, 87, .05);
  border-radius: var(--radius);
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(190, 216, 199, .72);
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  color: rgba(178, 205, 187, .62);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* --------------------------------------------------------------------------
   19. Sticky mobile buy bar
   -------------------------------------------------------------------------- */
.buybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(11, 61, 36, .1);
}
.buybar__info { line-height: 1.25; }
.buybar__price { font-family: var(--ff-display); font-size: 1.22rem; font-weight: 600; color: var(--green-950); }
.buybar__note { font-size: .72rem; color: var(--muted); }
.buybar .btn { margin-left: auto; padding: 14px 24px; font-size: .95rem; }

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__lead { max-width: none; }
  .showcase { max-width: 620px; margin-inline: auto; width: 100%; }
  .float-card--a { left: 0; }
  .float-card--b { right: 0; }

  .split, .pricing { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .pricing__copy { order: 2; }

  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip .container { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .strip__item:nth-child(2n) { border-right: 0; }
  .site-nav { display: none; }
}

@media (max-width: 860px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .toc ol { columns: 1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --gutter: 18px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .strip .container { grid-template-columns: 1fr; }
  .strip__item { border-right: 0; padding-inline: 0; }
  .stat-row { grid-template-columns: 1fr; }

  .hero { padding-bottom: 46px; }
  .hero__actions .btn { width: 100%; }
  .float-card { padding: 10px 13px; }
  .float-card--a { top: 4%; left: -6px; }
  .float-card--b { bottom: 6%; right: -6px; }
  .float-card__value { font-size: .92rem; }

  .card, .chapter, .panel, .contact-card { padding: 24px 22px; }
  .price-card__top, .price-card__body { padding-inline: 24px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .buybar { display: flex; }
  body { padding-bottom: 78px; }
  html { scroll-padding-top: 80px; }
}

/* --------------------------------------------------------------------------
   21. Motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .site-header, .topbar, .buybar, .btn, .site-footer .footer__bottom { display: none !important; }
  body { color: #000; background: #fff; }
  .section--dark { background: #fff !important; color: #000 !important; }
}
