/* Design: A-2-β-I | font:playfair | palette:teal-amber | extras:waves,chart,ing-cards,urgency,colored-headers */
/* Uromexil Forte ES — single-brand nutra landing */

:root {
  /* Brand */
  --primary: #0f7a85;
  --primary-dark: #0a5d66;
  --primary-light: #b8dfe3;
  --primary-pale: rgba(15, 122, 133, .08);
  --primary-rgb: 15, 122, 133;
  --accent: #ff5a36;
  --accent-dark: #e63d1a;
  --accent-pale: rgba(255, 90, 54, .1);
  --accent-rgb: 255, 90, 54;

  /* Card palette (colorful variants) */
  --c1: #ff5a36; --c1-pale: rgba(255, 90, 54, .12);
  --c2: #14b8a6; --c2-pale: rgba(20, 184, 166, .12);
  --c3: #8b5cf6; --c3-pale: rgba(139, 92, 246, .12);
  --c4: #f59e0b; --c4-pale: rgba(245, 158, 11, .14);
  --c5: #06b6d4; --c5-pale: rgba(6, 182, 212, .12);
  --c6: #ec4899; --c6-pale: rgba(236, 72, 153, .12);

  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f4f9fa;
  --bg-soft: #f0f5f6;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --dark-bg: #0b2327;

  /* Text */
  --text: #0f1e20;
  --text-muted: #5a6b6d;
  --text-light: #8a9a9c;
  --text-inverse: #ffffff;

  /* Borders */
  --border: #e2eaec;
  --border-strong: #cbd8db;

  /* Status */
  --discount-bg: #fff2e0;
  --discount-color: #b65d08;
  --star-color: #f5b014;
  --success: #2e8b3f;
  --danger: #c3432a;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 35, 39, .06);
  --shadow-md: 0 6px 18px rgba(11, 35, 39, .09);
  --shadow-lg: 0 16px 40px rgba(11, 35, 39, .14);
  --shadow-primary: 0 10px 30px rgba(15, 122, 133, .28);
  --shadow-accent: 0 12px 34px rgba(255, 90, 54, .38);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  /* Layout */
  --header-h: 68px;
  --container: 1180px;

  /* z */
  --z-promo: 90;
  --z-header: 100;
  --z-sticky: 150;
  --z-mobile-nav: 200;
  --z-hamburger: 201;
  --z-modal: 300;
  --z-popup: 310;
  --z-theme-toggle: 102;

  /* Font */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #0b1a1d; --bg-alt: #0f2327; --bg-soft: #122a2f; --bg-card: #13272c; --bg-elevated: #183036;
  --text: #e5edef; --text-muted: #9cb0b3; --text-light: #7a8d90;
  --border: #1d3137; --border-strong: #2a434a;
  --primary: #3bb0bd; --primary-dark: #5ec9d5; --accent: #ff7a50; --accent-dark: #ffa17a;
  --primary-pale: rgba(15, 122, 133, .18); --accent-pale: rgba(255, 90, 54, .2);
  --discount-bg: #3a1209; --discount-color: #ffb289;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
  --shadow-md: 0 6px 18px rgba(0,0,0,.55);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.65);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg: #0b1a1d; --bg-alt: #0f2327; --bg-soft: #122a2f; --bg-card: #13272c; --bg-elevated: #183036;
    --text: #e5edef; --text-muted: #9cb0b3; --text-light: #7a8d90;
    --border: #1d3137; --border-strong: #2a434a;
    --primary: #3bb0bd; --primary-dark: #5ec9d5; --accent: #ff7a50; --accent-dark: #ffa17a;
    --primary-pale: rgba(15, 122, 133, .18); --accent-pale: rgba(255, 90, 54, .2);
    --discount-bg: #3a1209; --discount-color: #ffb289;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
    --shadow-md: 0 6px 18px rgba(0,0,0,.55);
    --shadow-lg: 0 16px 40px rgba(0,0,0,.65);
    color-scheme: dark;
  }
}
html[data-theme="light"] {
  --bg: #ffffff; --bg-alt: #f4f9fa; --bg-soft: #f0f5f6; --bg-card: #ffffff; --bg-elevated: #ffffff;
  --text: #0f1e20; --text-muted: #5a6b6d; --text-light: #8a9a9c;
  --border: #e2eaec; --border-strong: #cbd8db;
  --primary-pale: rgba(13, 105, 115, .08); --accent-pale: rgba(217, 138, 54, .1);
  --discount-bg: #fff2e0; --discount-color: #b65d08;
  --shadow-sm: 0 1px 3px rgba(11, 35, 39, .06);
  --shadow-md: 0 6px 18px rgba(11, 35, 39, .09);
  --shadow-lg: 0 16px 40px rgba(11, 35, 39, .14);
  color-scheme: light;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 800; color: var(--text); line-height: 1.22; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: 2.8rem; }
h2 { font-size: 1.85rem; text-align: center; margin-bottom: 28px; position: relative; padding-bottom: 14px; }
h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px;
  transform: translateX(-50%); opacity: .6;
}
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

/* Accessibility */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only-focusable:focus { position: static !important; width: auto; height: auto; clip: auto; overflow: visible; background: var(--primary); color:#fff; padding: 8px 12px; border-radius: var(--radius-sm); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Keyword highlights */
.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(var(--primary-rgb), .32) 62%, rgba(var(--primary-rgb), .32) 100%);
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  padding: 0 3px; border-radius: 2px; font-weight: 600;
}
.hl-accent {
  background: linear-gradient(180deg, transparent 62%, rgba(var(--accent-rgb), .38) 62%, rgba(var(--accent-rgb), .38) 100%);
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  padding: 0 3px; border-radius: 2px; font-weight: 600;
}
.hl-bold { color: var(--primary-dark); font-weight: 700; }

/* ================ PROMO BAR ================ */
.promo-bar {
  position: sticky; top: 0; z-index: var(--z-promo);
  height: 40px; background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 60%, var(--accent-dark) 100%);
  color: #fff; font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.promo-bar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.promo-inner { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; overflow: hidden; white-space: nowrap; position: relative; z-index: 1; }
.promo-item { display: inline-flex; align-items: center; gap: 6px; }
.promo-item span.ico { font-size: 1rem; }
@media (max-width: 768px) {
  .promo-bar { font-size: .72rem; }
  .promo-inner { gap: 14px; padding: 0 10px; }
  .promo-item:nth-child(n+3) { display: none; }
}

/* ================ HEADER ================ */
.header {
  position: sticky; top: 40px; z-index: var(--z-header);
  height: var(--header-h); background: rgba(255,255,255,.9);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s, background .25s, transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
html[data-theme="dark"] .header { background: rgba(11, 26, 29, .92); }
@media (prefers-color-scheme: dark) { html:not([data-theme="light"]) .header { background: rgba(11, 26, 29, .92); } }
.header.scrolled { box-shadow: var(--shadow-md); }
.header.header-hidden { transform: translateY(calc(-1 * (var(--header-h) + 48px))); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; font-size: 1.2rem; font-family: var(--font-serif); letter-spacing: -.01em; }
.logo img { width: 34px; height: 34px; border-radius: 8px; }
.logo-text { line-height: 1; }
.logo-text small { display: block; font-family: var(--font-sans); font-size: .7rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; letter-spacing: .04em; text-transform: uppercase; }

.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a { color: var(--text); font-weight: 600; font-size: .92rem; transition: color .2s; position: relative; }
.header-nav a:hover { color: var(--primary); }
.header-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--primary); transition: width .25s; }
.header-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: transparent; color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.theme-toggle:hover { background: var(--bg-alt); border-color: var(--border-strong); }
html[data-theme="dark"] .icon-sun, html:not([data-theme]) .icon-moon { display: block; }
html[data-theme="light"] .icon-sun, html[data-theme="dark"] .icon-moon { display: none; }
html[data-theme="light"] .icon-moon { display: block; }
html[data-theme="dark"] .icon-sun { display: block; }
.theme-toggle svg { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
@media (prefers-color-scheme: dark) { html:not([data-theme]) .theme-toggle .icon-sun { display: block; } }
@media (prefers-color-scheme: light) { html:not([data-theme]) .theme-toggle .icon-moon { display: block; } }

.hamburger {
  display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; border-radius: 10px; border: 1px solid var(--border);
  z-index: var(--z-hamburger); background: transparent;
}
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .header { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hamburger { display: flex; }
  .header-nav {
    position: fixed; top: calc(var(--header-h) + 48px); left: 50%;
    transform: translate(-50%, -10px); width: 92%; max-width: 360px;
    max-height: calc(100dvh - var(--header-h) - 60px);
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: 18px; box-shadow: var(--shadow-lg);
    padding: 18px; gap: 4px; flex-direction: column; align-items: stretch;
    overflow-y: auto; opacity: 0; visibility: hidden; transition: all .25s;
    z-index: var(--z-mobile-nav);
  }
  .header-nav.active { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
  .header-nav a { padding: 12px 14px; border-radius: 10px; text-align: center; font-size: 1.05rem; }
  .header-nav a:hover { background: var(--primary-pale); }
  .header-nav a::after { display: none; }
  .header-cta .btn-cta { display: none; }
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-full);
  font-weight: 700; font-size: .95rem; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap; line-height: 1.2;
}
.btn-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: 14px 26px; box-shadow: var(--shadow-primary);
  animation: pulse-cta-primary 3.2s ease-in-out infinite;
  will-change: transform, box-shadow;
  position: relative; overflow: hidden;
}
.btn-cta::before, .btn-order::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: skewX(-20deg); pointer-events: none;
  animation: btn-shine 4.5s ease-in-out infinite;
}
.btn-cta:hover, .btn-order:hover { transform: translateY(-2px) scale(1.04); animation-play-state: paused; color: #fff; }
.btn-order {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; padding: 16px 32px; font-size: 1.05rem; box-shadow: var(--shadow-accent);
  animation: pulse-cta-accent 3s ease-in-out infinite;
  will-change: transform, box-shadow;
  position: relative; overflow: hidden;
}
.ob-split-btn { animation: pulse-cta-accent 3.2s ease-in-out infinite; }
.btn-ghost { background: var(--bg); color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }

@keyframes pulse-cta-primary {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(var(--primary-rgb), .35); }
  50% { transform: scale(1.04); box-shadow: 0 10px 28px rgba(var(--primary-rgb), .5); }
}
@keyframes pulse-cta-accent {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(var(--accent-rgb), .42); }
  50% { transform: scale(1.05); box-shadow: 0 14px 36px rgba(var(--accent-rgb), .65); }
}
@keyframes btn-shine {
  0%, 72% { left: -60%; }
  78% { left: 130%; }
  100% { left: 130%; }
}
/* Keep old name as alias */
@keyframes pulse-cta {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(var(--primary-rgb), .35); }
  50% { transform: scale(1.04); box-shadow: 0 10px 28px rgba(var(--primary-rgb), .5); }
}

.btn-discount-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--discount-bg); color: var(--discount-color);
  padding: 4px 10px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 800; letter-spacing: .02em; margin-left: 6px;
}

/* ================ PRICE BADGE ================ */
.price-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--discount-bg); color: var(--discount-color);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 800; letter-spacing: .02em;
  animation: badge-pulse 3.8s ease-in-out infinite;
}
.price-badge--sm { padding: 3px 9px; font-size: .7rem; }
@keyframes badge-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.price-block {
  text-align: center; padding: 20px 22px;
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.price-row { display: flex; justify-content: center; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.old-price { font-size: 1.15rem; text-decoration: line-through; opacity: .55; color: var(--text-muted); font-weight: 600; }
.new-price { font-size: 2.2rem; font-weight: 900; color: var(--primary-dark); font-family: var(--font-serif); }
.price-label { display: block; margin-top: 4px; font-size: .82rem; color: var(--text-muted); }
.payment-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 12px; }
.payment-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 5px 10px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 600;
}

/* ================ HERO (Variant A — Split) ================ */
.hero {
  position: relative; overflow: hidden;
  padding: 60px 0 72px;
  background:
    radial-gradient(800px 500px at 10% 30%, rgba(var(--primary-rgb), .09), transparent 60%),
    radial-gradient(700px 400px at 90% 70%, rgba(var(--accent-rgb), .1), transparent 60%),
    var(--bg);
}
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -2px; height: 70px;
  background: var(--bg-alt);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 80%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-extras { grid-column: 1 / -1; max-width: 720px; margin: 10px auto 0; width: 100%; }
.hero-benefits-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hero-benefits-list li {
  padding: 10px 12px 10px 34px; position: relative; font-size: .92rem; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-sm); color: var(--text); line-height: 1.35;
}
.hero-benefits-list .ob-benefit-check {
  position: absolute; left: 10px; top: 10px; width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (max-width: 900px) {
  .hero-benefits-list { grid-template-columns: 1fr; gap: 6px; }
  .hero-benefits-list li { font-size: .88rem; padding: 9px 12px 9px 32px; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-pale); color: var(--primary-dark);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 700; margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span.accent { color: var(--primary-dark); }
.hero-sub { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 22px; max-width: 580px; }

.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; justify-content: flex-start; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 7px 12px; border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 600; box-shadow: var(--shadow-sm);
  white-space: nowrap; flex: 0 0 auto; max-width: 100%;
}
.trust-pill .ico { color: var(--accent); font-size: .95rem; flex-shrink: 0; }
@media (max-width: 560px) {
  .trust-pills { gap: 6px; justify-content: center; padding: 0; }
  .trust-pill { font-size: .72rem; padding: 6px 10px; gap: 5px; }
  .trust-pill .ico { font-size: .82rem; }
}

.urgency-bar {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, #fef3f1, #fff4ea);
  border: 1px solid #f5c7bd; color: var(--danger);
  padding: 8px 14px; border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 700; margin: 14px 0;
  animation: badge-pulse 3.6s ease-in-out infinite;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; align-items: center; }

.hero-product {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
.hero-product::before {
  content: ""; position: absolute; inset: 10%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), .18), transparent 60%);
  filter: blur(40px); z-index: 0;
}
.hero-product img {
  position: relative; z-index: 1;
  max-height: 520px; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(11, 35, 39, .22));
}

.hb {
  position: absolute; z-index: 2;
  background: var(--bg); border: 1px solid var(--border);
  padding: 10px 14px; border-radius: var(--radius-md);
  font-size: .82rem; font-weight: 700; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
}
.hb-oficial { top: 8%; left: 0; color: var(--success); animation: float 7s ease-in-out infinite; }
.hb-rating { bottom: 18%; left: -10px; animation: float 7s ease-in-out 2s infinite; }
.hb-delivery { top: 40%; right: -8px; color: var(--primary-dark); animation: float 7s ease-in-out 1s infinite; }
.hb-rating .stars { color: var(--star-color); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

@media (max-width: 1024px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .trust-pills, .hero-actions, .hero-eyebrow { justify-content: center; }
  .hb { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-product { min-height: 340px; order: 2; }
  .hero-content { order: 1; min-width: 0; }
  .hero-extras { order: 3; min-width: 0; }
  .hero-product img { max-height: 360px; }
  .hero-product .ob { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero { padding: 36px 0 50px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-sub { font-size: .98rem; }
}

/* ================ TRUST BAR ================ */
.trust-bar {
  background: var(--bg-soft);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-stat .num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.trust-stat .lbl { font-size: .85rem; color: var(--text-muted); margin-top: 4px; font-weight: 600; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } .trust-stat .num { font-size: 1.6rem; } }

/* ================ SECTION ================ */
section { padding: 48px 0; }
section.sec-soft { background: var(--bg-soft); }
section.sec-alt { background: var(--bg-alt); }
section.sec-pale { background: linear-gradient(180deg, var(--bg) 0%, var(--primary-pale) 100%); }
section.sec-primary-pale { background: var(--primary-pale); }
section.sec-accent-pale { background: var(--accent-pale); }
@media (max-width: 768px) { section { padding: 36px 0; } }

.sec-eyebrow {
  text-align: center; font-size: .85rem; font-weight: 700; letter-spacing: .12em;
  color: var(--accent-dark); text-transform: uppercase; margin-bottom: 8px;
}
.sec-lead { text-align: center; max-width: 700px; margin: 0 auto 28px; color: var(--text-muted); font-size: 1.05rem; }

.snippet-para {
  background: var(--bg-card); border-left: 4px solid var(--primary);
  padding: 16px 22px; border-radius: var(--radius-md);
  font-size: 1rem; color: var(--text); margin: 0 auto 28px;
  max-width: 820px; box-shadow: var(--shadow-sm);
}

/* ================ CARD (β - Elevated) ================ */
.card {
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ================ QUE ES / FEATURE GRID ================ */
.feature-card { text-align: center; }
.feature-card .ico { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.feature-card h4 { margin-bottom: 6px; }
.feature-card h4::after { content: ""; display: block; width: 28px; height: 2px; background: var(--primary); margin: 8px auto 0; border-radius: 2px; }
.feature-card p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ================ PARA QUE SIRVE — Flow + Mechanism ================ */
.flow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 30px; position: relative;
}
.flow-step {
  background: var(--bg-card); padding: 22px 16px;
  border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary); position: relative;
}
.flow-step .n {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
}
.flow-step h4 { font-size: .98rem; margin: 10px 0 4px; }
.flow-step p { font-size: .84rem; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) { .flow-steps { grid-template-columns: repeat(2, 1fr); } }

.mech-card { text-align: center; padding: 24px 20px; }
.mech-card .emoji { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.mech-card h4 { color: var(--primary-dark); margin-bottom: 6px; }
.mech-card h4::before { content: "•"; color: var(--accent); margin-right: 6px; }
.mech-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* ================ BENEFITS ================ */
.benefit-card { text-align: center; }
.benefit-card .emoji { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.benefit-card h4 { color: var(--primary-dark); position: relative; padding-left: 0; }
.benefit-card h4 span.bar {
  display: block; width: 32px; height: 3px; background: var(--accent); margin: 6px auto 10px; border-radius: 2px;
}

/* ================ VS COMPARISON TABLE ================ */
.vs-table-wrap { margin: 0 auto; max-width: 960px; overflow: visible; }
.vs-table, .price-comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden;
  background: var(--bg-card); border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  table-layout: auto;
}
.vs-table th, .vs-table td,
.price-comp-table th, .price-comp-table td {
  padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .94rem;
  word-break: break-word; overflow-wrap: anywhere; hyphens: auto;
}
.vs-table th, .price-comp-table th {
  background: var(--bg-soft); color: var(--text); font-weight: 800; font-size: .88rem;
  vertical-align: middle; text-align: center;
}
.vs-table th:first-child, .price-comp-table th:first-child { text-align: left; }
.vs-table td, .price-comp-table td { vertical-align: middle; text-align: center; }
.vs-table td:first-child, .price-comp-table td:first-child { text-align: left; }
.vs-table tbody tr:hover, .price-comp-table tbody tr:hover { background: var(--primary-pale); }
.vs-table tr td:first-child, .price-comp-table tr td:first-child { font-weight: 600; color: var(--text); }

.vs-table td:nth-child(2), .price-comp-table td:nth-child(2) {
  background: var(--primary-pale); color: var(--primary-dark); font-weight: 700;
  border-left: 2px solid var(--primary); border-right: 2px solid var(--primary);
}
.vs-table th:nth-child(2), .price-comp-table th:nth-child(2) {
  background: var(--primary-dark); color: #fff;
  box-shadow: inset 0 0 0 2px var(--accent);
  position: relative;
  padding-top: 28px;
}
.vs-table th:nth-child(2)::before, .price-comp-table th:nth-child(2)::before {
  content: "★ TOP"; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: .58rem; font-weight: 800; padding: 2px 9px;
  border-radius: var(--radius-full); letter-spacing: .08em; line-height: 1.2;
  white-space: nowrap;
}
.vs-yes { color: var(--success); font-weight: 700; }
.vs-no { color: var(--danger); font-weight: 700; }

@media (max-width: 768px) {
  .vs-table, .price-comp-table { font-size: .82rem; }
  .vs-table th, .vs-table td,
  .price-comp-table th, .price-comp-table td { padding: 10px 8px; font-size: .78rem; line-height: 1.35; }
  .vs-table th, .price-comp-table th { font-size: .72rem; padding: 12px 6px; }
  .vs-table th:first-child, .vs-table td:first-child,
  .price-comp-table th:first-child, .price-comp-table td:first-child { padding-left: 10px; }
  .vs-table th:last-child, .vs-table td:last-child,
  .price-comp-table th:last-child, .price-comp-table td:last-child { padding-right: 10px; }
}

/* ================ QUIZ ================ */
.quiz-box {
  background: var(--bg-card); max-width: 720px; margin: 0 auto;
  padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.quiz-progress { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 22px; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); width: 20%; transition: width .3s; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; color: var(--text); }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  padding: 14px 18px; background: var(--bg-alt); border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-weight: 600; color: var(--text);
  text-align: left; transition: all .2s; font-size: .95rem;
}
.quiz-opt:hover, .quiz-opt.selected { background: var(--primary-pale); border-color: var(--primary); color: var(--primary-dark); }
.quiz-meter {
  height: 16px; background: linear-gradient(90deg, var(--success), #f5a623 50%, var(--danger));
  border-radius: 8px; position: relative; margin: 18px 0;
}
.quiz-meter-needle {
  position: absolute; top: -6px; width: 4px; height: 28px;
  background: var(--text); border-radius: 2px;
  transform: translateX(-2px); transition: left .8s cubic-bezier(.4, 0, .2, 1);
}
.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; }
.quiz-result h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--primary-dark); }

/* ================ PERSONA ================ */
.persona-card { text-align: center; padding: 26px 20px; }
.persona-card .emoji { font-size: 2.6rem; display: block; margin-bottom: 10px; }
.persona-card h4 { margin-bottom: 6px; }
.persona-card h4 { color: var(--accent-dark); border-left: 3px solid var(--accent); padding-left: 10px; display: inline-block; text-align: left; }
.persona-card p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ================ INGREDIENTS (colored headers) ================ */
.ing-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s;
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ing-head {
  padding: 20px; color: #fff; text-align: center;
}
.ing-head .emoji { font-size: 2.4rem; display: block; margin-bottom: 6px; font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji","Segoe UI Symbol",EmojiOne,sans-serif; }
.ing-head h4 { color: #fff; margin: 0; font-size: 1.15rem; font-weight: 800; }
.ing-head small { display: block; font-family: var(--font-sans); font-size: .78rem; opacity: .9; margin-top: 4px; font-style: italic; }
.ing-body { padding: 20px; text-align: center; }
.ing-body p { color: var(--text-muted); font-size: .92rem; margin: 0 0 10px; }
.ing-body .pmid { display: inline-block; background: var(--bg-soft); color: var(--primary-dark); padding: 3px 9px; border-radius: var(--radius-full); font-size: .72rem; font-weight: 700; }
.ing-card.c1 .ing-head { background: linear-gradient(135deg, #ff5a36, #ec4899); }
.ing-card.c2 .ing-head { background: linear-gradient(135deg, #0f7a85, #06b6d4); }
.ing-card.c3 .ing-head { background: linear-gradient(135deg, #14b8a6, #4ade80); }
.ing-card.c4 .ing-head { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.ing-card.c1 { border-top: 3px solid #ff5a36; }
.ing-card.c2 { border-top: 3px solid #06b6d4; }
.ing-card.c3 { border-top: 3px solid #14b8a6; }
.ing-card.c4 { border-top: 3px solid #8b5cf6; }

/* ================ COLORFUL CARDS (nth-child rainbows) ================ */
.benefit-card, .feature-card, .mech-card, .persona-card { border-top: 4px solid transparent; transition: transform .25s, box-shadow .25s, border-color .25s; }

.benefit-card:nth-child(6n+1), .feature-card:nth-child(6n+1), .mech-card:nth-child(6n+1), .persona-card:nth-child(6n+1) { border-top-color: var(--c1); }
.benefit-card:nth-child(6n+1) .emoji, .feature-card:nth-child(6n+1) .ico, .mech-card:nth-child(6n+1) .emoji, .persona-card:nth-child(6n+1) .emoji { background: var(--c1-pale); }
.benefit-card:nth-child(6n+1) h4, .feature-card:nth-child(6n+1) h4, .mech-card:nth-child(6n+1) h4, .persona-card:nth-child(6n+1) h4 { color: var(--c1); }

.benefit-card:nth-child(6n+2), .feature-card:nth-child(6n+2), .mech-card:nth-child(6n+2), .persona-card:nth-child(6n+2) { border-top-color: var(--c2); }
.benefit-card:nth-child(6n+2) .emoji, .feature-card:nth-child(6n+2) .ico, .mech-card:nth-child(6n+2) .emoji, .persona-card:nth-child(6n+2) .emoji { background: var(--c2-pale); }
.benefit-card:nth-child(6n+2) h4, .feature-card:nth-child(6n+2) h4, .mech-card:nth-child(6n+2) h4, .persona-card:nth-child(6n+2) h4 { color: var(--c2); }

.benefit-card:nth-child(6n+3), .feature-card:nth-child(6n+3), .mech-card:nth-child(6n+3), .persona-card:nth-child(6n+3) { border-top-color: var(--c3); }
.benefit-card:nth-child(6n+3) .emoji, .feature-card:nth-child(6n+3) .ico, .mech-card:nth-child(6n+3) .emoji, .persona-card:nth-child(6n+3) .emoji { background: var(--c3-pale); }
.benefit-card:nth-child(6n+3) h4, .feature-card:nth-child(6n+3) h4, .mech-card:nth-child(6n+3) h4, .persona-card:nth-child(6n+3) h4 { color: var(--c3); }

.benefit-card:nth-child(6n+4), .feature-card:nth-child(6n+4), .mech-card:nth-child(6n+4), .persona-card:nth-child(6n+4) { border-top-color: var(--c4); }
.benefit-card:nth-child(6n+4) .emoji, .feature-card:nth-child(6n+4) .ico, .mech-card:nth-child(6n+4) .emoji, .persona-card:nth-child(6n+4) .emoji { background: var(--c4-pale); }
.benefit-card:nth-child(6n+4) h4, .feature-card:nth-child(6n+4) h4, .mech-card:nth-child(6n+4) h4, .persona-card:nth-child(6n+4) h4 { color: var(--c4); }

.benefit-card:nth-child(6n+5), .feature-card:nth-child(6n+5), .mech-card:nth-child(6n+5), .persona-card:nth-child(6n+5) { border-top-color: var(--c5); }
.benefit-card:nth-child(6n+5) .emoji, .feature-card:nth-child(6n+5) .ico, .mech-card:nth-child(6n+5) .emoji, .persona-card:nth-child(6n+5) .emoji { background: var(--c5-pale); }
.benefit-card:nth-child(6n+5) h4, .feature-card:nth-child(6n+5) h4, .mech-card:nth-child(6n+5) h4, .persona-card:nth-child(6n+5) h4 { color: var(--c5); }

.benefit-card:nth-child(6n+6), .feature-card:nth-child(6n+6), .mech-card:nth-child(6n+6), .persona-card:nth-child(6n+6) { border-top-color: var(--c6); }
.benefit-card:nth-child(6n+6) .emoji, .feature-card:nth-child(6n+6) .ico, .mech-card:nth-child(6n+6) .emoji, .persona-card:nth-child(6n+6) .emoji { background: var(--c6-pale); }
.benefit-card:nth-child(6n+6) h4, .feature-card:nth-child(6n+6) h4, .mech-card:nth-child(6n+6) h4, .persona-card:nth-child(6n+6) h4 { color: var(--c6); }

/* Emoji chip (all colored cards) */
.benefit-card .emoji, .feature-card .ico, .mech-card .emoji, .persona-card .emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 12px;
  font-size: 1.8rem !important;
  transition: transform .3s;
}
.benefit-card:hover .emoji, .feature-card:hover .ico, .mech-card:hover .emoji, .persona-card:hover .emoji { transform: scale(1.08) rotate(-4deg); }

/* Card hover gets colored glow matching its top-border */
.benefit-card:hover, .feature-card:hover, .mech-card:hover, .persona-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(0,0,0,.1); }

/* ================ COMO ACTUA — timeline ================ */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding: 10px 12px; }
.timeline::before {
  content: ""; position: absolute; left: 26px; top: 10px; bottom: 10px;
  width: 2px; background: linear-gradient(180deg, var(--primary), var(--accent));
}
.tl-item { position: relative; padding: 0 0 28px 62px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 14px; top: 0; width: 28px; height: 28px;
  border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; box-shadow: 0 0 0 4px var(--bg);
}
.tl-item h4 { margin-bottom: 6px; color: var(--primary-dark); }
.tl-item p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ================ PRECIO COMPARISON ================ */
.price-vs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 20px 0; }
@media (max-width: 768px) { .price-vs-grid { grid-template-columns: 1fr; } }
.vs-card { padding: 22px; text-align: center; }
.vs-card.primary { border-top: 4px solid var(--primary); position: relative; }
.vs-card.primary::before {
  content: "★ RECOMENDADO"; position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 5px 12px;
  border-radius: var(--radius-full); letter-spacing: .08em;
}
.vs-card h4 { color: var(--primary-dark); font-size: 1.05rem; }
.vs-card .price { font-size: 1.6rem; font-weight: 900; color: var(--primary-dark); font-family: var(--font-serif); margin: 8px 0; }
.vs-card .price small { display: block; font-size: .82rem; font-weight: 500; color: var(--text-muted); font-family: var(--font-sans); }
.savings-badge {
  display: block; text-align: center; margin: 16px auto 0; max-width: 420px;
  background: linear-gradient(135deg, var(--success), #3fa555);
  color: #fff; padding: 14px 20px; border-radius: var(--radius-md);
  font-weight: 800; font-size: 1.02rem; box-shadow: var(--shadow-md);
}

/* ================ COMO TOMARLO ================ */
.take-step {
  position: relative; padding: 28px 22px 22px; text-align: center;
}
.take-step .take-n {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.3rem; font-family: var(--font-serif); box-shadow: var(--shadow-md);
}
.take-step h4 { margin-top: 10px; color: var(--primary-dark); }
.take-step p { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ================ HOW TO ORDER ================ */
#como-comprar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0a3e47 100%);
  color: #fff;
}
#como-comprar h2 { color: #fff; }
#como-comprar h2::after { background: rgba(255,255,255,.5); }
#como-comprar .sec-lead { color: rgba(255,255,255,.8); }
.os-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
@media (max-width: 768px) { .os-grid { grid-template-columns: 1fr; } }
.os-step {
  background: rgba(255,255,255,.06); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 30px 22px; text-align: center; position: relative;
}
.os-icon {
  width: 84px; height: 84px; border-radius: 18px; margin: 0 auto 18px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.os-icon svg { width: 40px; height: 40px; }
.os-num {
  position: absolute; top: -14px; right: -14px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
}
.os-step h4 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.os-step p { color: rgba(255,255,255,.72); font-size: .93rem; margin: 0; }

/* ================ MID CTA ================ */
.mid-cta {
  background: linear-gradient(135deg, var(--dark-bg), #102e33);
  color: #fff; padding: 38px 30px; border-radius: var(--radius-lg);
  text-align: center; max-width: 960px; margin: 0 auto; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.mid-cta::before {
  content: ""; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), .18), transparent 60%);
}
.mid-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; position: relative; }
.mid-cta p { color: rgba(255,255,255,.8); margin-bottom: 22px; position: relative; }
.mid-cta .mid-img { max-width: 200px; margin: 0 auto 14px; position: relative; }
.mid-cta .price-row { justify-content: center; }
.mid-cta .old-price { color: rgba(255,255,255,.6); }
.mid-cta .new-price { color: #fff; }
.mid-cta .btn-order { position: relative; margin-top: 16px; }

/* ================ EXPERT QUOTE (not a visible block — used inline in passages only) ================ */

/* ================ TESTIMONIALS ================ */
.trust-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 28px; max-width: 820px; margin-left: auto; margin-right: auto;
}
@media (max-width: 640px) { .trust-stats { grid-template-columns: repeat(2, 1fr); } }
.trust-stat-card {
  text-align: center; padding: 16px 12px;
  background: var(--bg-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.trust-stat-card .v { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.trust-stat-card .l { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

.rating-hist {
  max-width: 520px; margin: 0 auto 30px;
  background: var(--bg-card); padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.rh-row { display: flex; align-items: center; gap: 10px; font-size: .88rem; margin-bottom: 5px; color: var(--text-muted); }
.rh-row .star { color: var(--star-color); width: 44px; flex-shrink: 0; }
.rh-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rh-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 4px; }
.rh-pct { width: 40px; text-align: right; font-weight: 700; color: var(--text); }

.testi-card {
  padding: 22px; text-align: left;
}
.testi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.testi-name { font-weight: 800; color: var(--text); font-size: .95rem; }
.testi-meta { color: var(--text-muted); font-size: .78rem; }
.testi-stars { color: var(--star-color); margin-bottom: 8px; letter-spacing: 2px; }
.testi-text { font-size: .94rem; color: var(--text); line-height: 1.6; font-style: normal; font-weight: 500; font-family: var(--font-sans); }
.testi-verified {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--success); font-size: .75rem; font-weight: 700; margin-top: 8px;
}

/* ================ GUARANTEE ================ */
.guarantee-card {
  max-width: 800px; margin: 0 auto; padding: 30px;
  background: linear-gradient(135deg, var(--primary-pale), var(--accent-pale));
  border: 2px solid var(--primary); border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-md);
}
.guarantee-card .g-ico { font-size: 3rem; display: block; margin-bottom: 8px; }
.guarantee-card h3 { color: var(--primary-dark); }

/* ================ FAQ ================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); margin-bottom: 12px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; font-weight: 700; font-size: 1rem; color: var(--text); text-align: left; background: transparent;
}
.faq-q .chev { width: 18px; height: 18px; transition: transform .25s; flex-shrink: 0; color: var(--primary); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 22px 22px; color: var(--text-muted); font-size: .95rem; line-height: 1.7; }

/* ================ FINAL CTA ================ */
.final-cta {
  padding: 60px 0; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 60%, var(--accent-dark) 140%);
  background-size: 200% 200%; animation: shift-bg 22s ease-in-out infinite;
}
@keyframes shift-bg { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.final-cta h2 { color: #fff; }
.final-cta h2::after { background: rgba(255,255,255,.5); }
.final-cta-wrap { display: flex; justify-content: center; position: relative; z-index: 1; }
.final-cta .ob { max-width: 460px; }

/* ================ ORDER FORM ================ */
.order-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--text); }
.field input {
  padding: 14px 16px; font-size: 1rem; border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); transition: border-color .2s;
  width: 100%;
}
.field input:focus { outline: none; border-color: var(--primary); }
.field input[aria-invalid="true"] { border-color: var(--danger); }
.field .err { font-size: .8rem; color: var(--danger); min-height: 1em; }

/* ================ PHARMACIES / MARKETPLACES SECTION ================ */
.pharm-heading { font-size: 1.1rem; color: var(--text); text-align: center; margin: 28px 0 18px; font-weight: 700; }
.pharm-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; justify-content: center; }
.pharm-grid.pharm-grid-single { grid-template-columns: minmax(220px, 300px); justify-content: center; }
@media (max-width: 1024px) { .pharm-grid { grid-template-columns: repeat(2, 1fr); } .pharm-grid.pharm-grid-single { grid-template-columns: minmax(200px, 280px); } }
.pharm-card {
  padding: 18px 16px; background: var(--bg-card); text-align: center; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; border: 1px solid var(--border);
  color: var(--text);
}
.pharm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--text); }
.pharm-card .emoji { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.pharm-card .name { font-weight: 800; font-size: .95rem; color: var(--text); }
.pharm-card .badge {
  display: inline-block; font-size: .68rem; font-weight: 800;
  background: #fbe5e2; color: var(--danger); padding: 3px 8px; border-radius: var(--radius-full);
  margin-top: 6px;
}

/* ================ STICKY CTA ================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-sticky);
  display: none;
  background: linear-gradient(180deg, var(--dark-bg), #050d0f);
  color: #fff; padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top-left-radius: 14px; border-top-right-radius: 14px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.3);
  transform: translateY(100%); transition: transform .3s;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; gap: 10px; }
.sticky-thumb { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; overflow: hidden; background: #fff; }
.sticky-thumb img { width: 100%; height: 100%; object-fit: contain; }
.sticky-info { flex: 1; min-width: 0; }
.sticky-name { font-family: var(--font-serif); font-size: .95rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.015em; }
.sticky-price { display: flex; gap: 6px; align-items: baseline; margin-top: 2px; }
.sticky-price .old { text-decoration: line-through; opacity: .6; font-size: .8rem; }
.sticky-price .new { color: #fff; font-weight: 900; font-size: .95rem; }
.sticky-cta .btn { padding: 10px 16px; font-size: .85rem; flex-shrink: 0; }
@media (max-width: 768px) { .sticky-cta { display: block; } }

/* ================ FOOTER ================ */
footer {
  background: var(--dark-bg); color: rgba(255,255,255,.75); padding: 48px 0 24px; font-size: .9rem;
}
html[data-theme="light"] footer { background: #0b2327; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 280px); gap: 36px 60px;
  margin: 0 auto 30px; justify-content: center; text-align: center;
  max-width: 760px;
}
.footer-grid .footer-col { display: flex; flex-direction: column; align-items: center; }
.footer-grid .footer-logo { justify-content: center; }
@media (max-width: 640px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } }
footer h5 { color: #fff; font-family: var(--font-sans); font-size: .92rem; font-weight: 800; margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase; }
footer a { color: rgba(255,255,255,.7); display: block; padding: 4px 0; }
footer a:hover { color: #fff; }
.footer-logo { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; color: #fff; font-weight: 800; font-size: 1.1rem; font-family: var(--font-serif); }
.footer-logo img { width: 36px; height: 36px; border-radius: 8px; }
.footer-about p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.65; }
.footer-contact { font-size: .88rem; color: rgba(255,255,255,.7); margin-top: 14px; line-height: 1.7; }
.footer-disc { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.65; }
.footer-mini { font-size: .68rem; color: rgba(255,255,255,.35); margin-top: 8px; }
.footer-legal { text-align: center; margin-top: 16px; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ================ MODAL ================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(6, 18, 20, .82); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg-card); max-width: 400px; width: 100%; max-height: calc(100dvh - 16px); overflow: hidden;
  border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transform: scale(.96); transition: transform .25s;
  position: relative;
}
.modal-overlay.active .modal { transform: scale(1); }
.md-close {
  position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; z-index: 3;
  background: #f3f4f6; border-radius: 50%; color: #374151; font-size: 1.4rem; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.08); line-height: 1;
}
.md-close:hover { background: #e5e7eb; }
.md-body { padding: 0; }
.md-card {
  background: linear-gradient(180deg, #fff 0%, var(--primary-pale) 100%);
  border-radius: 20px; padding: 18px 20px 16px; text-align: center;
  position: relative; overflow: hidden;
}
html[data-theme="dark"] .md-card { background: linear-gradient(180deg, var(--bg-card) 0%, #0f2e33 100%); }
html:not([data-theme="light"]) .md-card { background: linear-gradient(180deg, var(--bg-card) 0%, #0f2e33 100%); }
@media (prefers-color-scheme: light) { html:not([data-theme="dark"]) .md-card { background: linear-gradient(180deg, #fff 0%, var(--primary-pale) 100%); } }
.md-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb),.15), transparent 55%);
  pointer-events: none;
}
.md-hero-img {
  position: relative; z-index: 1; margin: 0 auto 6px;
  width: 130px; height: 130px; display: flex; align-items: center; justify-content: center;
}
.md-hero-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(11,35,39,.2)); }
.md-name {
  font-family: var(--font-serif); font-size: 1.85rem; font-weight: 900; color: var(--text);
  margin: 2px 0 8px; letter-spacing: -.8px; position: relative; z-index: 1;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,.02);
}
html[data-theme="dark"] .md-name,
html:not([data-theme="light"]) .md-name {
  background: linear-gradient(135deg, #7fe0ea 0%, #ffb089 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.md-price-row {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.md-old { font-size: .95rem; color: var(--text); opacity: .6; text-decoration: line-through; font-weight: 600; }
.md-new { font-family: var(--font-serif); font-size: 1.95rem; font-weight: 900; color: var(--accent-dark); letter-spacing: -1.2px; line-height: 1; text-shadow: 0 1px 2px rgba(0,0,0,.08); }
.md-discount {
  background: var(--accent); color: #fff; font-size: .72rem; font-weight: 800;
  padding: 3px 8px; border-radius: 999px; letter-spacing: .3px;
  box-shadow: 0 3px 10px rgba(var(--accent-rgb), .4);
}
.md-free {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--success), #3fa555); color: #fff;
  padding: 6px 16px; border-radius: 999px; font-size: .8rem; font-weight: 700;
  margin: 0 auto 10px; box-shadow: 0 4px 12px rgba(46,170,70,.32);
  position: relative; z-index: 1;
}
.md-free svg { width: 14px; height: 14px; }
.md-benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  padding: 8px 0 10px; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.md-benefit { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.md-benefit-ico {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.md-benefit-ico svg { width: 18px; height: 18px; }
.md-ico-save { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 6px 14px rgba(245,158,11,.38); }
.md-ico-ship { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: 0 6px 14px rgba(var(--primary-rgb),.38); }
.md-ico-cod { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 6px 14px rgba(16,185,129,.38); }
.md-benefit-lbl { font-size: .72rem; font-weight: 800; color: var(--text); line-height: 1.2; text-align: center; letter-spacing: -.1px; }

.md-card .order-form { position: relative; z-index: 1; gap: 7px; }
.md-field {
  position: relative; background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; transition: border-color .2s;
}
.md-field:focus-within { border-color: var(--primary); }
.md-field-ico { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-muted); pointer-events: none; }
.md-field input {
  width: 100%; padding: 11px 12px 11px 36px; border: none; background: transparent;
  color: var(--text); font-size: .96rem; font-weight: 600; font-family: inherit; border-radius: 10px;
}
.md-field input::placeholder { color: var(--text-muted); opacity: .85; font-weight: 500; }
.md-field input.typing { transition: none; }
.md-field input.typing::placeholder {
  color: var(--text); opacity: .7; font-weight: 500;
}
.md-field:has(input.typing) { border-color: var(--border-strong); }
.md-field input:focus { outline: none; }
.md-field--phone { padding-left: 0; }
.md-field--phone .md-prefix {
  background: var(--bg-alt); color: var(--text); font-weight: 700; font-size: .9rem;
  padding: 10px 12px; border-right: 1.5px solid var(--border); border-radius: 8px 0 0 8px;
  flex-shrink: 0;
}
.md-field--phone input { padding-left: 12px; }
.md-submit {
  width: 100%; padding: 12px 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-weight: 800; font-size: .95rem; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  animation: pulse-cta-accent 3s ease-in-out infinite;
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), .42);
  position: relative; overflow: hidden; margin-top: 3px;
}
.md-submit::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: skewX(-20deg); pointer-events: none;
  animation: btn-shine 4.5s ease-in-out infinite;
}
.md-submit:hover { transform: translateY(-1px) scale(1.02); animation-play-state: paused; }
.md-submit:disabled { opacity: .6; cursor: wait; animation: none; }
.md-submit-pill {
  background: rgba(255,255,255,.22); color: #fff; font-size: .78rem; font-weight: 800;
  padding: 3px 9px; border-radius: 999px; letter-spacing: .3px;
}
.md-trust {
  display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 8px;
  color: var(--text); font-size: .76rem; font-weight: 600; justify-content: center;
  opacity: .92;
}
.md-trust span { display: inline-flex; align-items: center; gap: 3px; }
.md-call-note {
  margin-top: 10px; padding: 8px 12px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),.08), rgba(var(--primary-rgb),.1), rgba(var(--accent-rgb),.08));
  border: 1px solid rgba(var(--accent-rgb),.25);
  border-radius: 999px;
  font-size: .74rem; color: var(--text); font-weight: 600; text-align: center;
  line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  letter-spacing: -.1px;
}
.md-call-note strong { color: var(--accent-dark); font-weight: 800; }
.md-call-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-size: .7rem; flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(var(--accent-rgb), .4);
  animation: call-pulse 2.4s ease-in-out infinite;
}
@keyframes call-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.15) rotate(-10deg); }
  30% { transform: scale(1.15) rotate(10deg); }
  45% { transform: scale(1) rotate(0deg); }
}

@media (max-height: 700px) {
  .md-card { padding: 14px 18px 12px; }
  .md-hero-img { width: 100px; height: 100px; margin-bottom: 4px; }
  .md-name { font-size: 1.55rem; margin-bottom: 6px; letter-spacing: -.6px; }
  .md-new { font-size: 1.5rem; }
  .md-price-row { margin-bottom: 7px; }
  .md-free { padding: 5px 14px; margin-bottom: 7px; font-size: .74rem; }
  .md-benefits { padding: 6px 0 7px; margin-bottom: 7px; }
  .md-benefit-ico { width: 30px; height: 30px; }
  .md-benefit-ico svg { width: 16px; height: 16px; }
  .md-call-note { font-size: .68rem; padding: 6px 10px; margin-top: 6px; }
  .md-call-ico { width: 18px; height: 18px; font-size: .6rem; }
}

/* ================ BREADCRUMB ================ */
.breadcrumb { padding: 16px 0; font-size: .85rem; color: var(--text-muted); background: var(--bg-alt); }
.breadcrumb a { color: var(--primary-dark); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-light); }

/* ================ CHART SECTION ================ */
.chart-section {
  background: var(--dark-bg); color: #fff; border-radius: var(--radius-lg);
  padding: 36px 30px; max-width: 820px; margin: 0 auto; box-shadow: var(--shadow-lg);
}
.chart-section h3 { color: #fff; text-align: center; margin-bottom: 24px; }
.chart-bars { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 14px; font-size: .9rem; }
.bar-lbl { width: 100px; flex-shrink: 0; color: rgba(255,255,255,.8); font-weight: 600; }
.bar-outer { flex: 1; height: 24px; background: rgba(255,255,255,.08); border-radius: 6px; overflow: hidden; }
.bar-inner {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 6px; width: 0; transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
  display: flex; align-items: center; padding-left: 10px;
  color: #fff; font-weight: 800; font-size: .78rem;
}

/* ================ BTN DISCOUNT PILL HELPER ================ */
.btn-cta .btn-discount-pill, .btn-order .btn-discount-pill {
  background: rgba(255,255,255,.2); color: #fff;
}

/* ================ PHARMACY PAGE SPECIFIC ================ */
.availability-alert {
  max-width: 760px; margin: 0 auto; padding: 24px 28px;
  background: #fbe5e2; border: 2px solid #f5c7bd; border-left: 6px solid var(--danger);
  border-radius: var(--radius-md);
  color: var(--text);
}
.availability-alert h3 { color: var(--danger); margin-bottom: 8px; }

.pharmacy-mini {
  max-width: 620px; margin: 0 auto; padding: 28px;
  background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  text-align: center;
}
.pharmacy-mini img { max-width: 180px; margin: 0 auto 14px; }

/* ================ 404 ================ */
.notfound-hero { text-align: center; padding: 80px 20px; }
.notfound-hero .big { font-family: var(--font-serif); font-size: 5rem; color: var(--primary-dark); font-weight: 900; line-height: 1; }
.notfound-hero h1 { font-size: 1.8rem; margin: 8px 0 16px; }
.notfound-hero p { color: var(--text-muted); max-width: 520px; margin: 0 auto 22px; }

/* ================ GRACIAS ================ */
.thanks-hero { text-align: center; padding: 70px 20px; }
.thanks-hero .check {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--success), #3fa555);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; box-shadow: var(--shadow-lg);
}
.thanks-hero h1 { color: var(--primary-dark); }

/* ================ UTILITIES ================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.bold { font-weight: 800; }
.pulse-cta { animation: pulse-cta 3.2s ease-in-out infinite; }

.offer-box { text-align: center; padding: 24px; }
.offer-img { max-width: 200px; margin: 0 auto 14px; }

/* Small screens adjustments */
@media (max-width: 480px) {
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  .hero-product { min-height: 260px; }
  .hero-product img { max-height: 280px; }
  .btn-cta, .btn-order { padding: 12px 20px; font-size: .9rem; }
  .card { padding: 18px; }
  .price-block { padding: 16px; }
  .new-price { font-size: 1.8rem; }
  .trust-bar { padding: 22px 0; }
}

/* ================ OFFER BOX V2 (gradient frame + inline form) ================ */
.ob {
  width: 100%; max-width: 420px; padding: 3px; margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px; box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 22px 55px rgba(13,105,115,.18);
  font-family: var(--font-sans);
}
.ob-inner { background: var(--bg-card); border-radius: 17px; padding: 20px; display: flex; flex-direction: column; }
.ob-inner > * { flex-shrink: 0; }
.ob-img-wrap {
  position: relative; height: 200px; border-radius: 13px;
  background: radial-gradient(ellipse at 50% 60%, var(--primary-pale) 0%, var(--bg-card) 70%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; overflow: visible;
}
.ob-img-wrap img { max-height: 180px; width: auto; position: relative; z-index: 1; }
.ob-pill {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 10px; font-weight: 800; padding: 4px 11px;
  border-radius: 999px; letter-spacing: 1.2px;
  box-shadow: 0 4px 12px rgba(15,122,133,.35);
}
.ob-eyebrow { font-size: 10.5px; letter-spacing: 1.8px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; margin-bottom: 2px; text-align: center; }
.ob-title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 800; color: var(--text); letter-spacing: -.4px; margin: 0 0 4px; line-height: 1.15; text-align: center; }
.ob-title .grad {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ob-rating { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; font-size: .82rem; color: var(--text-muted); text-align: center; }
.ob-rating .stars { color: var(--star-color); letter-spacing: 1px; }
.ob-rating strong { color: var(--text); }
.ob-urgency {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 9px 14px;
  background: linear-gradient(90deg, var(--primary-pale), var(--accent-pale));
  border-radius: 10px; margin-bottom: 8px; font-size: 12px;
  text-align: center;
}
.ob-urgency-label { color: var(--primary-dark); display: inline-flex; align-items: center; gap: 6px; letter-spacing: .6px; text-transform: uppercase; font-weight: 700; font-size: 10.5px; }
.ob-urgency-value { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 13px; font-weight: 700; color: var(--accent-dark); letter-spacing: .5px; }
.ob-field { position: relative; margin-bottom: 8px; }
.ob-field input {
  width: 100%; padding: 12px 14px 12px 38px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--bg-alt); color: var(--text); font-size: .95rem; font-family: inherit;
  transition: border-color .2s, background .2s;
}
.ob-field input:focus { outline: none; border-color: var(--primary); background: var(--bg-card); }
.ob-field input[aria-invalid="true"] { border-color: #dc2626; }
.ob-field svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-muted); pointer-events: none; }
.ob-err { color: #dc2626; font-size: .8rem; min-height: 0; margin: 0; }
.ob-err:not(:empty) { min-height: 18px; margin: 2px 0 4px; }
.ob-split-btn {
  width: 100%; border: none; padding: 0; background: transparent;
  border-radius: 12px; overflow: hidden; cursor: pointer;
  display: flex; align-items: stretch; margin: 2px 0 8px;
  box-shadow: 0 6px 18px rgba(217,138,54,.28);
  transition: transform .25s, box-shadow .25s;
  font-family: inherit;
}
.ob-split-btn:hover { transform: translateY(-1px); box-shadow: 0 11px 28px rgba(217,138,54,.42); }
.ob-split-btn:disabled { opacity: .6; cursor: wait; transform: none; }
.ob-split-price {
  padding: 12px 14px; background: var(--bg-card);
  border: 2px solid var(--accent); border-right: none;
  border-radius: 12px 0 0 12px; text-align: left; line-height: 1.1; flex: 0 0 auto;
}
.ob-split-old { font-size: 10px; color: var(--text-muted); text-decoration: line-through; letter-spacing: .3px; margin-bottom: 2px; }
.ob-split-row { display: flex; align-items: baseline; }
.ob-split-new { font-size: 22px; font-weight: 900; color: var(--accent-dark); letter-spacing: -.8px; font-family: var(--font-serif); }
.ob-split-cur { font-size: 11px; font-weight: 800; color: var(--accent-dark); margin-left: 3px; }
.ob-split-cta {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 12.5px; font-weight: 800; letter-spacing: 1.3px;
  text-transform: uppercase; padding: 12px 14px; position: relative; overflow: hidden;
}
.ob-split-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 45%, rgba(255,255,255,.35) 55%, transparent 70%);
  transform: translateX(-120%); transition: transform 1s ease;
}
.ob-split-btn:hover .ob-split-cta::before { transform: translateX(120%); }
.ob-split-cta .arrow { transition: transform .25s; }
.ob-split-btn:hover .ob-split-cta .arrow { transform: translateX(4px); }
.ob-save { text-align: center; font-size: 10.5px; color: var(--text-muted); margin-bottom: 0; }
.ob-save strong { color: var(--text); }
.ob-trust { display: flex; justify-content: center; gap: 16px; margin-top: 12px; font-size: 11px; color: var(--text-muted); flex-wrap: wrap; text-align: center; }
.ob-trust span { display: inline-flex; align-items: center; gap: 5px; }
.ob-trust svg { width: 13px; height: 13px; color: var(--accent-dark); flex-shrink: 0; }

/* Mid-cta offer section */
.ob-section { padding: 60px 0; background: var(--bg-alt); }
.ob-section .container { max-width: 960px; }
.ob-section-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.ob-section h2 { text-align: left; padding-bottom: 0; }
.ob-section h2::after { left: 0; transform: none; }
.ob-section .lead { color: var(--text-muted); font-size: 1.02rem; line-height: 1.65; }
.ob-section ul.ob-benefits { list-style: none; padding: 0; margin: 18px 0 0; }
.ob-section ul.ob-benefits li { padding: 7px 0 7px 28px; position: relative; color: var(--text); font-size: .98rem; }
.ob-section ul.ob-benefits li::before {
  content: "✓"; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
  .ob-section-inner { grid-template-columns: 1fr; gap: 30px; }
  .ob-section h2, .ob-section .lead { text-align: center; }
  .ob-section h2::after { left: 50%; transform: translateX(-50%); }
  .ob { margin: 0 auto; }
}

/* ================ ORDER BUTTONS: GREEN OVERRIDE ================ */
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #22c55e;
  --green-rgb: 22, 163, 74;
}
html[data-theme="dark"] {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #4ade80;
  --green-rgb: 34, 197, 94;
}
.btn-cta,
.btn-order {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 55%, var(--green-dark) 100%);
  box-shadow: 0 6px 18px rgba(var(--green-rgb), .42);
  animation: pulse-cta-green 3.2s ease-in-out infinite;
}
.btn-cta:hover, .btn-order:hover {
  box-shadow: 0 14px 32px rgba(var(--green-rgb), .55);
}
@keyframes pulse-cta-green {
  0%, 100% { transform: scale(1); box-shadow: 0 6px 18px rgba(var(--green-rgb), .42); }
  50% { transform: scale(1.04); box-shadow: 0 14px 36px rgba(var(--green-rgb), .62); }
}
.btn-cta svg, .btn-order svg { flex-shrink: 0; }

/* Offer-box split button — green */
.ob-split-btn {
  box-shadow: 0 6px 18px rgba(var(--green-rgb), .28);
  animation-name: pulse-cta-green;
}
.ob-split-btn:hover { box-shadow: 0 11px 28px rgba(var(--green-rgb), .48); }
.ob-split-price { border-color: var(--green) !important; }
.ob-split-new, .ob-split-cur { color: var(--green-dark); }
.ob-split-cta {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 55%, var(--green-dark) 100%);
}
.ob-split-cta .cart-ico { width: 15px; height: 15px; flex-shrink: 0; }
.ob-trust svg { color: var(--green-dark); }

/* ================ METHODOLOGY BLOCK ================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.method-item {
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}
html[data-theme="dark"] .method-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
.method-item h4 {
  margin: 0 0 8px;
  font-size: 15.5px;
  letter-spacing: -0.005em;
}
.method-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.88;
}
.method-item a {
  color: var(--primary, #2563eb);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.method-item a:hover { opacity: 0.85; }

/* ================ HERO META (dates) ================ */
.hero-meta {
  margin: 6px 0 14px;
  font-size: 13px;
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-meta time { font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .hero-meta { font-size: 12px; } }

/* ================ AUTHOR BOX + YMYL DISCLAIMER ================ */
.author-box {
  display: flex; gap: 14px; align-items: center;
  margin-top: 22px; padding: 14px 16px;
  background: rgba(var(--primary-rgb, 37, 99, 235), 0.04);
  border: 1px solid rgba(var(--primary-rgb, 37, 99, 235), 0.14);
  border-left: 4px solid var(--primary, #2563eb);
  border-radius: 10px;
  max-width: 620px;
}
html[data-theme="dark"] .author-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.10);
  border-left-color: var(--accent, #22c55e);
}
.author-avatar {
  flex: 0 0 44px; width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary, #2563eb), var(--accent, #22c55e));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.author-body { flex: 1; min-width: 0; }
.author-role {
  margin: 0 0 2px; font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase; opacity: 0.72; font-weight: 600;
}
.author-name { margin: 0 0 2px; font-size: 14.5px; line-height: 1.4; }
.author-cred { margin: 0; font-size: 12.5px; opacity: 0.78; line-height: 1.4; }
.author-cred a { color: inherit; text-decoration: underline; }
.author-cred a:hover { color: var(--primary, #2563eb); }

.ymyl-disclaimer {
  margin: 18px 0 0;
  padding: 12px 14px;
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
  font-size: 13px; line-height: 1.55; color: var(--text, #111);
  max-width: 640px;
}
html[data-theme="dark"] .ymyl-disclaimer {
  background: rgba(245, 158, 11, 0.10);
  color: var(--text, #e5e7eb);
}
.ymyl-disclaimer strong { color: #b45309; }
html[data-theme="dark"] .ymyl-disclaimer strong { color: #fbbf24; }
@media (max-width: 640px) {
  .author-box { flex-direction: row; padding: 12px; gap: 10px; }
  .author-name { font-size: 13.5px; }
  .author-cred { font-size: 12px; }
  .ymyl-disclaimer { font-size: 12.5px; }
}
