/* ============================================================
   Bondi Pets — Home styles (extraído del inline de index.html)
   Consume css/tokens.css. Variables locales = pendientes de
   sustituir en Fase 2 (rediseño): coral/navy/highlight/ink-soft.
   ============================================================ */
/* ============================================================
   Variables locales de la home — heredan paleta, tipografía,
   radios y layout de css/tokens.css. Aquí quedan SOLO las que
   tokens.css no define todavía (acento coral, navy del footer,
   highlight amarillo, escalas de ink y la curva de easing).
   La Fase 2 (rediseño a verde bosque) las retira.
   ============================================================ */
:root {
  --coral:        #FF7A2E;
  --coral-deep:   #E8651C;
  --coral-soft:   #FFB68A;
  --cream-3:      #E8DEC4;
  --highlight:    #FFE066;
  --ink-soft:     rgba(26,26,26,0.72);
  --ink-mute:     rgba(26,26,26,0.55);
  --ink-line:     rgba(26,26,26,0.14);
  --ink-line-soft:rgba(26,26,26,0.08);
  --navy:         #1A237E;
  --ease:         cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--highlight); color: var(--ink); }
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Type scale — display (Caprasimo, solo 400) para hero y momentos
   de marca; body (Lato) para el resto. Títulos funcionales en
   Lato Bold/Black, no en Caprasimo.
   ============================================================ */
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 0;
}
.body-lg { font-size: 18px; line-height: 1.6; }
.body { font-size: 17px; line-height: 1.6; }
.body-sm { font-size: 15px; line-height: 1.55; }
.italic { font-style: italic; }
.eyebrow {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
/* Highlight underline — goes under whole phrase, never cuts */
.hl {
  background-image: linear-gradient(transparent 60%, var(--highlight) 60%, var(--highlight) 92%, transparent 92%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  padding: 0 0.05em;
  transition: background-size 900ms var(--ease) 200ms;
}
.in-view .hl { background-size: 100% 100%; }
/* Navy keyword in body copy */
.kw {
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 0 -2px rgba(232,101,28,0.35), 0 10px 24px -8px rgba(232,101,28,0.5);
}
.btn-coral:hover {
  background: var(--coral-deep);
  transform: scale(1.02);
}
.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover {
  transform: scale(1.02);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn .arrow { transition: transform 240ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--ink-line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-right: auto;
  margin-left: 8px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  padding: 8px 0;
  position: relative;
  transition: color 200ms;
}
.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px 0;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.lang {
  display: inline-flex;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  color: var(--ink-soft);
}
.lang button {
  padding: 4px 6px;
  color: var(--ink-mute);
  font-weight: 700;
  transition: color 200ms;
}
.lang button.active { color: var(--ink); }
.lang .sep { color: var(--ink-line); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--cream);
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle texture noise */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,26,0.04) 1px, transparent 1px);
  background-size: 6px 6px;
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy { max-width: 540px; }
.hero h1 {
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 460px;
}
.hero-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero-select-wrap {
  position: relative;
  display: inline-block;
  border-radius: var(--r-pill);
  /* yellow halo */
  box-shadow: 0 0 0 4px var(--highlight);
}
.hero-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 14px 48px 14px 22px;
  font-size: 15px;
  font-weight: 700;
  min-width: 280px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%231A1A1A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
}
.hero-select:focus { outline: none; }

.hero-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 30px 60px -30px rgba(26,26,26,0.3);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Stats
   ============================================================ */
.stats {
  padding: 96px 0 80px;
  background: var(--cream);
  border-top: 1px solid var(--ink-line-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat {
  text-align: left;
}
.stat-num {
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.stat-num .pct { font-size: 0.5em; font-weight: 900; margin-top: 0.2em; }
.stat-num .emoji { font-size: 0.5em; margin-top: 0.25em; }
.stat-label {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 700;
  margin-top: 12px;
  max-width: 320px;
}
.stats-disclaimer {
  margin-top: 36px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-mute);
}

/* ============================================================
   Como funciona (3 steps)
   ============================================================ */
.how {
  padding: 96px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--ink-line-soft);
  border-bottom: 1px solid var(--ink-line-soft);
}
.how-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.how-head .h2 { margin-bottom: 14px; }
.how-head .body-lg { color: var(--ink-soft); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(26,26,26,0.18);
}
.how-num {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 24px;
  display: inline-block;
}
.how-card .h3 { margin-bottom: 12px; }
.how-card p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }

/* ============================================================
   Beneficios — doypack flanked by 2x4 columns
   ============================================================ */
.benefits {
  padding: 110px 0;
  background: var(--cream);
}
.benefits-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 64px;
}
.benefits-head .h2 { margin-bottom: 18px; }
.benefits-head p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.benefit-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-pill {
  background: var(--coral);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 16px -8px rgba(232,101,28,0.35);
  transition: transform 280ms var(--ease);
}
.benefit-pill:hover { transform: translateY(-2px); }
.benefit-doypack {
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-doypack img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 30px 40px rgba(26,26,26,0.15));
  transition: transform 600ms var(--ease);
}
.benefit-doypack:hover img { transform: rotate(-1.5deg) translateY(-6px); }

/* ============================================================
   Ingredientes — 13 activos
   ============================================================ */
.ingredients {
  padding: 110px 0;
  background: var(--cream);
  border-top: 1px solid var(--ink-line-soft);
}
.ing-head {
  text-align: center;
  margin-bottom: 36px;
}
.ing-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 56px;
  max-width: 980px;
}
.ing-chip {
  border: 1.5px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--cream);
  position: relative;
}
.ing-chip::before {
  content: "";
  position: absolute;
  inset: 4px -2px;
  background: var(--highlight);
  border-radius: var(--r-pill);
  z-index: -1;
  transform: translate(2px, 3px);
  opacity: 0.85;
}
.ing-chip { isolation: isolate; }

.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ing-card {
  background: var(--cream-2);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.ing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26,26,26,0.2);
}
.ing-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  font-size: 40px;
}
.ing-img.pl-tx::before {
  content: "";
  width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6) 0 1.5px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(26,26,26,0.15) 0 2px, transparent 3px);
  background-size: 12px 12px, 16px 16px;
}
.ing-name {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--coral);
  color: #fff;
  padding: 9px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  line-height: 1.25;
  text-align: center;
}
.ing-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  font-style: italic;
}
/* Card variant: matrix articular */
.ing-card.matrix {
  background: var(--cream-3);
  align-items: stretch;
  text-align: center;
}
.ing-card.matrix .matrix-title {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ing-card.matrix .matrix-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.ing-card.matrix .matrix-list .ing-name { margin-bottom: 0; }
/* Final CTA card */
.ing-card.cta-card {
  background: var(--ink);
  color: var(--cream);
  align-items: center;
  justify-content: center;
}
.ing-card.cta-card .cta-text {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 16px;
}
.ing-card.cta-card .arrow {
  width: 38px; height: 38px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 240ms, color 240ms;
}
.ing-card.cta-card:hover .arrow {
  background: var(--cream);
  color: var(--ink);
}

/* ============================================================
   Comparativa
   ============================================================ */
.compare {
  padding: 110px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--ink-line-soft);
  border-bottom: 1px solid var(--ink-line-soft);
  position: relative;
}
.compare::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(to right, transparent, var(--cream));
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 769px) {
  .compare::after { display: none; }
}
.compare-head { text-align: center; margin-bottom: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
.compare-head p { color: var(--ink-soft); font-size: 18px; margin: 14px 0 0; }
.compare-table {
  max-width: 940px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ink-line-soft);
}
.compare-row:last-child { border-bottom: 0; }
.compare-cell {
  padding: 22px 20px;
  font-size: 15.5px;
  text-align: center;
}
.compare-cell.label {
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.compare-cell.brand-col {
  position: relative;
  font-weight: 900;
  background: rgba(255,122,46,0.08);
  border-left: 1.5px solid var(--coral);
  border-right: 1.5px solid var(--coral);
}
.compare-row.head .compare-cell {
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 24px 20px;
  background: var(--ink);
  color: var(--cream);
}
.compare-row.head .brand-col {
  background: var(--coral);
  color: #fff;
  border: 0;
}
.compare-row.head .compare-cell.label { background: var(--ink); }
.check {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.cross {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(26,26,26,0.08);
  color: var(--ink-mute);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.partial {
  display: inline-block;
  font-weight: 700;
  color: var(--ink-mute);
  font-size: 14px;
  font-style: italic;
}

/* ============================================================
   Testimonios
   ============================================================ */
.testimonials {
  padding: 110px 0;
  background: var(--cream);
}
.test-head { text-align: center; margin-bottom: 56px; }
.test-head .h2 { margin-bottom: 16px; }
.test-head p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.test-card {
  background: var(--cream);
  border: 1.5px solid var(--highlight);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(26,26,26,0.15);
}
.test-stars {
  color: #F2A93B;
  font-size: 16px;
  letter-spacing: 2px;
}
.test-quote-title {
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
  line-height: 1.3;
}
.test-quote {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ink-line-soft);
}
.test-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex: none;
  overflow: hidden;
}
.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.test-meta {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}
.test-meta strong { font-weight: 900; font-size: 14px; }
.test-meta span { color: var(--ink-mute); }

.test-cta { text-align: center; }
.test-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin: 24px auto 0;
  max-width: 600px;
}

/* ============================================================
   Hecho por amantes (coral block)
   ============================================================ */
.made-by {
  padding: 100px 0;
  background: var(--cream);
}
.made-by .h2 { text-align: center; margin-bottom: 48px; }
.made-block {
  background: var(--coral);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 56px clamp(32px, 6vw, 80px);
  max-width: 1080px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
}
.made-block p { margin: 0 0 18px; }
.made-block p:last-child { margin-bottom: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 110px 0;
  background: var(--cream);
  border-top: 1px solid var(--ink-line-soft);
}
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .h2 { margin-bottom: 12px; }
.faq-head .sub {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 15px;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--ink-line);
}
.faq-item {
  border-bottom: 1px solid var(--ink-line);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  gap: 16px;
  align-items: center;
  padding: 26px 8px;
  text-align: left;
  transition: background 200ms;
}
.faq-q:hover { background: rgba(26,26,26,0.025); }
.faq-num {
  font-weight: 900;
  font-size: 18px;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink-mute);
  letter-spacing: 0;
}
.faq-text {
  font-weight: 900;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.3;
  color: var(--ink);
}
.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 380ms var(--ease), background 240ms;
  font-size: 18px;
  font-weight: 700;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease);
}
.faq-item.open .faq-a { max-height: 360px; }
.faq-a-inner {
  padding: 0 8px 28px 76px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* ============================================================
   CTA final + Footer
   ============================================================ */
.cta-final {
  background: var(--coral);
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.cta-final .h2 { color: #fff; margin-bottom: 16px; }
.cta-final p {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.9;
  line-height: 1.55;
}
.cta-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 22px;
  max-width: 480px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink);
}
.cta-form input::placeholder { color: var(--ink-mute); }
.cta-form button {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 240ms;
}
.cta-form button:hover { background: #000; }

.footer {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14.5px; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  transition: color 200ms;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms var(--ease);
  z-index: 100;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,0.4);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { max-width: 560px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefit-doypack { order: -1; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; }
  .hero { padding: 48px 0 64px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-num { font-size: 64px; }
  .compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    position: relative;
  }
  .compare-row { min-width: 560px; }
  .compare-cell { padding: 14px 8px; font-size: 13.5px; }
  .compare-cell.label { font-size: 13px; }
  .made-block { padding: 36px 24px; font-size: 15.5px; }
  .faq-q { grid-template-columns: 36px 1fr 38px; }
  .faq-a-inner { padding-left: 56px; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hl { background-size: 100% 100%; transition: none; }
  * { animation: none !important; }
}
