/* ============================================================
   LYRA-PILLOW · Premium DTC LP
   Restraint. Consistency. Professional execution.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--teal); color: var(--white); }

/* === TOKENS — Derila palette === */
:root {
  --white:        #FFFFFF;
  --cream:        #f7f6f1;       /* Derila warm cream bg */
  --cream-deep:   #f1efe7;
  --gray-25:      #FAFAFA;
  --gray-50:      #f4f4f4;
  --gray-100:     #ECECEC;
  --gray-200:     #dedede;       /* Derila border */
  --gray-300:     #b9b9b9;
  --gray-500:     #707070;
  --gray-600:     #525252;
  --gray-700:     #484848;       /* Derila body text */
  --ink:          #192252;       /* Derila navy headers */
  --ink-soft:     #1b2a54;

  /* Brand — Derila uses GREEN for checks/success, BLUE for accents, NAVY for primary */
  --teal:         #069668;       /* Derila green (checks) */
  --teal-deep:    #047857;
  --teal-light:   #d2fae6;       /* Derila success badge bg */
  --teal-tint:    #ebfdf5;       /* Derila very light green */

  --blue:         #4277F0;       /* Derila CTA blue */
  --blue-deep:    #2564eb;
  --blue-light:   #ebf1ff;       /* Derila light blue tint */

  --gold:         #fa7315;       /* Derila popular badge orange */
  --gold-deep:    #ea580c;
  --red:          #dc2626;
  --red-light:    #fef2f2;
  --amber:        #f5b931;

  /* Trustpilot brand */
  --tp-green:     #00B67A;
  --tp-empty:     #DCDCE6;
  --tp-text:      #191919;

  --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; --s-6: 24px;
  --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px;
  --s-24: 96px; --s-32: 128px;

  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 30px 70px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);

  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;

  --container: 1200px;
}

/* === TYPOGRAPHY — Montserrat 700 titles, 400 body === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h1, h2 {
  font-size: 48px;
  line-height: 56px;
}
@media (max-width: 768px) {
  h1, h2 { font-size: 32px; line-height: 38px; }
}
h3 {
  font-size: 26px;
  line-height: 32px;
  letter-spacing: -0.012em;
}
@media (max-width: 768px) {
  h3 { font-size: 21px; line-height: 26px; }
}
h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
}
p { margin: 0; }

.lead {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-600);
}
.muted { color: var(--gray-500); font-size: 13px; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 480px) { .container { padding: 0 20px; } }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { padding: 56px 0; }
@media (min-width: 768px) { section { padding: 88px 0; } }
@media (min-width: 1280px) { section { padding: 112px 0; } }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn-cta {
  background: var(--ink);
  color: var(--white);
}
.btn-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(66,119,240,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.btn-large {
  padding: 20px 40px;
  font-size: 16px;
}
.btn-block { width: 100%; }
.btn .arrow { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* === ICONS — UNIFIED SYSTEM === */
.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm { width: 14px; height: 14px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 36px; height: 36px; stroke-width: 1.6; }

/* The single CHECK icon — Derila-style: teal solid circle, white check */
.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.check svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check-lg {
  width: 26px;
  height: 26px;
}
.check-lg svg { width: 14px; height: 14px; }

/* Stars (gold/amber, used for non-Trustpilot contexts only) */
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.stars-lg svg { width: 18px; height: 18px; }
.stars-xl svg { width: 22px; height: 22px; }

/* === TRUSTPILOT WIDGET === */
.tp-stars {
  display: inline-flex;
  gap: 2px;
  vertical-align: middle;
  flex-shrink: 0;
}
.tp-star {
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: var(--tp-green);
  color: var(--white);
  display: grid;
  place-items: center;
  position: relative;
}
.tp-star.tp-empty   { background: var(--tp-empty); }
.tp-star.tp-half-80 { background: linear-gradient(to right, var(--tp-green) 80%, var(--tp-empty) 80%); }
.tp-star.tp-half-50 { background: linear-gradient(to right, var(--tp-green) 50%, var(--tp-empty) 50%); }
.tp-star svg {
  width: 14px;
  height: 14px;
  color: var(--white) !important;
  fill: var(--white) !important;
  stroke: none;
  position: relative;
  z-index: 2;
}
.tp-star svg polygon { fill: var(--white) !important; }
.tp-stars-sm .tp-star { width: 18px; height: 18px; }
.tp-stars-sm .tp-star svg { width: 11px; height: 11px; }
.tp-stars-lg .tp-star { width: 26px; height: 26px; }
.tp-stars-lg .tp-star svg { width: 16px; height: 16px; }

/* TP inline widget — minimal, no box */
.tp-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.3;
}
.tp-widget strong { color: var(--tp-text); font-weight: 700; }
.tp-widget-sep { color: var(--gray-300); }
.tp-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--tp-text);
  font-size: 13px;
  letter-spacing: -0.005em;
}
.tp-brand-star {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--tp-green);
  border-radius: 1px;
  position: relative;
}
.tp-brand-star::after {
  content: '★';
  position: absolute;
  inset: 0;
  color: var(--white);
  font-size: 12px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* TP big summary block (top of reviews section) */
.tp-summary {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  margin-bottom: 48px;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
}
@media (min-width: 768px) {
  .tp-summary {
    grid-template-columns: auto auto;
    text-align: left;
    justify-items: start;
    align-items: center;
    gap: 32px;
    padding: 28px 36px;
  }
}
.tp-summary-rating {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--tp-text);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tp-summary-rating .num { font-size: 22px; }
.tp-summary-rating .lbl {
  display: inline-block;
  background: var(--tp-green);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.tp-summary-mid {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}
.tp-summary-mid strong { color: var(--tp-text); font-weight: 700; }
.tp-summary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--tp-text);
  border: 1px solid var(--gray-200);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all var(--t-fast);
}
.tp-summary-cta:hover { background: var(--tp-text); color: var(--white); border-color: var(--tp-text); }
.tp-summary-cta svg { width: 14px; height: 14px; }

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 80ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: translateY(0); }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* === ANNOUNCEMENT === */
.announce {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announce strong { color: var(--gold); font-weight: 700; }
.announce-pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* === HEADER === */
.site-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 16px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .site-header-inner { padding: 20px 32px; } }
.brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.brand-mark {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-left: 4px;
  position: relative;
  top: -2px;
}
.header-rating {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-700);
  font-weight: 500;
}
@media (min-width: 768px) { .header-rating { display: inline-flex; } }
.header-rating strong { color: var(--ink); font-weight: 700; margin-right: 4px; }
.lang-toggle {
  display: inline-flex;
  gap: 2px;
  background: var(--gray-50);
  padding: 3px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.lang-toggle a {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--gray-500);
  transition: all var(--t-fast);
}
.lang-toggle a.active { background: var(--ink); color: var(--white); }

/* === HERO === */
.hero {
  background: var(--cream);
  padding: 32px 0 48px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 56px 0 72px; } }
@media (min-width: 1024px) { .hero { padding: 80px 0 96px; } }

/* Mobile: top → image → bot, all centered. Desktop: side-by-side, left-aligned */
.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "image"
    "bot";
}
.hero-content-top { grid-area: top; text-align: center; }
.hero-image-wrap  { grid-area: image; }
.hero-content-bot { grid-area: bot; text-align: center; }

/* Mobile: center everything except hero-usps (bullets above the button) */
.hero-content-top h1 { margin-left: auto; margin-right: auto; max-width: 100%; }
.hero-content-top .tp-widget { justify-content: center; }
.hero-content-bot .hero-sub { margin-left: auto; margin-right: auto; max-width: 520px; }
.hero-content-bot .hero-usps { text-align: left; max-width: 380px; margin-left: auto; margin-right: auto; }
.hero-content-bot .hero-cta-row { justify-content: center; }
.hero-content-bot .hero-trust-row { justify-content: center; }

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    grid-template-areas:
      "top   image"
      "bot   image";
    gap: 32px 64px;
    align-items: center;
  }
  .hero-content-top, .hero-content-bot { text-align: left; }
  .hero-content-top h1, .hero-content-bot .hero-sub,
  .hero-content-bot .hero-usps { margin-left: 0; margin-right: 0; max-width: 540px; }
  .hero-content-top .tp-widget,
  .hero-content-bot .hero-cta-row,
  .hero-content-bot .hero-trust-row { justify-content: flex-start; }
  .hero-image-wrap { align-self: center; }
}

.hero-content-top .tp-widget { margin-bottom: 20px; }

.hero h1 { margin-bottom: 20px; max-width: 580px; }

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-usps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-usps li {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
@media (min-width: 768px) { .hero-usps li { font-size: 18px; } }

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust-row {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray-600);
}
.hero-trust-row .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.hero-trust-row .item svg { color: var(--teal); width: 14px; height: 14px; }

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--cream-deep) 100%);
  aspect-ratio: 5/4.4;
  width: 100%;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* (hero-cert-badge removed) */

/* === MEDIA STRIP === */
.media-strip {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.media-strip-title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 32px;
}
/* Marcas strip — image-based (mobile = infinite marquee, desktop = static centered) */
.marcas-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Desktop: imagem única centralizada, sem animação */
.marcas-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.marcas-track img {
  display: block;
  max-width: 100%;
  height: auto;
  opacity: 0.85;
  transition: opacity var(--t-base);
}
.marcas-track img:hover { opacity: 1; }
/* Desktop: esconde a 2a imagem (clone do marquee) */
@media (min-width: 768px) {
  .marcas-track img:nth-child(2) { display: none; }
}

/* Mobile: marquee infinito — translate -50% (porque o track tem 2x a imagem, o ponto de loop é exatamente a metade) */
@media (max-width: 767px) {
  .marcas-track {
    width: max-content;
    justify-content: flex-start;
    animation: marcas-marquee 28s linear infinite;
  }
  .marcas-track img {
    height: 56px;            /* tamanho fixo no mobile pra controlar marquee */
    width: auto;
    max-width: none;         /* cancela max-width pra imagem ocupar largura natural */
    flex-shrink: 0;
  }
  @keyframes marcas-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  /* Pausa a animação se o usuário toca/segura na strip — UX detail */
  .marcas-strip:active .marcas-track,
  .marcas-strip:hover .marcas-track {
    animation-play-state: paused;
  }
  /* Acessibilidade: respeita prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .marcas-track { animation: none; }
  }
}

/* === SECTION HEAD === */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) { .section-head { margin-bottom: 56px; } }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .lead { color: var(--gray-600); }

/* === ANATOMY — image-led tabs (one feature at a time) === */
.anatomy { background: var(--cream); }

.zone-layout {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .zone-layout {
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
  }
}

/* NAV: horizontal scroll on mobile, vertical on desktop */
.zone-nav {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 12px;
  margin: 0 -4px;
  scroll-snap-type: x proximity;
}
.zone-nav::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .zone-nav {
    flex-direction: column;
    overflow-x: visible;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 100px;
  }
}

.zone-tab {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  text-align: left;
  color: var(--ink);
}
@media (min-width: 1024px) {
  .zone-tab { width: 100%; padding: 16px 20px; white-space: normal; }
}
.zone-tab-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.zone-tab-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex: 1;
}
.zone-tab-arrow {
  width: 14px;
  height: 14px;
  margin-left: auto;
  color: var(--gray-300);
  display: none;
  flex-shrink: 0;
  transition: transform var(--t-base);
}
@media (min-width: 1024px) { .zone-tab-arrow { display: inline-block; } }
.zone-tab:hover {
  border-color: var(--gray-300);
  background: var(--gray-25);
}
.zone-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
}
.zone-tab.is-active .zone-tab-num  { color: var(--gold); }
.zone-tab.is-active .zone-tab-name { color: var(--white); }
.zone-tab.is-active .zone-tab-arrow { color: var(--white); transform: translateX(2px); }

/* PANEL — each zone has its own image + text */
.zone-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.zone-content {
  display: none;
  animation: zoneFadeUp 0.45s var(--ease);
}
.zone-content[data-active="true"] { display: block; }

@keyframes zoneFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.zone-content-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream-deep) 100%);
}
@media (min-width: 768px) { .zone-content-img { aspect-ratio: 16/9; } }
.zone-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.zone-content-text {
  padding: 24px 22px 28px;
}
@media (min-width: 768px) {
  .zone-content-text { padding: 32px 36px 36px; }
}

.zone-content-text h3 {
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) {
  .zone-content-text h3 { font-size: 28px; line-height: 34px; }
}
.zone-content-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: var(--gray-700);
}
@media (min-width: 768px) {
  .zone-content-text p { font-size: 16px; line-height: 24px; }
}

/* MOBILE PAGINATION DOTS — hidden on desktop */
.zone-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 4px 0;
}
@media (min-width: 1024px) { .zone-dots { display: none; } }
.zone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.zone-dot:hover { background: var(--gray-500); }
.zone-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--ink);
}

/* === COUNTDOWN === */
.countdown {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 24px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.countdown-text { font-size: 13px; font-weight: 500; }
.countdown-text strong { color: var(--gold); font-weight: 700; }
.countdown-clock {
  display: inline-flex;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
}
.countdown-unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 8px;
  min-width: 56px;
  text-align: center;
}
.countdown-unit-value {
  font-size: 18px;
  font-weight: 800;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown-unit-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 4px;
}

/* === PROBLEM === */
.problem { background: var(--white); }
.problem-compare {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) { .problem-compare { grid-template-columns: 1fr 1fr; gap: 24px; } }

.compare-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-slow) var(--ease);
  border: 1px solid var(--gray-100);
}
.compare-card:hover { transform: translateY(-3px); }
.compare-card-image {
  aspect-ratio: 16/10;
  background: var(--gray-50);
  overflow: hidden;
  position: relative;
}
.compare-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.compare-card:hover .compare-card-image img { transform: scale(1.03); }
.compare-card.good { border: 2px solid var(--teal); }
.compare-card-body { padding: 28px; }
.compare-card h3 { margin-bottom: 12px; }
.compare-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }

/* === STATS === */
.stats {
  background: var(--cream);
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  margin-top: 56px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 8px; }
.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 0.95;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-num .suffix { color: var(--teal); font-size: 0.6em; margin-left: 2px; }
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* === FEATURE BLOCK (image bg) === */
.feature-block {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.feature-block-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-block-bg img { width: 100%; height: 100%; object-fit: cover; }
.feature-block-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.5) 55%, transparent 100%);
}
.feature-block-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 80px 24px;
  color: var(--white);
}
@media (min-width: 768px) { .feature-block-content { padding: 100px 0; } }
.feature-block .eyebrow { color: var(--gold); margin-bottom: 16px; }
.feature-block h2 { color: var(--white); margin-bottom: 16px; }
.feature-block p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 460px;
}
.feature-block ul { display: flex; flex-direction: column; gap: 10px; }
.feature-block li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  font-weight: 500;
}
.feature-block .check {
  background: var(--gold);
  color: var(--ink);
}

/* === ENGINEERING — contained spec card on cream bg === */
.engineered { background: var(--cream); }

.eng-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-2xl);
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .eng-card { padding: 48px 40px; }
}
@media (min-width: 1024px) {
  .eng-card { padding: 56px 48px; }
}

.eng-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 20px;
}
@media (min-width: 768px) {
  .eng-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
}

.eng-block {
  padding: 0;
  text-align: left;
}

/* Mobile: hairline on top of each block */
@media (max-width: 767px) {
  .eng-block {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
  }
}

/* Desktop: vertical dividers between blocks */
@media (min-width: 768px) {
  .eng-block {
    padding-left: 24px;
    border-left: 1px solid var(--gray-200);
  }
  .eng-block:first-child {
    padding-left: 0;
    border-left: none;
  }
}

.eng-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.eng-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}
@media (min-width: 768px) { .eng-value { font-size: 32px; } }
@media (min-width: 1024px) { .eng-value { font-size: 36px; } }
.eng-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: var(--gray-600);
}

/* === DEEP FEATURE — Mobile: content top, image bottom always.
   Desktop: deep1 = text-left/img-right, deep2 (.alt) = img-left/text-right === */
.deep-feature { background: var(--white); }
.deep-feature.alt { background: var(--cream); }
.deep-feature-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .deep-feature-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  /* Alt section: flip image to left, content to right (desktop only) */
  .deep-feature.alt .deep-feature-content { order: 2; }
  .deep-feature.alt .deep-feature-image   { order: 1; }
}
.deep-feature-image {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.deep-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.deep-feature:hover .deep-feature-image img { transform: scale(1.03); }
.deep-feature-content .eyebrow { margin-bottom: 14px; }
.deep-feature-content h2 { margin-bottom: 16px; }
.deep-feature-content > p { color: var(--gray-600); font-size: 16px; margin-bottom: 24px; }
.deep-feature-content ul { display: flex; flex-direction: column; gap: 12px; }
.deep-feature-content ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* === POSITIONS === */
.positions {
  background: var(--white);
}
.positions-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 768px) { .positions-grid { grid-template-columns: repeat(3, 1fr); } }
.position-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: left;
  transition: all var(--t-base) var(--ease);
  border: 1px solid transparent;
}
.position-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-100);
  background: var(--white);
}
.position-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.position-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.position-card:hover .position-image img { transform: scale(1.04); }
.position-body { padding: 24px; }
.position-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.position-body h3 { margin-bottom: 8px; font-size: 19px; }
.position-body p { color: var(--gray-600); font-size: 14px; line-height: 1.55; }

/* === EXPERT ENDORSEMENT — 3 PT cards (defensive: max-widths + explicit sizes) === */
.experts {
  background: var(--cream);
  padding: 80px 0;
}
@media (max-width: 767px) {
  .experts { padding: 56px 0; }
}
.experts .section-head { margin-bottom: 48px; text-align: center; }
.experts .section-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 12px 0 16px 0;
}
@media (min-width: 768px) {
  .experts .section-head h2 { font-size: 40px; }
}
.experts .section-head .lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}

.expert-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .expert-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.expert-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--t-base) var(--ease);
  min-width: 0;
}
.expert-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.expert-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.expert-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  max-width: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 2px 10px rgba(0,0,0,.08), inset 0 0 0 2px #fff;
  position: relative;
}
.expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.expert-id { min-width: 0; flex: 1; }
.expert-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.expert-creds {
  display: inline;
  font-weight: 500;
  font-size: 12px;
  color: var(--gray-600);
  letter-spacing: 0;
  margin-left: 2px;
}
.expert-specialty {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal-deep);
  margin: 0 0 3px 0;
  letter-spacing: 0.01em;
  line-height: 1.35;
}
.expert-clinic {
  font-size: 12px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.4;
}

.expert-quote {
  position: relative;
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  padding: 14px 14px 14px 16px;
  border-left: 2px solid var(--teal-deep);
  background: var(--cream-deep);
  border-radius: 0 6px 6px 0;
  flex: 1;        /* expande pra preencher altura — footer fica ancorado no fundo em todos os 3 cards */
}

.expert-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
  margin-top: auto;  /* garantia extra: footer no fundo independente da altura do quote */
}
.expert-meta {
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}
.expert-verified {
  color: var(--tp-green);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10.5px;
  white-space: nowrap;
}
/* Force-cap the verified icon (defensive against cascade) */
.expert-verified .icon,
.expert-verified svg {
  width: 13px !important;
  height: 13px !important;
  flex-shrink: 0;
}

.expert-disclosure {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.5;
}

/* === REVIEWS — Trustpilot style (mobile-friendly carousel) === */
.reviews { background: var(--white); }

.reviews-carousel-wrap {
  position: relative;
  /* Mobile: sem negative margin (causava cards colando nas bordas) */
  margin: 0;
  padding: 4px 0;
}
@media (min-width: 768px) { .reviews-carousel-wrap { margin: 0 -32px; } }

/* Fade visual nas laterais — sinaliza que há mais conteúdo pra rolar (mais intenso no mobile) */
.reviews-carousel-wrap::before,
.reviews-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
.reviews-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 20%, transparent);
}
.reviews-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 20%, transparent);
}
@media (min-width: 768px) {
  .reviews-carousel-wrap::before,
  .reviews-carousel-wrap::after { width: 48px; }
}

.reviews-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Mobile: padding lateral generoso (cria respiração) */
  padding: 4px 20px;
  scroll-padding-inline: 20px;
  cursor: grab;
  user-select: none;
}
@media (min-width: 768px) {
  .reviews-carousel { padding: 4px 32px; gap: 20px; scroll-padding-inline: 32px; }
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel.dragging { cursor: grabbing; scroll-snap-type: none; }
.reviews-carousel.dragging * { pointer-events: none; }

.review-card {
  /* Mobile: card mais estreito pra deixar peek MAIOR do próximo (sinaliza que é carousel) */
  flex: 0 0 calc(100vw - 110px);
  max-width: 300px;
  background: var(--white);
  padding: 24px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
  scroll-snap-align: start;
  transition: all var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .review-card { flex: 0 0 380px; max-width: none; padding: 32px 28px; }
}

/* === Mobile swipe hint — animated, visible only on mobile === */
.reviews-swipe-hint {
  display: none;
}
@media (max-width: 767px) {
  .reviews-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px auto 0;
    padding: 8px 14px;
    background: var(--cream);
    border-radius: 999px;
    width: fit-content;
    color: var(--ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    animation: swipe-pulse 2.4s ease-in-out infinite;
  }
  .reviews-swipe-finger {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: var(--teal-deep);
    animation: swipe-finger 1.8s ease-in-out infinite;
  }
  .reviews-swipe-finger svg { width: 18px; height: 18px; }
  .reviews-swipe-arrow {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    color: var(--teal-deep);
    animation: swipe-arrow 1.8s ease-in-out infinite;
  }
  .reviews-swipe-arrow svg { width: 16px; height: 16px; }

  @keyframes swipe-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
  }
  @keyframes swipe-finger {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-3px); }
  }
  @keyframes swipe-arrow {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50%      { transform: translateX(4px); opacity: 1; }
  }

  @media (prefers-reduced-motion: reduce) {
    .reviews-swipe-hint,
    .reviews-swipe-finger,
    .reviews-swipe-arrow { animation: none; }
  }
}
.review-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-card .tp-stars { margin-bottom: 16px; }
.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-date {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}
.review-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--tp-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.review-text {
  color: var(--gray-700);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.review-text p { margin-bottom: 8px; }
.review-text p:last-child { margin-bottom: 0; }
.review-text strong { font-weight: 700; color: var(--ink); }
.review-meta {
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tp-empty);
  color: var(--gray-700);
  display: grid;
  place-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.01em;
}
.review-author-info { display: flex; flex-direction: column; gap: 1px; }
.review-author-name {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--tp-text);
}
.review-author-loc { color: var(--gray-500); font-size: 12px; font-weight: 500; }
.review-verified {
  color: var(--tp-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.review-verified svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.carousel-nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 768px) { .carousel-nav { display: flex; } }
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all var(--t-fast);
}
.carousel-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* === COMPARE TABLE — premium responsive === */
/* === COMPARISON v2 — 2 colunas lado a lado, simples === */
.vs-section { background: var(--cream); }
.cmp2 {
  max-width: 880px;
  margin: 40px auto 0;
}
.cmp2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .cmp2-grid { gap: 24px; }
}
.cmp2-col {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cmp2-others { background: var(--white); }
.cmp2-lyra {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
  position: relative;
}

/* Header */
.cmp2-header {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 80px;
}
@media (min-width: 768px) {
  .cmp2-header { padding: 20px 16px; min-height: 96px; }
}
.cmp2-others .cmp2-header {
  background: var(--gray-50);
  color: var(--gray-600);
}
.cmp2-lyra .cmp2-header {
  background: var(--ink);
  color: var(--white);
  border-bottom-color: var(--ink);
}
.cmp2-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .cmp2-eyebrow { font-size: 12px; }
}
.cmp2-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
@media (min-width: 768px) {
  .cmp2-name { font-size: 22px; }
}
.cmp2-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}
@media (min-width: 768px) { .cmp2-badge { font-size: 10px; } }

/* List */
.cmp2-list {
  list-style: none;
  margin: 0;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
@media (min-width: 768px) {
  .cmp2-list { padding: 24px 22px; gap: 14px; }
}
.cmp2-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}
@media (min-width: 768px) {
  .cmp2-list li { font-size: 15px; gap: 10px; }
}
.cmp2-others .cmp2-list li {
  color: var(--gray-500);
  text-decoration: line-through;
  text-decoration-color: rgba(112, 112, 112, 0.35);
  text-decoration-thickness: 1px;
}
.cmp2-others .cmp2-mark { text-decoration: none; }
.cmp2-lyra .cmp2-list li {
  color: var(--ink);
  font-weight: 600;
}

.cmp2-mark {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
@media (min-width: 768px) {
  .cmp2-mark { width: 22px; height: 22px; font-size: 12px; }
}
.cmp2-x {
  background: var(--gray-100);
  color: var(--gray-500);
}
.cmp2-v {
  background: var(--teal);
  color: var(--white);
}
.cmp2-v svg { width: 11px; height: 11px; }
@media (min-width: 768px) { .cmp2-v svg { width: 12px; height: 12px; } }

/* Total bar */
.cmp2-total {
  margin-top: auto;
  padding: 14px 14px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .cmp2-total { padding: 18px 16px; }
}
.cmp2-total-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.cmp2-total-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@media (min-width: 768px) {
  .cmp2-total-value { font-size: 22px; }
}
.cmp2-others .cmp2-total-value { color: var(--gray-600); }
.cmp2-lyra .cmp2-total {
  background: var(--ink);
  border-top-color: var(--ink);
}
.cmp2-lyra .cmp2-total-label { color: rgba(255,255,255,0.6); }
.cmp2-lyra .cmp2-total-value { color: var(--white); }

/* Old compare table — kept for compatibility (no longer used) */
.cmp-wrap, .cmp-table { display: none !important; }

.cmp-wrap {
  position: relative;
  max-width: 880px;
  margin: 40px auto 0;
}

.cmp-table {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* === MOBILE: lista simples — feature em cima, 2 valores empilhados (sem labels redundantes) === */

/* Header — só UltraFoam centralizado (sem coluna "Other Brands" pra não inflar) */
.cmp-head {
  display: block;
  border-bottom: 1px solid var(--gray-100);
}
.cmp-head .cmp-feat-head,
.cmp-head .cmp-others-head { display: none; }
.cmp-head .cmp-lyra-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 16px;
}
.cmp-head .cmp-lyra-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
}
.cmp-lyra-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 999px;
}

/* Cada feature: 3 linhas empilhadas — feat label, others (cinza claro), ultrafoam (teal-tint) */
.cmp-row:not(.cmp-head):not(.cmp-foot) {
  display: block;
}

.cmp-cell {
  padding: 11px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

/* Feature label — cream bg, peso médio, ícone pequeno */
.cmp-cell.cmp-feat {
  background: var(--cream);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-100);
  padding: 10px 16px;
}
.cmp-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: grid;
  place-items: center;
  color: var(--gray-600);
  flex-shrink: 0;
}
.cmp-feat-icon svg { width: 11px; height: 11px; stroke-width: 1.8; }

/* Others — fundo branco, texto cinza, ícone X discreto */
.cmp-cell.cmp-others {
  background: var(--white);
  color: var(--gray-600);
  font-weight: 500;
}

/* UltraFoam — fundo teal-tint sutil, texto navy bold */
.cmp-cell.cmp-lyra {
  background: #f3f8f6;
  color: var(--ink);
  font-weight: 700;
}

/* X / V bullets */
.cmp-x, .cmp-v {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.cmp-x {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid var(--gray-200);
}
.cmp-x svg { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.cmp-v {
  background: var(--teal-deep);
  color: var(--white);
}
.cmp-v svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Footer mobile: 2 colunas (Others / UltraFoam), sem feature label visível */
.cmp-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-top: 2px solid var(--ink);
}
.cmp-foot .cmp-feat { display: none; }
.cmp-foot .cmp-others,
.cmp-foot .cmp-lyra {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  padding: 18px 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 2px;
  background: transparent;
  border: none;
}
.cmp-foot .cmp-others { color: rgba(255,255,255,0.6); }
.cmp-foot .cmp-others::before {
  content: "OTHERS";
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.65;
  margin-bottom: 4px;
  margin-right: 0;
  width: auto;
  color: rgba(255,255,255,0.6);
}
.cmp-foot .cmp-lyra { color: var(--white); }
.cmp-foot .cmp-lyra::before {
  content: "ULTRAFOAM";
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.9;
  color: var(--white);
  margin-bottom: 4px;
  margin-right: 0;
  width: auto;
}

/* === DESKTOP (≥768px): proper 3-column table === */
@media (min-width: 768px) {
  .cmp-head {
    grid-template-columns: 1.6fr 1fr 1.2fr;
  }
  .cmp-head .cmp-feat-head {
    display: flex;
    background: var(--cream);
    color: var(--gray-500);
  }
  .cmp-head .cmp-cell { padding: 18px 22px; font-size: 11.5px; }
  .cmp-head .cmp-lyra-head { padding: 16px 22px; }
  .cmp-head .cmp-lyra-name { font-size: 19px; }

  .cmp-row:not(.cmp-head):not(.cmp-foot) {
    grid-template-columns: 1.6fr 1fr 1.2fr;
  }
  /* Zebra striping (subtle alternation) */
  .cmp-row:not(.cmp-head):not(.cmp-foot):nth-of-type(even) .cmp-feat,
  .cmp-row:not(.cmp-head):not(.cmp-foot):nth-of-type(even) .cmp-others {
    background: #fafafa;
  }
  .cmp-row:not(.cmp-head):not(.cmp-foot):nth-of-type(even) .cmp-lyra {
    background: #f3f8f6;
  }

  .cmp-cell {
    padding: 18px 22px;
    font-size: 14.5px;
    gap: 12px;
    border-bottom: none;
  }
  .cmp-cell.cmp-feat {
    grid-column: auto;
    background: var(--white);
    border-bottom: none;
    font-size: 14px;
    padding: 18px 22px;
  }
  .cmp-feat-icon { width: 32px; height: 32px; border-radius: 8px; }
  .cmp-feat-icon svg { width: 15px; height: 15px; }

  .cmp-foot {
    grid-template-columns: 1.6fr 1fr 1.2fr;
  }
  .cmp-foot .cmp-feat {
    display: flex;
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 22px 22px;
  }
  .cmp-foot .cmp-others,
  .cmp-foot .cmp-lyra {
    font-size: 21px;
    padding: 22px 22px;
    flex-direction: row;
    gap: 0;
  }
  .cmp-foot .cmp-others::before,
  .cmp-foot .cmp-lyra::before {
    display: none;
  }
}

.vs-bottom-cta {
  text-align: center;
  margin-top: 40px;
}

/* === OFFER === */
.offer { background: var(--white); }
.offer-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .offer-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.offer-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  text-align: left;
  border: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-base) var(--ease);
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.offer-card.popular {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.offer-card.popular h3, .offer-card.popular .offer-price { color: var(--white); }
.offer-card.popular .units { color: rgba(255,255,255,0.6); }
.offer-card.popular .offer-features li { color: rgba(255,255,255,0.85); }
.offer-card.popular .offer-features .check { background: var(--gold); color: var(--ink); }
.offer-card.popular .offer-price-old { color: rgba(255,255,255,0.4); }
.offer-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.offer-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 24px;
}
.offer-card-image img { width: 100%; height: 100%; object-fit: cover; }
.offer-card.popular .offer-card-image { background: rgba(255,255,255,0.06); }
.offer-card h3 { margin-bottom: 4px; font-size: 22px; }
.offer-card .units { color: var(--gray-500); font-size: 13px; font-weight: 500; margin-bottom: 20px; }
.offer-price-row { margin: 12px 0 8px; display: flex; align-items: baseline; gap: 12px; }
.offer-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.offer-price-old {
  color: var(--gray-300);
  text-decoration: line-through;
  font-size: 17px;
  font-weight: 600;
}
.offer-savings {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 12px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 10px 0 24px;
  align-self: flex-start;
}
.offer-card.popular .offer-savings { background: rgba(201,154,91,0.18); color: var(--gold); }
.offer-features { margin: 0 0 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.offer-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
}
.offer-card.popular .btn-cta { background: var(--gold); color: var(--ink); }
.offer-card.popular .btn-cta:hover { background: var(--white); color: var(--ink); box-shadow: none; }

/* === GUARANTEE === */
.guarantee {
  background: var(--cream);
}
.guarantee-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px;
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 768px) { .guarantee-card { padding: 80px 56px; } }
.guarantee-product {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  display: block;
}
@media (min-width: 768px) {
  .guarantee-product { max-width: 420px; margin-bottom: 28px; }
}

/* === Official 90-night money-back seal === */
.guarantee-seal-wrap {
  /* Mobile: centered, sits between product image and headline */
  display: flex;
  justify-content: center;
  margin: -8px auto 24px;
  pointer-events: none;
}
.guarantee-seal {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 4px 14px rgba(25, 34, 82, 0.18)) drop-shadow(0 1px 3px rgba(0,0,0,0.08));
  transition: transform 0.6s var(--ease);
}
/* Subtle rotate-in on hover (desktop) */
.guarantee-card:hover .guarantee-seal {
  transform: rotate(-6deg) scale(1.04);
}

/* Desktop: floating top-right of card, slight overlap with image */
@media (min-width: 768px) {
  .guarantee-seal-wrap {
    position: absolute;
    top: 28px;
    right: 28px;
    margin: 0;
    transform: rotate(-8deg);
    transform-origin: center;
  }
  .guarantee-seal {
    width: 150px;
    height: 150px;
  }
  .guarantee-card:hover .guarantee-seal {
    transform: rotate(0deg) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .guarantee-seal,
  .guarantee-card:hover .guarantee-seal { transition: none; transform: none; }
  @media (min-width: 768px) {
    .guarantee-seal-wrap { transform: rotate(-6deg); }
  }
}
.guarantee-card .eyebrow { margin-bottom: 14px; }
.guarantee-card h2 { margin-bottom: 20px; }
.guarantee-card p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.guarantee-card strong { color: var(--ink); font-weight: 700; }
.founder-backstory {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream, #faf6ef);
  border-left: 3px solid var(--teal-deep, #0e6359);
  border-radius: var(--r-sm, 8px);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800, #2a2a2a);
}
.guarantee-signature {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

/* === FAQ === */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item:hover { border-color: var(--gray-200); }
.faq-item[open] { background: var(--white); border-color: var(--gray-200); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--t-base);
}
.faq-item[open] .faq-toggle { background: var(--ink); border-color: var(--ink); }
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all var(--t-base);
}
.faq-item[open] .faq-toggle::before, .faq-item[open] .faq-toggle::after { background: var(--white); }
.faq-toggle::before { width: 11px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 11px; }
.faq-item[open] .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-item-content {
  padding: 0 24px 24px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

/* === FINAL CTA === */
.final-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15,15,15,0.85) 100%);
  z-index: 1;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta .eyebrow { color: var(--gold); margin-bottom: 16px; }
.final-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p { color: rgba(255,255,255,0.78); font-size: 16px; max-width: 580px; margin: 0 auto 12px; }
.final-cta strong { color: var(--white); font-weight: 700; }
.final-cta .btn { margin-top: 28px; }
.final-cta .btn-cta { background: var(--gold); color: var(--ink); }
.final-cta .btn-cta:hover { background: var(--white); }
.final-cta-meta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.final-cta-meta li { display: inline-flex; align-items: center; gap: 8px; }
.final-cta-meta svg { color: var(--gold); width: 14px; height: 14px; }

/* === FOOTER === */
.site-footer {
  background: #0A0A0A;
  color: var(--white);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--gray-300); }
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-300);
  transition: color var(--t-fast);
  cursor: pointer;
}
.footer-col ul li:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
}

/* === STICKY OFFER === */
.sticky-offer {
  position: fixed;
  top: -80px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 32px;
  z-index: 99;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: top var(--t-base) var(--ease);
}
.sticky-offer.visible { top: 0; }
@media (min-width: 1024px) { .sticky-offer { display: flex; } }
.sticky-offer-left { display: flex; align-items: center; gap: 14px; }
.sticky-offer-img { width: 44px; height: 44px; border-radius: var(--r-sm); object-fit: cover; background: var(--cream); }
.sticky-offer-text { display: flex; flex-direction: column; }
.sticky-offer-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.sticky-offer-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }
.sticky-offer-right { display: flex; align-items: center; gap: 14px; }
.sticky-offer-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); }
.sticky-offer-old { color: var(--gray-300); text-decoration: line-through; font-size: 13px; margin-left: 6px; }

/* (mobile sticky CTA removed) */

/* === A11Y === */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}
