/* ==========================================================================
   Alivem Life — static rebuild of the v2 React landing page
   ========================================================================== */

:root {
  --v2-green: hsl(142, 76%, 65%);
  --v2-green-dark: hsl(162, 53%, 20%);
  --v2-text: hsl(0, 0%, 15%);
  --v2-text-light: hsl(0, 0%, 45%);
  --v2-cream: hsl(40, 33%, 96%);

  --off-white: #fafaf8;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;

  --amber-50: #fffbeb;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--v2-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.icon { width: 1em; height: 1em; }
.icon[hidden] { display: none; }

/* ---------------------------------- Shared section bits ---------------------------------- */

.eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--v2-text-light);
  margin-bottom: 0.75rem;
}
.eyebrow--center { text-align: center; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-kicker--center { display: flex; justify-content: center; }
.section-kicker__line { width: 1.5rem; height: 1px; background: var(--emerald-600); }
.section-kicker--amber { color: var(--amber-600); letter-spacing: 0.15em; font-weight: 600; }

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin: 0 0 1rem;
}
.section-title--center { text-align: center; }
.section-title--light { font-weight: 300; }

@media (min-width: 768px) {
  .section-title { font-size: 2.5rem; }
}

/* ---------------------------------- Buttons ---------------------------------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--v2-green-dark);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 25px -5px rgb(6 78 59 / 0.3);
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary--block { width: 100%; }
.btn-pulse { animation: pulse-scale 2s ease-in-out infinite; }

.btn-cta {
  display: inline-flex;
  background: var(--v2-green-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}
.btn-cta:hover { opacity: 0.9; }

.btn-checkout { cursor: pointer; }

.icon-btn {
  background: none;
  border: none;
  color: var(--v2-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
}
.icon-btn .icon { width: 1.375rem; height: 1.375rem; }

/* ---------------------------------- Marquee ---------------------------------- */

.marquee-strip {
  overflow: hidden;
  background: var(--v2-green-dark);
  padding: 0.625rem 0;
}
.marquee-strip--hero { padding: 0.5rem 0; }

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-item {
  margin: 0 1.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ---------------------------------- Urgency banner ---------------------------------- */

.urgency-banner {
  background: linear-gradient(to right, var(--emerald-700), var(--v2-green-dark), var(--emerald-700));
  color: #fff;
}
.urgency-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.625rem 1rem;
  font-size: 0.8rem;
}
.urgency-banner__tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
}
.urgency-banner__tag .icon { color: #fcd34d; }
.urgency-banner__text { opacity: 0.9; }
.urgency-banner__timer {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .urgency-banner__inner { font-size: 0.875rem; }
}

/* ---------------------------------- Header ---------------------------------- */

.header-main {
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-logo img { height: 2rem; width: auto; }

.header-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--v2-text);
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--v2-green-dark); }
.header-nav__cta-mobile { display: none; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions__cta { display: none; }
.header-actions__cart { display: none; }
.header-actions__menu { display: inline-flex; }

@media (min-width: 768px) {
  .header-logo img { height: 2.5rem; }
  .header-nav { display: flex; }
  .header-actions__cta { display: inline-flex; }
  .header-actions__cart { display: inline-flex; }
  .header-actions__menu { display: none; }
}

.header-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 49;
}
.header-nav.is-open a { padding: 0.5rem 0; font-size: 1rem; width: 100%; }
.header-nav.is-open .header-nav__cta-mobile {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .header-nav.is-open { display: flex; flex-direction: row; position: static; border: none; padding: 0; }
}

/* ---------------------------------- Hero ---------------------------------- */

.hero { background: var(--off-white); position: relative; overflow: hidden; }

.hero__bg { background-size: cover; background-position: center; position: relative; width: 100%; }
.hero__bg--desktop { display: none; align-items: center; min-height: 520px; aspect-ratio: 1664 / 936; }
.hero__bg--mobile { display: block; min-height: 680px; aspect-ratio: 941 / 1729; background-position: center top; }

@media (min-width: 768px) {
  .hero__bg--desktop { display: flex; }
  .hero__bg--mobile { display: none; }
}

.hero__inner { display: grid; grid-template-columns: 1fr 1fr; width: 100%; position: relative; z-index: 10; }

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 0;
  animation: v2-fade-in 0.6s ease-out forwards;
}

.hero__content--mobile {
  padding: 1.5rem 1rem 2rem;
  gap: 1.25rem;
  position: relative;
  z-index: 10;
}

.hero__kicker { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__kicker-line { width: 2rem; height: 1px; background: var(--emerald-600); }
.hero__kicker span:last-child {
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero__title mark {
  background: var(--v2-green-dark);
  color: #fff;
  padding: 0.125rem 0.5rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__title--mobile { font-size: 1.875rem; line-height: 1.2; }

@media (min-width: 1024px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1280px) { .hero__title { font-size: 3.75rem; } }

.hero__desc { color: var(--gray-700); font-size: 1rem; line-height: 1.6; max-width: 32rem; margin: 0; }
.hero__desc--mobile { max-width: 85%; color: var(--gray-800); }

@media (min-width: 1024px) { .hero__desc { font-size: 1.125rem; } }

.hero .btn-primary { width: fit-content; }
.hero .btn-primary--block { width: 100%; }

/* ---------------------------------- Social proof ---------------------------------- */

.social-proof {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.social-proof__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.social-proof__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--emerald-50);
  color: var(--emerald-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-proof__icon .icon { width: 1.25rem; height: 1.25rem; }
.social-proof__label { font-weight: 700; color: var(--gray-900); font-size: 0.875rem; margin: 0; line-height: 1.2; }
.social-proof__sub { color: var(--gray-500); font-size: 0.75rem; margin: 0; }

@media (min-width: 768px) {
  .social-proof { padding: 2rem 0; }
  .social-proof__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .social-proof__item { justify-content: flex-start; }
  .social-proof__label { font-size: 1rem; }
}

/* ---------------------------------- Testimonials ---------------------------------- */

.testimonials { padding: 4rem 0; background: #fff; }

.testimonials__grid { display: grid; gap: 2rem; }

.testimonials__intro { text-align: center; }
.testimonials__stars { display: flex; align-items: center; justify-content: center; gap: 0.25rem; margin-bottom: 1rem; }
.testimonials__stars .star { width: 0.875rem; height: 0.875rem; color: var(--v2-green); }
.testimonials__count { color: var(--v2-text-light); font-size: 0.75rem; margin-left: 0.5rem; }
.testimonials__title { font-size: 1.5rem; font-weight: 300; color: var(--v2-text); line-height: 1.25; margin: 0; }

.testimonials__list { display: grid; grid-template-columns: 1fr; gap: 0.5rem; }

.t-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
  background: var(--gray-100);
}
.t-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.t-card__badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  color: rgb(255 255 255 / 0.8);
  font-size: 0.625rem;
}
.t-card__gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4rem;
  background: linear-gradient(to top, rgb(0 0 0 / 0.3), transparent);
}
.t-card__title { color: var(--v2-text-light); font-size: 0.75rem; margin: 0 0 0.25rem; }
.t-card__rule { width: 1.5rem; height: 2px; background: rgb(38 38 38 / 0.2); margin-bottom: 0.375rem; }
.t-card__quote {
  color: var(--v2-text);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0 0 0.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-card__name { color: var(--v2-text-light); font-size: 0.625rem; margin: 0; }

@media (min-width: 768px) {
  .testimonials__list { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .t-card__quote { -webkit-line-clamp: 4; font-size: 0.875rem; }
  .t-card__title { font-size: 0.875rem; }
  .t-card__name { font-size: 0.75rem; }
}

@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
  .testimonials__intro { position: sticky; top: 8rem; text-align: left; }
  .testimonials__stars { justify-content: flex-start; }
}

/* ---------------------------------- How it works ---------------------------------- */

.how-it-works { padding: 5rem 0; background: var(--off-white); }
.how-it-works__inner { max-width: 64rem; margin: 0 auto; }
.how-it-works__grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
.how-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
}
.how-card__icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: var(--emerald-50);
  color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.how-card__icon .icon { width: 1.75rem; height: 1.75rem; }
.how-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.5rem; }
.how-card p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; margin: 0; }

@media (min-width: 768px) { .how-it-works__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------- Science timeline ---------------------------------- */

.science-timeline { padding: 4rem 0; background: var(--off-white); }
.science-timeline__header { max-width: 48rem; margin: 0 auto 2.5rem; text-align: center; }
.science-timeline__lead { color: var(--gray-600); font-size: 1rem; line-height: 1.6; margin: 0; padding: 0 0.5rem; }

.science-timeline__badge-wrap { display: flex; justify-content: center; margin-bottom: 2rem; }
.science-timeline__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  border: 1px solid var(--gray-100);
  color: var(--gray-900);
  font-weight: 500;
  font-size: 0.875rem;
}
.science-timeline__badge .icon { color: var(--emerald-600); }

.science-timeline__bar { display: none; position: relative; max-width: 64rem; margin: 0 auto 2rem; }
.science-timeline__bar-fill,
.science-timeline__bar {
  height: 0.5rem;
  border-radius: 999px;
}
.science-timeline__bar { background: var(--gray-200); }
.science-timeline__bar-fill { background: linear-gradient(to right, var(--emerald-300), var(--emerald-500), var(--emerald-600)); width: 100%; }
.science-timeline__dots { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; }
.science-timeline__dots .dot { width: 1rem; height: 1rem; background: var(--emerald-600); border-radius: 999px; border: 4px solid #fff; box-shadow: 0 2px 4px rgb(0 0 0 / 0.15); }

.science-timeline__grid { max-width: 64rem; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

.timeline-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.timeline-card__days { color: var(--emerald-600); font-size: 0.75rem; font-weight: 600; }
.timeline-card__icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.timeline-card__icon .icon { width: 1rem; height: 1rem; }
.timeline-card__icon--1 { background: var(--emerald-100); color: var(--emerald-600); }
.timeline-card__icon--2 { background: var(--emerald-200); color: var(--emerald-700); }
.timeline-card__icon--3 { background: var(--emerald-300); color: var(--emerald-800); }
.timeline-card__icon--4 { background: var(--emerald-400); color: var(--emerald-900); }
.timeline-card__progress { height: 0.25rem; background: var(--gray-100); border-radius: 999px; overflow: hidden; margin-bottom: 0.75rem; }
.timeline-card__progress span { display: block; height: 100%; background: var(--emerald-500); border-radius: 999px; }
.timeline-card h3 { color: var(--gray-900); font-weight: 500; font-size: 0.875rem; margin: 0 0 0.375rem; }
.timeline-card p { color: var(--gray-500); font-size: 0.75rem; line-height: 1.5; margin: 0; }

.science-timeline__quote { max-width: 42rem; margin: 2rem auto 0; text-align: center; padding: 0 1rem; }
.science-timeline__quote p { color: var(--gray-600); font-size: 1rem; font-style: italic; line-height: 1.6; margin: 0; }

@media (min-width: 768px) {
  .science-timeline { padding: 5rem 0; }
  .science-timeline__grid { gap: 1rem; }
  .timeline-card { padding: 1.5rem; border-radius: 1rem; }
  .timeline-card__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; }
  .timeline-card__icon .icon { width: 1.25rem; height: 1.25rem; }
  .timeline-card h3 { font-size: 1rem; }
  .timeline-card p { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
  .science-timeline__grid { grid-template-columns: repeat(4, 1fr); }
  .science-timeline__bar { display: block; }
  .timeline-card__progress { display: none; }
}

/* ---------------------------------- Lifestyle ---------------------------------- */

.lifestyle { padding: 4rem 0; background: var(--v2-cream); }
.lifestyle__grid { display: grid; gap: 2.5rem; align-items: center; }
.lifestyle__symptoms { display: flex; flex-direction: column; gap: 0.75rem; margin: 2rem 0 1.5rem; }

.symptom-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.symptom-check input { display: none; }
.symptom-check__box {
  margin-top: 0.125rem;
  width: 1.25rem; height: 1.25rem;
  border-radius: 0.25rem;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.symptom-check__box svg { width: 0.75rem; height: 0.75rem; color: #fff; opacity: 0; }
.symptom-check input:checked + .symptom-check__box { background: var(--v2-green-dark); border-color: var(--v2-green-dark); }
.symptom-check input:checked + .symptom-check__box svg { opacity: 1; }
.symptom-check label {
  font-size: 0.9375rem;
  color: var(--v2-text);
  cursor: pointer;
  line-height: 1.4;
}
.symptom-check input:checked ~ label { color: var(--v2-green-dark); font-weight: 500; }

.lifestyle__callout {
  background: var(--amber-50);
  border: 1px solid var(--amber-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.lifestyle__callout p { margin: 0; font-size: 1rem; color: var(--v2-text); }
.lifestyle__callout span { font-weight: 600; color: var(--amber-700); }

.lifestyle .btn-primary--block-mobile { width: 100%; }

.lifestyle__images { display: none; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.lifestyle__col { display: flex; flex-direction: column; gap: 0.75rem; }
.lifestyle__col--offset { padding-top: 2rem; }
.lifestyle__img { aspect-ratio: 4 / 5; border-radius: 1rem; overflow: hidden; }
.lifestyle__img img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
  .lifestyle__images { display: grid; }
  .lifestyle .btn-primary--block-mobile { width: auto; }
}

@media (min-width: 1024px) {
  .lifestyle__grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle__content { padding-right: 2rem; }
}

/* ---------------------------------- Ingredients (big section) ---------------------------------- */

.ingredients { padding: 5rem 0; background: var(--off-white); }
.ingredients__block { margin-bottom: 5rem; }
.ingredients__block-header { text-align: center; margin-bottom: 2rem; }
.ingredients__lead { color: var(--gray-600); font-size: 1.125rem; max-width: 42rem; margin: 0 auto 1rem; text-align: center; }
.ingredients__lead--strong { color: var(--gray-800); font-weight: 500; }

.symptom-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 64rem; margin: 0 auto 2.5rem; }
.symptom-grid__item {
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border-radius: 0.75rem; padding: 1rem;
  border: 1px solid var(--gray-100);
}
.symptom-grid__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--amber-50); color: var(--amber-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.symptom-grid__icon .icon { width: 1.25rem; height: 1.25rem; }
.symptom-grid__item span { color: var(--gray-700); font-weight: 500; font-size: 0.875rem; }

.ingredients__cta-line { text-align: center; }
.ingredients__cta-line p {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: 999px;
  padding: 1rem 2rem;
  margin: 0;
}
.ingredients__cta-line strong { color: var(--emerald-600); }

.conditions-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 72rem; margin: 0 auto; }
.condition-card {
  background: #fff; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--gray-100); cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.condition-card.is-checked { border-color: var(--amber-500); box-shadow: 0 4px 10px rgb(0 0 0 / 0.08); }
.condition-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--gray-100); }
.condition-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.condition-card:hover .condition-card__img img { transform: scale(1.05); }
.condition-card__body { padding: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.condition-card__body span { font-weight: 600; font-size: 0.875rem; color: var(--gray-800); }
.condition-card.is-checked .condition-card__body span { color: var(--amber-700); }

.ingredients__results {
  margin: 0 -1.5rem 5rem;
  padding: 4rem 1.5rem;
  background: #fff;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.ingredients__results-text h2 { text-align: left; }
.ingredients__results-img { display: flex; justify-content: center; }
.ingredients__results-img img { max-width: 28rem; }

.ingredients__tech { text-align: center; margin-bottom: 5rem; }
.ingredients__tech .section-title { max-width: 56rem; margin-left: auto; margin-right: auto; }
.tech-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 3rem auto 0; }
.tech-card {
  background: #fff; border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--gray-100); position: relative; text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tech-card:hover { border-color: var(--emerald-200); box-shadow: 0 10px 20px -8px rgb(0 0 0 / 0.1); }
.tech-card__icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--emerald-50); color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.tech-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.5rem; }
.tech-card p { color: var(--gray-600); font-size: 0.875rem; margin: 0; }

.ingredients__media { text-align: center; }
.media-embed { max-width: 48rem; margin: 0 auto; }
.media-embed__link {
  position: relative; display: block; aspect-ratio: 16 / 9;
  border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15);
}
.media-embed__link img { width: 100%; height: 100%; object-fit: cover; }
.media-embed__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgb(0 0 0 / 0.2); transition: background 0.2s ease;
}
.media-embed__link:hover .media-embed__play { background: rgb(0 0 0 / 0.3); }
.media-embed__play .icon {
  width: 5rem; height: 5rem; background: #dc2626; color: #fff;
  border-radius: 999px; padding: 1.5rem; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  transition: transform 0.2s ease;
}
.media-embed__link:hover .media-embed__play .icon { transform: scale(1.1); }

.ingredients__nutrients-header { text-align: center; margin-bottom: 3rem; }
.ingredients__pill {
  display: inline-block;
  background: var(--emerald-100); color: var(--emerald-700);
  padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 500;
}

.ingredients-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.ingredient-card {
  background: #fff; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.3s ease;
}
.ingredient-card:hover { box-shadow: 0 10px 20px -8px rgb(0 0 0 / 0.12); }
.ingredient-card__img { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--gray-50); }
.ingredient-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ingredient-card:hover .ingredient-card__img img { transform: scale(1.05); }
.ingredient-card__num {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--emerald-600); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.625rem; border-radius: 999px;
}
.ingredient-card__body { padding: 1rem; }
.ingredient-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 0 0 0.5rem; }
.ingredient-card__body p {
  color: var(--gray-600); font-size: 0.75rem; line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

.nutrition-table { margin-top: 5rem; text-align: center; }
.nutrition-table h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2rem; }
.nutrition-table img { max-width: 48rem; margin: 0 auto; border-radius: 0.75rem; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15); }

@media (min-width: 640px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } .ingredients-grid { grid-template-columns: repeat(2, 1fr); } .conditions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
  .ingredients { padding: 7rem 0; }
  .ingredients__results { margin-left: -2rem; margin-right: -2rem; padding-left: 2rem; padding-right: 2rem; grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .symptom-grid { grid-template-columns: repeat(4, 1fr); }
  .conditions-grid { grid-template-columns: repeat(4, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(5, 1fr); }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------- Comparison table ---------------------------------- */

.comparison { padding: 5rem 0; background: #fff; }
.comparison__inner { max-width: 56rem; margin: 0 auto; }
.comparison__header { text-align: center; margin-bottom: 2.5rem; }
.comparison__sub { color: var(--gray-500); margin: 0; }
.comparison__table-wrap { overflow: hidden; border-radius: 1rem; border: 1px solid var(--gray-100); box-shadow: 0 1px 2px rgb(0 0 0 / 0.05); overflow-x: auto; }
.comparison__table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comparison__table thead tr { background: var(--off-white); }
.comparison__table th {
  padding: 1rem; text-align: center; font-weight: 500;
  color: var(--gray-500); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.comparison__th-label { text-align: left; }
.comparison__table th.comparison__th-articula { background: var(--emerald-600); color: #fff; font-weight: 700; }
.comparison__table td { padding: 1rem; color: var(--gray-700); font-weight: 500; text-align: center; }
.comparison__table tbody tr:nth-child(even) { background: var(--off-white); }
.comparison__cell-highlight { background: rgb(236 253 245 / 0.5); }
.comparison__table td:first-child { text-align: left; }
.check { color: var(--emerald-600); font-weight: 700; }
.cross { color: var(--gray-300); }

@media (min-width: 768px) { .comparison__table th, .comparison__table td { padding: 1rem 1.5rem; } }

/* ---------------------------------- Not for you ---------------------------------- */

.not-for-you { padding: 5rem 0; background: var(--off-white); }
.not-for-you__inner { max-width: 64rem; margin: 0 auto; }
.not-for-you__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.not-for-you__card { background: #fff; border-radius: 1rem; padding: 1.75rem; box-shadow: 0 1px 2px rgb(0 0 0 / 0.05); }
.not-for-you__card--yes { border: 1px solid var(--emerald-100); }
.not-for-you__card--no { border: 1px solid var(--gray-100); }
.not-for-you__card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.not-for-you__card-head svg { width: 1.5rem; height: 1.5rem; }
.not-for-you__card--yes svg { color: var(--emerald-600); }
.not-for-you__card--no svg { color: var(--gray-400); }
.not-for-you__card-head h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.not-for-you__card ul { display: flex; flex-direction: column; gap: 0.75rem; }
.not-for-you__card li { display: flex; align-items: flex-start; gap: 0.75rem; }
.not-for-you__card li::before { content: ""; width: 0.375rem; height: 0.375rem; border-radius: 999px; margin-top: 0.5rem; flex-shrink: 0; }
.not-for-you__card--yes li { color: var(--gray-700); }
.not-for-you__card--yes li::before { background: var(--emerald-600); }
.not-for-you__card--no li { color: var(--gray-500); }
.not-for-you__card--no li::before { background: var(--gray-300); }

@media (min-width: 768px) { .not-for-you__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------- Pricing ---------------------------------- */

.pricing { padding: 4rem 0; background: var(--v2-cream); }
.pricing__header { text-align: center; margin-bottom: 2rem; }
.pricing__inner { max-width: 64rem; margin: 0 auto; }
.pricing__grid { display: grid; gap: 2rem; align-items: center; }
.pricing__image { display: flex; justify-content: center; order: 2; }
.pricing__image img { width: 66%; max-width: 20rem; object-fit: contain; }
.pricing__options { order: 1; display: flex; flex-direction: column; gap: 1rem; }

.price-card {
  width: 100%; text-align: left; background: #fff; cursor: pointer;
  border: 2px solid var(--gray-200); border-radius: 1rem; padding: 1rem 1.25rem;
  position: relative; font: inherit; color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { border-color: rgb(6 78 59 / 0.3); }
.price-card--selected { border-color: var(--v2-green-dark); box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.price-card__tag {
  position: absolute; top: -0.65rem; left: 1rem;
  background: var(--v2-green); color: var(--v2-green-dark);
  font-size: 0.625rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 999px;
}
.price-card__row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.price-card__info { min-width: 0; }
.price-card__name { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.price-card__name span:first-child { font-weight: 500; color: var(--v2-text); font-size: 1rem; }
.price-card__doses { color: var(--v2-text-light); font-size: 0.75rem; }
.price-card__desc { color: var(--v2-text-light); font-size: 0.75rem; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-card__values { text-align: right; flex-shrink: 0; }
.price-card__discount { color: var(--v2-green-dark); font-size: 0.625rem; font-weight: 600; background: rgb(110 231 183 / 0.2); padding: 0.125rem 0.375rem; border-radius: 0.25rem; }
.price-card__original { color: var(--v2-text-light); text-decoration: line-through; font-size: 0.625rem; margin-top: 0.375rem; }
.price-card__installment { margin-top: 0.125rem; }
.price-card__installment span { color: var(--v2-text); font-size: 0.75rem; }
.price-card__installment strong { color: var(--v2-text); font-size: 1.125rem; font-weight: 700; }
.price-card__cash { color: var(--v2-text-light); font-size: 0.625rem; margin: 0.125rem 0 0; }

.pricing__cta-wrap { padding-top: 0.75rem; }

.pricing__trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--gray-200); margin-top: 1rem;
}
.pricing__trust-item { display: flex; align-items: center; gap: 0.375rem; color: var(--v2-text-light); font-size: 0.75rem; }

.payment-methods { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.payment-methods__label { text-align: center; font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; margin: 0 0 0.75rem; }
.payment-methods__row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.payment-methods__pill {
  display: flex; align-items: center; gap: 0.375rem;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.75rem; color: var(--gray-700); font-weight: 500;
}
.payment-methods__pill .pix { color: var(--emerald-600); font-weight: 700; font-size: 0.75rem; }
.payment-methods__pill--ssl { background: var(--emerald-50); border-color: var(--emerald-100); color: var(--emerald-700); }

@media (min-width: 1024px) {
  .pricing { padding: 7rem 0; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .pricing__image { order: 1; }
  .pricing__image img { width: 100%; max-width: 28rem; }
  .pricing__options { order: 2; }
}

/* ---------------------------------- Guarantee ---------------------------------- */

.guarantee { padding: 5rem 0; background: #fff; }
.guarantee__inner { max-width: 56rem; margin: 0 auto; }
.guarantee__cards { display: flex; flex-direction: column; gap: 2rem; }
.guarantee__card { background: var(--off-white); border-radius: 1rem; padding: 2rem; border: 1px solid var(--gray-100); }
.guarantee__card--emphasis { background: var(--emerald-50); border-color: var(--emerald-100); }
.guarantee__card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.guarantee__icon {
  width: 3rem; height: 3rem; border-radius: 999px; background: var(--emerald-100); color: var(--emerald-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.guarantee__icon--filled { background: var(--emerald-600); color: #fff; }
.guarantee__card-head h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin: 0; }
.guarantee__subline { color: var(--emerald-700); font-size: 0.875rem; font-weight: 500; margin: 0.25rem 0 0; }
.guarantee__card > p { color: var(--gray-600); line-height: 1.6; margin: 0; }
.guarantee__text { display: flex; flex-direction: column; gap: 1rem; color: var(--gray-600); line-height: 1.6; }
.guarantee__text p { margin: 0; }
.guarantee__final { color: var(--gray-900); }
.guarantee__footer { margin-top: 3rem; text-align: center; color: var(--gray-500); max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ---------------------------------- FAQ ---------------------------------- */

.faq { padding: 5rem 0; background: var(--off-white); }
.faq__inner { max-width: 48rem; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 3rem; }
.faq__sub { color: var(--gray-500); margin: 0; }
.faq__list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: #fff; border-radius: 0.75rem; padding: 0 1.5rem;
  border: 1px solid var(--gray-100); box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: 0 4px 10px rgb(0 0 0 / 0.08); }
.faq-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; padding: 1.25rem 0; font-weight: 500; color: var(--gray-900); list-style: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary svg { width: 1.25rem; height: 1.25rem; color: var(--gray-400); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] > summary svg { transform: rotate(180deg); }
.faq-item[open] > summary { color: var(--emerald-600); }
.faq-item__answer { color: var(--gray-600); line-height: 1.6; padding-bottom: 1.25rem; white-space: pre-line; }

/* ---------------------------------- Footer ---------------------------------- */

.site-footer { background: var(--v2-green-dark); color: #fff; padding: 4rem 0; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer__brand img { height: 2.5rem; width: auto; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.site-footer__brand p { color: rgb(255 255 255 / 0.7); font-size: 0.875rem; line-height: 1.6; max-width: 28rem; margin: 0 0 1.5rem; }
.site-footer__social { display: flex; align-items: center; gap: 1rem; }
.site-footer__social a {
  width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgb(255 255 255 / 0.1);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.site-footer__social a:hover { background: rgb(255 255 255 / 0.2); }

.site-footer__col h4 { font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a { color: rgb(255 255 255 / 0.7); font-size: 0.875rem; transition: color 0.2s ease; }
.site-footer__col a:hover { color: #fff; }
.site-footer__phone { display: flex; align-items: center; gap: 0.5rem; }
.site-footer__whats-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgb(255 255 255 / 0.1); color: #fff; font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 999px; margin-top: 0.5rem; transition: background 0.2s ease;
}
.site-footer__whats-btn:hover { background: rgb(255 255 255 / 0.2); }

.site-footer__bottom { border-top: 1px solid rgb(255 255 255 / 0.1); padding-top: 2rem; }
.site-footer__legal {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: rgb(255 255 255 / 0.6); font-size: 0.75rem; text-align: center; margin-bottom: 1rem;
}
.site-footer__legal a:hover { color: #fff; }
.dot-sep { display: none; }
.site-footer__copy { color: rgb(255 255 255 / 0.5); font-size: 0.875rem; text-align: center; margin: 0; }

@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
  .site-footer__brand { grid-column: span 2; }
  .site-footer__legal { flex-direction: row; gap: 1.5rem; }
  .dot-sep { display: inline; }
}

/* ---------------------------------- Floating widgets ---------------------------------- */

.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: #fff; font-weight: 500; font-size: 0.875rem;
  padding: 0.75rem 1rem; border-radius: 999px; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  animation: bounce-gentle 2s ease-in-out infinite;
  transition: background 0.2s ease;
}
.whatsapp-fab:hover { background: #20bd5a; }
.whatsapp-fab span { display: none; }

@media (min-width: 480px) { .whatsapp-fab span { display: inline; } }

.sticky-cta {
  display: block;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: var(--v2-green-dark); color: #fff; font-weight: 600;
  padding: 0.75rem 1.25rem; border-radius: 999px; margin: 0.75rem 1rem;
  box-shadow: 0 -8px 24px -8px rgb(0 0 0 / 0.15);
}
.sticky-cta__btn:active { transform: scale(0.98); }
.sticky-cta__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.sticky-cta__small { font-size: 0.75rem; opacity: 0.8; font-weight: 400; }
.sticky-cta__price { font-size: 1rem; }

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

/* ---------------------------------- Exit intent modal ---------------------------------- */

.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay__bg { position: absolute; inset: 0; background: rgb(0 0 0 / 0.7); backdrop-filter: blur(4px); }

.exit-modal {
  position: relative; width: 100%; max-width: 28rem;
  background: #fff; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}
.exit-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  background: none; border: none; color: var(--gray-400); cursor: pointer;
  transition: color 0.2s ease;
}
.exit-modal__close:hover { color: var(--gray-700); }
.exit-modal__banner {
  background: linear-gradient(to bottom right, var(--emerald-700), var(--emerald-900));
  padding: 2rem 1.5rem 1.5rem; text-align: center; color: #fff;
}
.exit-modal__banner-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; background: rgb(255 255 255 / 0.15); border-radius: 999px; margin-bottom: 0.75rem;
}
.exit-modal__banner-icon .icon { width: 1.75rem; height: 1.75rem; }
.exit-modal__eyebrow { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--emerald-200); margin: 0; }
.exit-modal__title { font-size: 1.875rem; font-weight: 700; margin: 0.5rem 0 0; line-height: 1.2; }
.exit-modal__sub { color: var(--emerald-100); font-size: 0.875rem; margin: 0.5rem 0 0; }

.exit-modal__body { padding: 1.75rem; text-align: center; }
.exit-modal__body > p { color: var(--gray-700); font-size: 0.9375rem; margin: 0 0 1rem; }

.exit-modal__coupon {
  width: 100%; background: none; cursor: pointer;
  border: 2px dashed var(--emerald-600); border-radius: 0.75rem;
  padding: 0.75rem 1rem; margin-bottom: 1rem; transition: background 0.2s ease;
}
.exit-modal__coupon:hover { background: var(--emerald-50); }
.exit-modal__coupon-label { display: block; font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.25rem; }
.exit-modal__coupon-code { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15em; color: var(--emerald-700); }

.exit-modal__cta {
  display: block; text-align: center; width: 100%;
  background: var(--emerald-700); color: #fff; font-weight: 600;
  padding: 1rem; border-radius: 999px; box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  transition: background 0.2s ease;
}
.exit-modal__cta:hover { background: var(--emerald-800); }

.exit-modal__skip {
  display: block; margin: 0.75rem auto 0; background: none; border: none; cursor: pointer;
  font-size: 0.75rem; color: var(--gray-400); text-decoration: underline;
}
.exit-modal__skip:hover { color: var(--gray-600); }

/* ---------------------------------- Animations ---------------------------------- */

@keyframes v2-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
