/* ===========================================================
   Clynia · Landing pérdida de peso
   Mobile-first. Cálido, humano, premium. Movimiento sutil.
   =========================================================== */

:root {
  --green: #437066;
  --green-700: #365b52;
  --green-600: #3d655c;
  --green-900: #28433c;
  --green-tint: #e7efeb;
  --green-tint-2: #d6e4dd;
  --tint-soft: #eef3f0;

  --bg: #f6f4ef;
  --surface: #ffffff;
  --footer-bg: #efece4;
  --ink: #1c2421;
  --ink-soft: #586460;
  --ink-faint: #8a938f;
  --line: #e6e1d7;

  --radius-card: 26px;
  --radius-btn: 16px;
  --shadow-soft: 0 18px 40px -22px rgba(28, 36, 33, 0.45);
  --shadow-card: 0 30px 60px -30px rgba(28, 36, 33, 0.5);
  --maxw: 460px;
  --pad: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Raleway", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Tipografía compartida ---------- */
.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.lead {
  margin: 14px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Nav ---------- */
.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad) 8px;
  max-width: var(--maxw);
  margin-inline: auto;
}
.nav__brand img { height: 30px; width: auto; }
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 4px;
  transition: color 0.2s var(--ease);
}
.nav__link:hover { color: var(--green); }

/* ---------- Hero ---------- */
.hero { padding-top: 8px; padding-bottom: 14px; }

.hero__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0;
  box-shadow: var(--shadow-card);
  background: var(--green-tint);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 30, 27, 0.42) 0%, rgba(20, 30, 27, 0) 38%);
}
.hero__badge {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.5);
}
.hero__badge svg { width: 16px; height: 16px; color: var(--green); }

.hero__copy { padding-top: 24px; }
.hero__eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}
.hero__title {
  margin: 0 0 16px;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 8.4vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--green); }
.hero__sub {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 40ch;
}
.hero__assurance {
  margin: 14px 2px 0;
  font-size: 13.5px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.hero__assurance svg { width: 15px; height: 15px; color: var(--green); flex: none; }
.hero__pencaption {
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-faint);
  text-align: center;
  max-width: 46ch;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 16.5px;
  border-radius: var(--radius-btn);
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:focus-visible { outline: 3px solid var(--green-tint-2); outline-offset: 3px; }
.btn svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  width: 100%;
  padding: 17px 22px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--green-700); }
.btn--primary:active { transform: translateY(1px) scale(0.995); }

.btn--ghost {
  width: 100%;
  padding: 15px 22px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--ghost:hover { background: var(--green-tint); }

.btn--light {
  padding: 17px 30px;
  background: #fff;
  color: var(--green-700);
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.5);
}
.btn--light:hover { background: #f3f1ea; }

.btn--inline { width: auto; padding: 15px 28px; }

/* ---------- Franja de confianza ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  padding: 30px 0;
}
.trust__title {
  text-align: center;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 18px;
}
.trust__grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
}
.trust__item svg { width: 19px; height: 19px; color: var(--green); flex: none; }

/* ---------- Secciones base ---------- */
.section { padding: 56px 0; scroll-margin-top: 28px; }
.section--tint { background: var(--tint-soft); }
.section--green { background: var(--green); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; }
.section__cta { text-align: center; margin-top: 30px; }
.callout {
  margin: 26px auto 0;
  max-width: 600px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--green-tint);
  border-radius: 18px;
  padding: 17px 20px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.callout svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 1px; }
.callout strong { color: var(--ink); font-weight: 600; }

/* ---------- Reframe ---------- */
.reframe { padding: 18px 0 8px; }
.reframe__card {
  background: var(--green-tint);
  border-radius: var(--radius-card);
  padding: 38px 26px;
  text-align: center;
}
.reframe__title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(25px, 7vw, 33px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px;
}
.reframe__text { color: var(--ink-soft); font-size: 16px; margin: 0 auto 26px; max-width: 42ch; }

/* ---------- Cómo funciona ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
}
.step__title { font-size: 18px; font-weight: 600; margin: 16px 0 8px; color: var(--ink); }
.step__text { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ---------- Programa ---------- */
.program { display: grid; gap: 30px; }
.pillars { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
}
.pillar svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }
.program__note {
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--green-tint-2);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-faint);
}
.program__media { margin: 0; }
.program__media img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-inline: auto;
  max-width: 320px;
}

/* ---------- Tratamiento (imagen ilustrativa) ---------- */
.treatment { margin: 0; }
.treatment__card {
  max-width: 440px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.treatment__card img { width: 100%; height: auto; display: block; }
.treatment__cap {
  margin: 16px auto 0;
  max-width: 48ch;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-faint);
}

/* ---------- Síntomas ---------- */
.symptoms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin-inline: auto;
}
.symptoms__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--ink);
}
/* Selector más específico que .reveal-up para que gane la transición lenta y el hover */
.symptoms .symptoms__item {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), background-color 0.7s ease-in-out, border-color 0.7s ease-in-out, box-shadow 0.7s ease-in-out, color 0.7s ease-in-out;
}
.symptoms .symptoms__item:hover {
  transform: translateY(-3px);
  background: var(--green-tint);
  border-color: var(--green);
  box-shadow: 0 10px 34px -12px rgba(67, 112, 102, 0.4);
  color: var(--green-900);
}
.symptoms__item svg { width: 18px; height: 18px; color: var(--green); flex: none; }

/* ---------- Hero: marcador de foto pendiente ---------- */
.hero__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-tint), var(--green-tint-2));
}
.hero__media--placeholder::after { display: none; }
.hero__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  opacity: 0.8;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}
.hero__ph svg { width: 34px; height: 34px; }

/* ---------- Cifras de respaldo ---------- */
.stats { list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; text-align: center; }
.stat__num {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(36px, 11vw, 46px);
  line-height: 1;
  color: var(--green);
}
.stat__unit { font-size: 0.6em; }
.stat__label {
  display: block;
  margin: 10px auto 0;
  max-width: 28ch;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.stats__note { text-align: center; font-size: 12px; color: var(--ink-faint); margin: 26px 0 0; }

/* ---------- Planes ---------- */
.plans { display: grid; gap: 16px; }
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.plan--featured { border: 2px solid var(--green); box-shadow: var(--shadow-card); }
.plan__tag {
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.plan__name { font-size: 17px; font-weight: 600; margin: 0; color: var(--ink); }
.plan__price {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1;
  color: var(--ink);
  margin: 10px 0 2px;
}
.plan__cur { font-size: 22px; margin-left: 2px; }
.plan__meta { color: var(--ink-faint); font-size: 13px; margin: 0; }
.plan__list { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 11px; }
.plan__list li {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.plan__for { color: var(--ink-soft); font-size: 14px; margin: 2px 0 20px; }
.plan .btn { margin-top: auto; }

.plans__note {
  margin: 24px auto 0;
  max-width: 52ch;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-faint);
}

/* ---------- Equipo médico ---------- */
.team__photo { margin: 0; }
.team__photo img { width: 100%; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.quote { margin: 30px 0 0; text-align: center; }
.quote p {
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 5.5vw, 26px);
  line-height: 1.32;
  color: var(--ink);
  margin: 0;
}
.quote cite { display: block; margin-top: 16px; font-style: normal; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.quote__col { color: var(--ink-faint); font-weight: 400; }
.team__verify { margin: 20px auto 0; max-width: 46ch; text-align: center; font-size: 13px; color: var(--ink-faint); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline__item { position: relative; padding-left: 30px; padding-bottom: 28px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  bottom: -4px;
  width: 2px;
  background: var(--green-tint-2);
}
.timeline__item:last-child::after { display: none; }
.timeline__dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--tint-soft);
  z-index: 1;
}
.timeline__title { font-size: 17px; font-weight: 600; margin: 0 0 4px; color: var(--ink); }
.timeline__text { color: var(--ink-soft); font-size: 15px; margin: 0; }
.timeline__note {
  margin: 22px 0 0;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

/* ---------- Testimonios ---------- */
.testis { display: grid; gap: 16px; }
.testi {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 22px;
}
.testi blockquote {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}
.testi figcaption { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--green); }
.testis__note { text-align: center; font-size: 12px; color: var(--ink-faint); margin: 22px 0 0; }

/* ---------- Seguridad ---------- */
.safety { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.safety__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 40px 20px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 16px;
  font-size: 24px;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 40px 20px 0; }
.faq__body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.faq__item[open] .faq__body { animation: fade 0.28s var(--ease); }

/* ---------- Cierre ---------- */
.closing { background: var(--green); padding: 64px 0; text-align: center; }
.closing__title {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: clamp(27px, 7.4vw, 40px);
  line-height: 1.18;
  color: #fff;
  margin: 0;
}
.closing__sub { margin: 16px auto 28px; max-width: 46ch; color: rgba(255, 255, 255, 0.85); font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); padding: 44px 0 36px; }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer__logo { height: 26px; width: auto; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.footer__nav a { font-size: 14px; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.footer__nav a:hover { color: var(--green); }
.footer__legal { margin: 26px 0 0; font-size: 11.5px; line-height: 1.65; color: var(--ink-faint); text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
.footer__copy { margin: 16px 0 0; font-size: 12px; color: var(--ink-faint); }

/* ---------- Sticky CTA (móvil) ---------- */
.sticky-cta {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(130%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner { display: flex; flex-direction: column; gap: 4px; max-width: var(--maxw); margin-inline: auto; }
.sticky-cta__hint { text-align: center; font-size: 11.5px; color: var(--ink-soft); }
.sticky-cta .btn--primary { box-shadow: 0 10px 26px -12px rgba(54, 91, 82, 0.8); }

/* ===========================================================
   Movimiento
   =========================================================== */
.reveal { opacity: 0; transform: translateY(16px); animation: rise 0.7s var(--ease) forwards; }
.hero__media.reveal { transform: translateY(20px) scale(1.03); animation: riseMedia 1s var(--ease) forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.14s; }
.d3 { animation-delay: 0.23s; }
.d4 { animation-delay: 0.32s; }
.d5 { animation-delay: 0.42s; }

.reveal-up { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-up.is-in { opacity: 1; transform: none; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes riseMedia { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero__media.reveal { opacity: 1; transform: none; animation: none; }
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .sticky-cta { transition: none; }
  .cursor-glow { display: none; }
}

/* ---------- Rastro verde tras el cursor (sutil, solo puntero fino) ---------- */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(67, 112, 102, 0.1), rgba(67, 112, 102, 0));
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  will-change: transform;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ===========================================================
   Desktop (el móvil sigue siendo la prioridad)
   =========================================================== */
@media (min-width: 880px) {
  :root { --pad: 40px; }
  .nav { max-width: 1080px; padding-top: 28px; }
  .nav__brand img { height: 34px; }

  .wrap { max-width: 1080px; }

  .hero { padding-bottom: 8px; }
  .hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    padding-top: 24px;
  }
  .hero__media { aspect-ratio: 4 / 5; max-height: 580px; order: 2; }
  .hero__copy { padding-top: 0; order: 1; }
  .hero__title { font-size: clamp(40px, 4vw, 54px); }
  .hero__sub { font-size: 18px; }
  .hero__assurance { justify-content: flex-start; }
  .hero .btn--primary { width: auto; padding: 17px 34px; }
  .hero__pencaption { text-align: left; margin-left: 0; }

  .trust__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }

  .section { padding: 88px 0; }
  .h2 { font-size: clamp(32px, 3.4vw, 44px); }
  .section__head { margin-bottom: 48px; }

  .reframe__card { padding: 64px 56px; }
  .reframe__title { font-size: clamp(30px, 3.4vw, 42px); }

  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .program { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 52px; }
  .program__media { order: 2; }
  .program__copy { order: 1; }
  .program__media img { max-width: 360px; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stats--two { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin-inline: auto; }
  .symptoms { grid-template-columns: repeat(3, 1fr); }

  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan--featured { transform: translateY(-10px); }

  .safety { grid-template-columns: 1fr 1fr; gap: 16px; }

  .testis { grid-template-columns: repeat(3, 1fr); }

  .closing { padding: 88px 0; }

  .sticky-cta { display: none; }
}
