/* ============================================================
   SUVASEC — Landing Page tokens & base styles
   ============================================================ */

:root {
  /* Brand — clinical forest */
  --primary: #1F5E42;        /* logo deep forest */
  --primary-deep: #143A29;
  --primary-darker: #0A1F16;
  --primary-50: #EEF5EF;
  --primary-100: #D7E7DA;
  --primary-200: #B5D2BB;
  --primary-600: #2D7A53;

  /* Accent = sage band on the label */
  --accent: #1F5E42;
  --accent-deep: #143A29;
  --accent-soft: #E5F0E7;
  --sage: #6E9A7F;
  --sage-soft: #DDE9DF;

  --success: #15803D;
  --success-soft: #DCFCE7;
  --danger: #B91C1C;
  --danger-soft: #FEE2E2;
  --gold: #B58A3A;             /* apothecary brass */
  --gold-soft: #F2E6CC;

  /* Neutrals — warm, slightly green-tinged */
  --ink: #0F1E15;
  --ink-2: #162820;
  --slate-700: #34423B;
  --slate-500: #5F6F66;
  --slate-400: #8B9C92;
  --slate-300: #BFCBC4;
  --slate-200: #E2E8E4;
  --slate-100: #EEF1ED;
  --slate-50: #F6F4EC;          /* warm cream */
  --cream: #F7F4EA;
  --paper: #FDFBF3;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing scale (mobile-first, generous) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Layout */
  --page-pad: 24px;
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,30,21,.05);
  --shadow: 0 1px 2px rgba(15,30,21,.05), 0 8px 24px -8px rgba(15,30,21,.08);
  --shadow-lg: 0 2px 4px rgba(15,30,21,.05), 0 24px 48px -16px rgba(15,30,21,.16);
  --shadow-glow: 0 0 0 1px rgba(31,94,66,.15), 0 24px 60px -20px rgba(31,94,66,.45);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 720px) { body { font-size: 17px; } }

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

/* ============================================================
   Modais (Termos, Política, LGPD, Cookies)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.modal[hidden] { display: none; }
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,30,21,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px -20px rgba(15,30,21,.45);
  transform: translateY(20px);
  transition: transform .3s var(--ease);
}
.modal.is-open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  border: 0;
  transition: background .15s var(--ease);
}
.modal-close:hover { background: var(--slate-200); }
.modal-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
  padding-right: 40px;
}
.modal-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate-700);
}
.modal-body p { margin: 0 0 14px; }
.modal-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 22px 0 8px;
}
.modal-body strong { color: var(--ink); font-weight: 600; }
.modal-body ul { margin: 0 0 14px; padding-left: 20px; }
.modal-body li { margin-bottom: 6px; }
body.modal-open { overflow: hidden; }
@media (max-width: 540px) {
  .modal-card { padding: 28px 20px 20px; max-height: 90vh; }
  .modal-card h3 { font-size: 19px; }
  .modal-body { font-size: 14px; }
}
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Typography
   ============================================================ */

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  font-size: clamp(30px, 6.4vw, 52px);
  text-wrap: balance;
  color: var(--ink);
}
.h-section em {
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}
.h-sub {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  font-size: clamp(20px, 4.5vw, 28px);
  line-height: 1.25;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 99px; background: var(--primary);
  box-shadow: 0 0 0 3px rgba(31,94,66,.18);
}
.lead {
  font-size: clamp(16px, 3.8vw, 18px);
  line-height: 1.55;
  color: var(--slate-500);
  text-wrap: pretty;
  letter-spacing: -0.005em;
  margin: 16px 0 0;
}
.h-section + .lead { margin-top: 14px; }
@media (min-width: 720px) { .h-section + .lead { margin-top: 18px; } }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
section { padding: 48px 0; position: relative; }
section.compact { padding: 32px 0; }
@media (min-width: 720px) { section { padding: 64px 0; } section.compact { padding: 40px 0; } }
@media (min-width: 1024px) { section { padding: 80px 0; } section.compact { padding: 48px 0; } }

.section-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 600;
}
.section-num::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  touch-action: manipulation;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: #56AC4D;
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.12), 0 10px 24px -12px rgba(31,94,66,.45);
}
.btn-primary:hover { background: var(--primary); }
.btn-dark { background: #56AC4D; color: white; }
.btn-dark:hover { background: var(--primary); }
.btn-outline {
  background: transparent; color: var(--ink-2);
  border: 1.5px solid var(--slate-200);
}
.btn-outline:hover { border-color: var(--ink-2); }
.btn-ghost { background: transparent; color: var(--primary); }
.btn-light {
  background: white;
  color: var(--primary-deep);
  box-shadow: 0 1px 0 rgba(0,0,0,.12), 0 10px 24px -12px rgba(0,0,0,.45);
}
.btn-light:hover { background: var(--cream); }
.btn-full { width: 100%; }
.btn-lg { min-height: 58px; font-size: 16px; padding: 0 28px; }

.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .2s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Pills, badges, chips
   ============================================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--primary-50);
  color: var(--primary);
  border: 1px solid var(--primary-100);
}
.pill .icon { width: 14px; height: 14px; }
.pill-accent { background: var(--accent-soft); color: var(--accent-deep); border-color: rgba(31,94,66,.18); }
.pill-success { background: var(--success-soft); color: var(--success); border-color: rgba(21,128,61,.18); }
.pill-dark { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.18); backdrop-filter: blur(8px); }

.tag-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(31,94,66,.5);
}
.kit.featured { padding-top: 38px; }

/* Brand-style pill — solid forest green with white text */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand-pill-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { box-shadow: var(--shadow); border-color: var(--slate-300); }
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: white;
}

/* ============================================================
   Icon system
   ============================================================ */

.icon-circle {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--primary-50);
  color: var(--primary);
  flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; }
.icon-circle.accent { background: var(--accent-soft); color: var(--accent-deep); }
.icon-circle.dark { background: rgba(255,255,255,.08); color: white; }

/* ============================================================
   Bottle product mark — used multiple places
   ============================================================ */

.bottle-wrap {
  position: relative;
  display: inline-block;
}
.bottle-glow {
  position: absolute; inset: -20% -10%;
  background: radial-gradient(60% 50% at 50% 60%, rgba(31,94,66,.22), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

/* ============================================================
   Section backgrounds
   ============================================================ */

.bg-dark { background: var(--ink); color: white; }
.bg-dark .lead { color: var(--slate-400); }
.bg-navy {
  background: linear-gradient(180deg, #0F1E15 0%, #143A29 100%);
  color: white;
}
.bg-navy .lead { color: rgba(255,255,255,.7); }
.bg-navy .h-section { color: white; }
.bg-navy .h-section em { color: var(--sage-soft); font-style: italic; }
.bg-tint { background: var(--primary-50); }
.bg-soft { background: var(--cream); }
.bg-paper { background: var(--paper); }

/* ============================================================
   Helpers
   ============================================================ */

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .grid-3 { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .grid-4 { grid-template-columns: repeat(4,1fr); gap: 20px; }
}

.stack-sm > * + * { margin-top: 8px; }
.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 24px; }

.section-cta { text-align: center; margin-top: var(--space-7); }
@media (min-width: 720px) { .section-cta { margin-top: var(--space-8); } }

.hr-soft { height: 1px; background: var(--slate-200); border: 0; margin: 24px 0; }
.hr-dark { height: 1px; background: rgba(255,255,255,.10); border: 0; margin: 24px 0; }

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--slate-500); }
.text-strike { text-decoration: line-through; color: var(--slate-400); }
.divider-x { width: 1px; height: 24px; background: var(--slate-200); }

/* Reveal removido — conteúdo sempre visível para SEO/LCP. data-reveal é inerte. */

/* Hover lift */
.hover-lift { transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.hover-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* Selection */
::selection { background: var(--primary); color: white; }

/* ============================================================
   Announcement bar
   ============================================================ */

.announce {
  position: sticky; top: 0; z-index: 51;
  background: #1F5E42;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  min-height: 40px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  transition: transform .3s var(--ease);
  will-change: transform;
}
.announce.is-hidden { transform: translateY(-100%); }
.announce > span { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.announce .show-sm { display: none; }
@media (max-width: 540px) {
  .announce { font-size: 14px; padding: 9px 12px; }
  .announce .hide-sm { display: none; }
  .announce .show-sm { display: inline; }
  .announce .coupon { font-size: 11.5px; padding: 3px 8px; letter-spacing: .04em; }
}
.announce strong { font-weight: 700; color: #0F1E15; }
.announce .coupon {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 6px;
  background: #DC2626;
  border: 0;
  color: white;
  margin-left: 4px;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.announce .coupon:hover { background: #B91C1C; transform: translateY(-1px); }
.announce .coupon:active { transform: translateY(0); }
.announce .coupon::after {
  content: "";
  display: inline-block;
  width: 11px; height: 11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><rect x='9' y='9' width='13' height='13' rx='2'/><path d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  opacity: .9;
}
.announce .coupon.copied { background: #15803D; }
.announce .coupon.copied::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  opacity: 1;
}
.timer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sage); color: white;
  padding: 2px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .04em;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky; top: 40px; z-index: 50;
  background: var(--sage-soft);
  color: var(--ink);
  border: 0;
  transition: transform .3s var(--ease), top .3s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s var(--ease);
  will-change: transform, top, background;
}
.site-header .logo { color: var(--ink); }
.site-header .logo .logo-mark { color: var(--ink); }
.site-header .logo sup { color: var(--slate-500); }
.site-header .btn-primary {
  background: #56AC4D;
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.12), 0 10px 24px -12px rgba(31,94,66,.45);
}
.site-header .btn-primary:hover { background: var(--primary); }
.site-header.is-pinned-top { top: 0; }
.site-header.is-hidden { transform: translateY(-100%); }
/* Variante clara: aplicada quando reaparece via scroll-up depois de ter saído do topo */
.site-header.is-light {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(15,30,21,.06), 0 8px 20px -16px rgba(15,30,21,.18);
}
.site-header.is-light .logo { color: var(--primary); }
.site-header.is-light .logo sup { color: var(--slate-500); }
.site-header.is-light .btn-primary {
  background: #56AC4D;
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.12), 0 10px 24px -12px rgba(31,94,66,.45);
}
.site-header.is-light .btn-primary:hover { background: var(--primary); }
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 21px;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.logo-dot {
  width: 10px; height: 10px; border-radius: 99px;
  background: var(--primary);
}
.logo sup { font-size: 9px; color: var(--slate-500); top: -8px; font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background:
    radial-gradient(70% 50% at 60% 30%, rgba(110,154,127,.16), transparent 70%),
    var(--sage-soft);
  color: var(--ink);
  overflow: hidden;
  padding: 40px 0 80px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
@media (min-width: 900px) {
  .hero {
    padding: 32px 0 72px;
    justify-content: flex-start;
  }
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--ink);
}
@media (min-width: 900px) {
  .hero h1 { line-height: 1.06; }
}
.hero h1 .accent {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  font-size: .68em;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--primary-deep);
  margin-bottom: 14px;
}
@media (min-width: 720px) { .hero-tag { font-size: 17px; } }
.hero h1 .small {
  display: block;
  font-size: .42em;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--slate-500);
  margin-top: 14px;
  line-height: 1.3;
}

.hero-sub {
  font-size: clamp(16px, 3.8vw, 19px);
  color: var(--slate-700);
  max-width: 520px;
  text-wrap: pretty;
  margin-bottom: var(--space-6);
  line-height: 1.55;
  letter-spacing: -0.005em;
}

.hero-cta { display: flex; flex-direction: column; gap: 14px; max-width: 520px; align-items: center; }
@media (min-width: 540px) { .hero-cta { flex-direction: row; align-items: center; } }
@media (min-width: 900px) { .hero-cta { align-items: flex-start; } }

@media (max-width: 899px) {
  .hero .hero-grid > div:first-child { text-align: center; }
  .hero .hero-cta { margin-left: auto; margin-right: auto; }
  .hero .hero-micro { justify-content: center; }
  .hero .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-micro {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  margin-top: var(--space-5);
  font-size: 13px;
  color: var(--slate-500);
}
.hero-micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero-micro strong { color: var(--ink); font-weight: 600; }
.hero-micro .check { color: var(--primary); }
.hero-micro .star-ico { color: var(--gold); }
.hero-micro .stars { color: var(--gold); font-weight: 600; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 899px) {
  .hero-rating { flex-direction: column; gap: 6px; align-items: center; }
}
.hero-stars {
  display: inline-flex; align-items: center; gap: 2px;
  color: #E4B254;
}
.hero-stars svg { display: block; }

.hero-visual {
  position: relative;
  display: grid; place-items: center;
  min-height: 420px;
}
@media (min-width: 900px) { .hero-visual { min-height: 580px; } }

/* Product photo card — a vitrine */
.bottle-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  display: grid; place-items: center;
  overflow: visible;
}
@media (min-width: 900px) {
  .bottle-stage { transform: translateX(calc(-8% + 15px)); }
}
.bottle-stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 8% 4%;
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(31,94,66,.16), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.bottle-stage::after {
  content: "";
  position: absolute;
  bottom: 12%; left: 18%; right: 18%;
  height: 12px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(15,30,21,.32), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.bottle-stage > img {
  position: relative;
  z-index: 5;
  width: auto;
  height: 420px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(15,30,21,.18));
}
@media (min-width: 900px) { .bottle-stage > img { height: 520px; } }
/* concentric apothecary rings behind bottle */
.bottle-rings {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.bottle-rings circle { fill: none; stroke: rgba(31,94,66,.15); }

/* Floating stat chips around bottle */
.float-chip {
  position: absolute;
  z-index: 2;
  background: var(--primary);
  border: 1px solid var(--primary-deep);
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 10px;
  animation: floatY 4.5s ease-in-out infinite;
  box-shadow: 0 14px 32px -10px rgba(31,94,66,.45);
}
.float-chip strong {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: white;
  letter-spacing: -.035em;
  line-height: 1;
}

/* Variante: pill único compacto de garantia */
.float-chip.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #0F1E15 0%, #143A29 100%);
  color: white;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  padding: 9px 16px;
  border-radius: 999px;
  border: 0;
  white-space: nowrap;
  width: auto;
  max-width: max-content;
  box-shadow: 0 12px 28px -10px rgba(15,30,21,.45);
}
.float-chip.guarantee-pill svg { flex-shrink: 0; }
.float-chip.a {
  top: auto;
  bottom: calc(4% - 15px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 4;
  animation: floatY-centered 4.5s ease-in-out infinite;
}
@media (max-width: 720px) {
  .float-chip.guarantee-pill { font-size: 14px; padding: 10px 18px; }
}

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatY-centered {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@media (max-width: 720px) {
  .float-chip.a { animation: floatY-centered 4.5s ease-in-out infinite; }
}

/* Floating photos around the bottle (antes/depois) */
.float-photo {
  position: absolute;
  z-index: 2;
  width: 170px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid white;
  box-shadow: 0 18px 40px -14px rgba(15,30,21,.36);
  animation: floatY 5.5s ease-in-out infinite;
  background: white;
}
.float-photo > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.float-photo .ba-tag {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--primary-deep);
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 4px 9px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
@media (max-width: 720px) {
  .float-photo .ba-tag { font-size: 8.5px; padding: 3px 8px; letter-spacing: .1em; top: 6px; left: 6px; }
  .float-photo.after .ba-tag { left: auto; right: 6px; }
}
.float-photo.after .ba-tag {
  left: auto; right: 10px;
  background: var(--primary);
}
.float-photo.before {
  top: 30%; left: calc(-10% + 20px);
  width: 38%;
  z-index: 1;
  animation: floatY-before 5.5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.float-photo.after.right {
  top: 30%; right: calc(-18% + 25px); left: auto;
  width: 46%;
  z-index: 1;
  animation: floatY-after 5.5s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes floatY-before {
  0%,100% { transform: rotate(-14deg) translateY(0); }
  50% { transform: rotate(-14deg) translateY(-8px); }
}
@keyframes floatY-after {
  0%,100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(7deg) translateY(-8px); }
}
/* posicoes responsivas das fotos (relativas ao bottle-stage) */
@media (max-width: 720px) {
  .float-photo.before { width: 36%; top: calc(30% + 15px); left: calc(-8% + 20px); }
  .float-photo.after.right { width: 44%; top: 32%; right: -8%; }
  .float-chip.a { bottom: calc(4% - 35px); }
}

/* ============================================================
   Trust bar
   ============================================================ */

.trust-bar {
  background: linear-gradient(180deg, #0F1E15 0%, #143A29 100%);
  border-bottom: 0;
  padding: 20px 0;
}
.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.trust-items .trust-item:nth-child(-n+2) { grid-column: 1 / -1; }
@media (min-width: 540px) {
  .trust-items { gap: 14px 20px; }
  .trust-items .trust-item:nth-child(-n+2) { grid-column: auto; }
}
@media (min-width: 900px) {
  .trust-items { grid-template-columns: repeat(4,1fr); }
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  font-size: 15px; font-weight: 500;
  color: white;
}
@media (min-width: 540px) {
  .trust-item { justify-content: flex-start; font-size: 14px; }
}
@media (min-width: 900px) {
  .trust-item { font-size: 13px; }
}
.trust-item svg { width: 20px; height: 20px; color: white; flex-shrink: 0; }

/* ============================================================
   Pain section (6 cards)
   ============================================================ */

.pain-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .pain-section { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 48px; }
}
.pain-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--slate-200);
  margin: 0;
}
@media (min-width: 900px) {
  .pain-photo {
    position: sticky;
    top: 120px;
    aspect-ratio: 3 / 4;
  }
}
.pain-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: var(--space-6);
  background: var(--slate-200);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(2,1fr); margin-top: var(--space-6); } }
.pain-card {
  background: white;
  border: 0;
  border-radius: 0;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .pain-card { padding: 28px 24px; } }
/* hover effects removidos */
.pain-card .num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1;
}
.pain-card .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--primary-50);
  color: var(--primary);
  margin-bottom: 16px;
}
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 17px;
  margin: 0 0 6px; line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pain-card p { margin: 0; color: var(--slate-500); font-size: 14.5px; line-height: 1.5; }

/* ============================================================
   Vilão (dark navy)
   ============================================================ */

.villain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: var(--space-7);
}
@media (min-width: 900px) {
  .villain-grid { grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: var(--space-8); }
}
.villain-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.villain-card.bad { border-color: rgba(220,38,38,.35); }
.villain-card.good { background: linear-gradient(180deg, rgba(110,154,127,.22), rgba(110,154,127,.08)); border-color: rgba(110,154,127,.42); }
.villain-card .label {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.villain-card.bad .label { color: #E8A1A1; }
.villain-card.good .label { color: #C9DBCF; }
.villain-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.villain-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.55; }
.villain-card .big-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff, #F2EAD2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0;
}

.villain-callout {
  margin-top: var(--space-6);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(31,94,66,.08);
  border: 1px solid rgba(31,94,66,.32);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 3.5vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.018em;
  display: flex; align-items: center; gap: 16px;
}
.villain-callout svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   Solução (4 pillars)
   ============================================================ */

.solution-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 40px;
}
@media (min-width: 720px) { .solution-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }

.pillar {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; gap: 16px;
  align-items: flex-start;
}
.pillar .icon-circle { width: 52px; height: 52px; }
.pillar .icon-circle svg { width: 26px; height: 26px; }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 6px; letter-spacing: -0.015em; color: var(--ink); }
.pillar p { margin: 0; color: var(--slate-500); font-size: 14.5px; line-height: 1.55; }

.tech-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-50), white);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
}
.tech-badge .swirl { width: 14px; height: 14px; }

/* ============================================================
   Before / After slider
   ============================================================ */

/* ============================================================
   Before / After — photo gallery (snap carousel)
   ============================================================ */

.ba-gallery {
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.ba-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 24px;
  margin: 0 calc(-1 * var(--page-pad));
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ba-track::-webkit-scrollbar { display: none; }

.ba-slide {
  flex: 0 0 calc(100% - 96px);
  scroll-snap-align: center;
  margin: 0;
  max-width: 420px;
}
@media (min-width: 720px) {
  .ba-slide { flex-basis: 340px; }
}

.ba-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--slate-100);
  box-shadow: 0 1px 2px rgba(15,30,21,.06), 0 20px 40px -16px rgba(15,30,21,.20);
}
.ba-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ba-mark {
  position: absolute;
  top: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .18em;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.ba-mark.left {
  left: 14px;
  background: rgba(15,30,21,.78);
  color: white;
}
.ba-mark.right {
  right: 14px;
  background: rgba(31,94,66,.92);
  color: white;
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1.5px;
  background: rgba(255,255,255,.55);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.ba-slide figcaption {
  margin-top: 18px;
  padding: 0 4px;
  font-size: 14px;
  color: var(--slate-500);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.ba-slide figcaption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -.018em;
}
.ba-slide figcaption span::before {
  content: "·";
  margin-right: 8px;
  color: var(--slate-400);
}

.ba-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.ba-arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--slate-200);
  display: grid; place-items: center;
  color: var(--primary);
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.ba-arrow:hover { background: var(--primary-50); border-color: var(--primary); }
.ba-arrow:active { transform: scale(.95); }
.ba-arrow:disabled { opacity: .35; cursor: not-allowed; }

.ba-dots {
  display: flex; gap: 8px;
  align-items: center;
}
.ba-dot {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
}
.ba-dot::before {
  content: "";
  display: block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--slate-300);
  transition: background .2s var(--ease), width .25s var(--ease);
}
.ba-dot.active::before {
  background: var(--primary);
  width: 24px;
}

.ba-disclaimer {
  max-width: 600px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--slate-500);
  font-style: italic;
}

/* ============================================================
   Mechanism (3 steps)
   ============================================================ */

.mech-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 40px;
}
@media (min-width: 900px) { .mech-grid { grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; } }

.mech-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.mech-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--slate-200);
  position: absolute;
  top: 16px; right: 22px;
}
.mech-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.018em;
  margin: 16px 0 8px;
  color: var(--ink);
}
.mech-card p { margin: 0; color: var(--slate-500); font-size: 14.5px; line-height: 1.55; }
.mech-illust {
  height: 200px;
  display: grid; place-items: center;
  background: var(--primary-50);
  border-radius: var(--radius);
  margin-bottom: 18px;
  overflow: hidden;
}
.mech-illust svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   Use steps (3 steps with line)
   ============================================================ */

.use-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
@media (min-width: 900px) {
  .use-flow { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .use-flow::before {
    content: "";
    position: absolute;
    top: 40px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary-200) 0 8px, transparent 8px 14px);
    z-index: 0;
  }
}
.use-step { position: relative; z-index: 1; }
.use-num {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--primary-200);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin: 0 auto 16px;
  position: relative;
}
.use-num::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 999px;
  border: 1px solid var(--primary-100);
  opacity: .5;
}
.use-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.022em; text-align: center; margin: 0 0 10px; color: var(--ink); line-height: 1.2; }
@media (min-width: 720px) { .use-step h3 { font-size: 26px; } }
.use-step p { color: var(--slate-500); font-size: 15px; line-height: 1.55; text-align: center; margin: 0; }

.tip-card {
  margin-top: 36px;
  background: var(--ink-2);
  color: white;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
}
.tip-card svg { color: var(--accent); flex-shrink: 0; }
.tip-card .label {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-400);
}
.tip-card strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.015em; }

/* ============================================================
   Testimonials carousel
   ============================================================ */

.review-strip {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: linear-gradient(180deg, #0F1E15 0%, #143A29 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.06);
}
.review-strip .rs-rating {
  display: flex; align-items: center; gap: 18px;
}
.review-strip .rs-score {
  font-family: var(--font-display); font-weight: 700;
  font-size: 44px; line-height: 1;
  letter-spacing: -0.045em;
  color: white;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.review-strip .rs-meta { display: flex; flex-direction: column; gap: 6px; }
.review-strip .rs-stars { display: inline-flex; align-items: center; gap: 3px; color: #E4B254; }
.review-strip .rs-stars svg { display: block; }
.review-strip .rs-count {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  letter-spacing: -0.005em;
}
.review-strip .rs-count strong { color: white; font-weight: 600; }
.review-strip .rs-verified {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(110,154,127,.16);
  border: 1px solid rgba(110,154,127,.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-soft);
}
.review-strip .rs-verified svg { color: var(--sage-soft); }
@media (max-width: 540px) {
  .review-strip { padding: 20px; gap: 16px; }
  .review-strip .rs-score { font-size: 36px; padding-right: 14px; }
  .review-strip .rs-rating { gap: 14px; }
}

.testimonial-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.testimonial-row::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .testimonial { flex-basis: 360px; } }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-soft));
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink-2);
  font-size: 14px;
  letter-spacing: -0.01em;
  object-fit: cover;
  flex-shrink: 0;
}
img.testimonial .avatar { background: var(--slate-100); }
img.avatar { object-fit: cover; }
.testimonial .meta { font-size: 12px; color: var(--slate-500); }
.testimonial .name { font-weight: 700; font-size: 14px; color: var(--ink-2); }
.testimonial .stars { color: #F59E0B; font-size: 14px; letter-spacing: 1.5px; margin: 12px 0 8px; }
.testimonial p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--slate-700); letter-spacing: -0.005em; }
.testimonial .verified {
  margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--success); font-size: 12px; font-weight: 600;
}
.testimonial-product {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 14px 0 4px;
  display: block;
  background: var(--slate-100);
}
.testimonial-product.top { margin: 4px 0 14px; }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.carousel-nav button {
  width: 40px; height: 40px; border-radius: 999px;
  background: white; border: 1px solid var(--slate-200);
  display: grid; place-items: center;
}
.carousel-nav button:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   Compare table
   ============================================================ */

.compare-wrap {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.compare-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (min-width: 720px) {
  .compare-head { grid-template-columns: 1.2fr 1fr 1fr; }
}
.compare-head > div {
  padding: 14px 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  text-align: center;
  min-width: 0;
}
@media (min-width: 720px) {
  .compare-head > div { padding: 18px 16px; font-size: 14px; }
}
.compare-head > div:first-child { text-align: left; color: rgba(255,255,255,.65); font-weight: 600; font-family: var(--font-sans); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.compare-head .us { background: rgba(110,154,127,.18); color: white; border-left: 1px solid rgba(110,154,127,.32); border-right: 1px solid rgba(110,154,127,.32); }
.compare-head .them { color: rgba(255,255,255,.6); }
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div {
  padding: 14px 10px;
  font-size: 13px;
  text-align: center;
  line-height: 1.35;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  min-width: 0;
  word-break: break-word;
  hyphens: auto;
}
@media (min-width: 720px) {
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .compare-row > div { padding: 16px; font-size: 14px; gap: 6px; }
}
.compare-row > div:first-child { justify-content: flex-start; text-align: left; color: rgba(255,255,255,.8); font-weight: 500; }
.compare-row .us { background: rgba(110,154,127,.10); color: white; font-weight: 600; border-left: 1px solid rgba(110,154,127,.22); border-right: 1px solid rgba(110,154,127,.22); }
.compare-row .them { color: rgba(255,255,255,.55); }
.compare-row svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (min-width: 720px) { .compare-row svg { width: 18px; height: 18px; } }
.compare-row .check { color: #86C293; }
.compare-row .x { color: #E8A1A1; }

/* ============================================================
   Benefits grid
   ============================================================ */

.benefit-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
  margin-top: 36px;
}
@media (min-width: 900px) { .benefit-grid { grid-template-columns: repeat(4,1fr); gap: 20px; } }
.benefit {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: left;
}
.benefit .icon-circle { width: 40px; height: 40px; margin-bottom: 14px; }
.benefit .icon-circle svg { width: 20px; height: 20px; }
.benefit h3, .benefit h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.018em; margin: 0 0 6px; line-height: 1.3; color: var(--ink); }
@media (min-width: 720px) { .benefit h3, .benefit h4 { font-size: 18px; } }
.benefit p { font-size: 14.5px; color: var(--slate-500); margin: 0; line-height: 1.5; }

/* ============================================================
   Calculator
   ============================================================ */

.calc {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid; grid-template-columns: 1fr; gap: 22px;
  margin-top: 36px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) { .calc { grid-template-columns: 1.2fr 1fr; gap: 32px; padding: 36px; } }

.calc-inputs label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--slate-700);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
@media (min-width: 720px) { .calc-inputs label { font-size: 17px; } }
.calc-inputs .row + .row { margin-top: 18px; }
.calc-inputs input[type=range] {
  -webkit-appearance: none; width: 100%; height: 6px;
  background: var(--slate-100); border-radius: 999px; outline: none;
  margin-top: 8px;
}
.calc-inputs input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--primary); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(31,94,66,.16);
}
.calc-inputs input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--primary); cursor: pointer; border: 0;
  box-shadow: 0 0 0 4px rgba(31,94,66,.16);
}
.calc-inputs .val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.calc-result {
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.calc-result .label {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-400);
  margin-bottom: 12px;
}
.calc-result .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 56px);
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, #F2EAD2 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
}
.calc-result .sub { color: var(--slate-300); font-size: 14px; margin-top: 10px; line-height: 1.5; }
.calc-result .saving { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.10); font-size: 13px; }
.calc-result .saving strong { color: #F0DDA8; }

/* ============================================================
   Offer (3 kits)
   ============================================================ */

.offer-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 40px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .offer-grid { grid-template-columns: repeat(3,1fr); gap: 22px; }
}
.kit {
  background: white;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.kit:hover { box-shadow: var(--shadow); }
.kit.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, white, white), linear-gradient(180deg, var(--accent-soft) 0%, white 50%);
}
@media (min-width: 900px) {
  .kit.featured { transform: scale(1.04); }
  .kit.featured:hover { transform: scale(1.04) translateY(-2px); }
}
.kit-label {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.kit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 0 0 4px;
  color: var(--ink);
}
.kit .qty {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--primary);
  font-size: 13.5px;
  margin-bottom: 16px;
}
.kit-visual {
  display: grid; place-items: stretch;
  background: linear-gradient(180deg, var(--primary-50), white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  flex: 1 1 auto;
  overflow: visible;
  position: relative;
}
.kit.featured .kit-visual { background: linear-gradient(180deg, var(--accent-soft), white); }

.kit-stage {
  position: relative;
  display: block;
  padding: 12px 0 8px 12px;
  overflow: visible;
  min-height: 340px;
}
.kit-stage-left {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 320px;
  padding-right: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.kit-stage .bottle-front {
  position: absolute;
  top: 15px;
  right: 6px;
  bottom: 0;
  height: auto;
  width: auto;
  max-width: 45%;
  max-height: calc(100% - 15px);
  object-fit: contain;
  object-position: right bottom;
  filter: none;
  z-index: 2;
}
.kit-price-left {
  margin: 0 0 15px !important;
  text-align: left !important;
  min-width: 0;
}
.kit-price-left .install { white-space: nowrap; }
.kit-price-left .now { justify-content: flex-start !important; font-size: 32px !important; color: var(--ink) !important; }
.kit-price-left .now .cur { font-size: 32px !important; color: var(--ink) !important; }
.kit-price-left .now .frac { font-size: 32px !important; color: var(--ink) !important; }
.kit-price-left .now .prefix { font-size: 18px !important; color: var(--slate-500) !important; font-weight: 600; align-self: center; }
.kit-price-left .strike { font-size: 16px !important; }
.kit-price-left .install { font-size: 14px !important; margin-top: 8px !important; }

.btn-with-qty {
  position: relative;
  padding-right: 64px !important;
}
.btn-with-qty .qty-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 14px;
  border-radius: 999px;
  background: #d93025;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(217,48,37,.32);
  white-space: nowrap;
  z-index: 2;
}
.btn-with-qty .qty-badge small {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .95;
}

@media (max-width: 540px) {
  .kit-stage { padding: 10px 0 8px 12px; min-height: 300px; }
  .kit-stage-left { padding-right: 100px; min-height: 280px; }
  .kit-price-left .now { font-size: 28px !important; }
  .kit-price-left .now .cur { font-size: 28px !important; }
  .kit-price-left .now .frac { font-size: 28px !important; }
  .kit-price-left .now .prefix { font-size: 16px !important; }
  .btn-with-qty { padding-right: 56px !important; }
  .btn-with-qty .qty-badge { font-size: 12px; padding: 0 12px; top: 5px; right: 5px; bottom: 5px; }
  .btn-with-qty .qty-badge small { font-size: 9px; }
}
.kit-price { margin-bottom: 18px; text-align: center; }
.kit-price .now { justify-content: center; }
.kit-price .strike { color: var(--slate-400); text-decoration: line-through; font-size: 16px; }
.kit-price .now {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 54px;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.kit-price .now .cur { font-size: 26px; font-weight: 700; color: var(--slate-500); }
.kit-price .now .frac { font-size: 28px; font-weight: 700; color: var(--slate-500); }
.kit-price .install { color: var(--slate-500); font-size: 14.5px; margin-top: 8px; }
.kit-price .pix-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--success-soft); color: var(--success);
  font-weight: 700; font-size: 12px;
  padding: 3px 10px; border-radius: 999px;
  margin-top: 8px;
}

.kit-features { list-style: none; padding: 0; margin: 0; }
.kit-features li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 3px 0;
  font-size: 13px;
  color: var(--slate-700);
  line-height: 1.3;
}
.kit-features li svg { color: var(--success); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.kit-features li.bonus { color: var(--accent-deep); font-weight: 600; }
.kit-features li.bonus svg { color: var(--accent); }

.payment-strip {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  margin-top: 48px;
  color: var(--slate-500); font-size: 12px;
}
.payment-strip .badges { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
.payment-strip .payment-text {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.payment-strip .payment-text span { display: inline-flex; align-items: center; gap: 6px; }
.bg-navy .payment-strip { color: rgba(255,255,255,.6); }
.bg-navy .payment-strip .brand-badge {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
}
.payment-strip .badges { display: flex; gap: 6px; align-items: center; }
.brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 8px; border-radius: 4px;
  background: white; border: 1px solid var(--slate-200);
  font-family: var(--font-sans);
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--slate-700);
}

/* ============================================================
   Guarantee
   ============================================================ */

.guarantee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 720px) {
  .guarantee { grid-template-columns: 260px 1fr; gap: 56px; }
}
/* ============================================================
   Guarantee — clean typographic block
   ============================================================ */

.guarantee-clean {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-clean .h-section {
  font-size: clamp(24px, 4.5vw, 36px);
  line-height: 1.15;
}
.guarantee-clean .g-lead { font-size: 15px; margin-top: 12px; }
.guarantee-clean .g-checks { margin-top: 20px; font-size: 14px; }
.g-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary);
  border: 1px solid var(--primary-100);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -.005em;
  margin-bottom: 24px;
}
.g-lead { margin: 20px auto 0; max-width: 580px; }
.g-lead strong { color: var(--ink); font-weight: 600; }
.g-checks {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 28px;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
}
.g-checks span { display: inline-flex; align-items: center; gap: 8px; }
.g-checks svg { color: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  margin-top: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}
@media (min-width: 820px) {
  .faq { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.faq-item {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 4px 24px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item.open {
  border-color: var(--primary-100);
  box-shadow: 0 1px 2px rgba(15,30,21,.04), 0 12px 28px -16px rgba(15,30,21,.14);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--ink-2);
}
@media (min-width: 720px) { .faq-q { font-size: 16.5px; } }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .2s var(--ease);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--accent); color: white; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  color: var(--slate-500);
  font-size: 15px;
  line-height: 1.6;
}
.faq-a-inner { padding: 0 0 20px; }

/* ============================================================
   Final CTA
   ============================================================ */

.final-cta {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(110,154,127,.22), transparent 60%),
    linear-gradient(180deg, #143A29 0%, #0A1F16 100%);
  color: white;
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 8vw, 58px);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 0 0 18px;
  text-wrap: balance;
}
.final-cta p { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto 32px; font-size: 17px; line-height: 1.55; }
.final-cta .selos {
  display: flex; justify-content: center; gap: 8px 28px; flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(255,255,255,.6); font-size: 13px;
}
.final-cta .selos span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: #06080F;
  color: var(--slate-400);
  padding: 64px 0 80px;
  font-size: 13.5px;
  line-height: 1.6;
}
.site-footer .logo { color: white; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-grid h5,
.footer-grid .footer-heading {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 12px;
  color: white;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 12px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-grid a:hover { color: white; }
.disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: var(--slate-500);
}

/* ============================================================
   Sticky CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 40px -8px rgba(15,30,21,.4), 0 0 0 1px rgba(255,255,255,.06);
  z-index: 40;
  transform: translateY(140%);
  transition: transform .35s var(--ease);
}
.sticky-cta.shown { transform: translateY(0); }
.sticky-cta .info {
  display: flex; flex-direction: column;
  font-size: 13px; line-height: 1.2;
  min-width: 0;
}
.sticky-cta .info b { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: white; }
.sticky-cta .info span { color: var(--slate-400); font-size: 11px; }
.sticky-cta .btn { min-height: 48px; padding: 0 18px; font-size: 14px; flex-shrink: 0; }

@media (min-width: 720px) {
  .sticky-cta {
    left: auto; right: 24px; bottom: 24px;
    max-width: 460px;
  }
}

/* ============================================================
   WhatsApp float
   ============================================================ */

.wa-float {
  position: fixed;
  left: 16px; bottom: 16px;
  width: 56px; height: 56px;
  background: transparent;
  display: grid; place-items: center;
  z-index: 39;
  transition: transform .2s var(--ease), bottom .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 720px) {
  .wa-float.raised { bottom: 80px; }
}
.wa-icon {
  width: 52px; height: 52px;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(37,211,102,.45));
}
.wa-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #EF4444;
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(239,68,68,.45);
  z-index: 1;
}
@media (max-width: 540px) {
  .wa-float { left: 12px; bottom: 16px; width: 48px; height: 48px; }
  .wa-float.raised { bottom: 80px; }
  .wa-icon { width: 44px; height: 44px; }
  .wa-badge { min-width: 18px; height: 18px; font-size: 10px; top: -2px; right: -2px; }
}

/* ============================================================
   Misc
   ============================================================ */

.dotgrid {
  background-image: radial-gradient(1px 1px at 1px 1px, rgba(15,30,21,.08) 1px, transparent 0);
  background-size: 22px 22px;
}
.bg-navy .dotgrid {
  background-image: radial-gradient(1px 1px at 1px 1px, rgba(255,255,255,.10) 1px, transparent 0);
}

/* ============================================================
   Influencers (vertical video row)
   ============================================================ */

.infl-bar {
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 13px;
  color: var(--slate-700);
}
.infl-bar .who { display: flex; align-items: center; gap: 12px; }
.infl-bar .av-stack { display: flex; padding-left: 8px; }
.infl-bar .av-stack .av {
  width: 30px; height: 30px; border-radius: 999px;
  background: linear-gradient(135deg, var(--sage), var(--primary-100));
  border: 2px solid white;
  margin-left: -8px;
  display: grid; place-items: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 10.5px; color: var(--ink-2); letter-spacing: -0.005em;
}
.infl-bar strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.015em; }

.infl-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .infl-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 900px) { .infl-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.infl {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0A1F16;
  border: 1.5px solid var(--sage-soft);
  box-shadow: 0 1px 2px rgba(15,30,21,.05), 0 24px 48px -20px rgba(15,30,21,.20);
  cursor: pointer;
  isolation: isolate;
}
.infl video, .infl .poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.infl .poster {
  background: linear-gradient(135deg, var(--primary-50), var(--sage-soft));
  display: grid; place-items: center;
}
.infl::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity .25s var(--ease);
}
.infl.playing::after { opacity: .4; }
.infl .play-btn {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  display: grid; place-items: center;
  z-index: 3;
  transition: transform .25s var(--ease), opacity .25s var(--ease), background .2s var(--ease);
  box-shadow: 0 12px 30px rgba(15,30,21,.4), 0 0 0 6px rgba(255,255,255,.18);
  border: 0;
}
.infl:hover .play-btn { transform: translate(-50%,-50%) scale(1.08); }
.infl.playing .play-btn { opacity: 0; pointer-events: none; }
.infl .play-btn svg { width: 22px; height: 22px; margin-left: 4px; }

.infl-caption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  z-index: 2;
  color: white;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.infl-caption .handle {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.infl-caption .stat {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  padding: 4px 8px; border-radius: 999px;
  flex-shrink: 0;
}
.infl-badge {
  position: absolute;
  top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
}
.infl-tag {
  position: absolute;
  top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-sans); font-weight: 700; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--primary); color: white;
  padding: 4px 10px; border-radius: 999px;
}

.infl-nav {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.infl-nav button {
  width: 44px; height: 44px; border-radius: 999px;
  background: white; border: 1px solid var(--slate-200);
  display: grid; place-items: center;
  color: var(--primary);
}
.infl-nav button:hover { background: var(--primary-50); border-color: var(--primary); }

/* Sage tint */
.bg-sage { background: var(--sage-soft); }
.bg-sage .h-section em { color: var(--primary-deep); }
