/* ============================================================
   MENCORE — Uro UP Forte · Redesign 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1E3A8A;
  --navy-mid:    #2563EB;
  --navy-deep:   #0F172A;
  --navy-glow:   rgba(37, 99, 235, .35);
  --red:         #E85D75;
  --red-mid:     #DB2777;
  --red-soft:    rgba(232, 93, 117, .14);
  --silver:      #93C5FD;
  --silver-light:#EFF6FF;
  --white:       #FFFFFF;
  --off:         #F8FAFC;
  --off-2:       #F1F5F9;
  --black:       #0F172A;
  --charcoal:    #1E293B;
  --dark:        #334155;
  --mid:         #64748B;
  --light:       #94A3B8;
  --border:      #E2E8F0;
  --border-soft: #F1F5F9;
  --green:       var(--navy);
  --green-mid:   var(--navy-mid);
  --green-pale:  var(--silver-light);
  --accent:      var(--silver);
  --danger:      var(--red);
  --shadow-xs:   0 1px 3px rgba(15,23,42,.06);
  --shadow-sm:   0 4px 24px rgba(15,23,42,.08);
  --shadow-md:   0 12px 48px rgba(15,23,42,.12);
  --shadow-lg:   0 24px 80px rgba(15,23,42,.16);
  --shadow-red:  0 8px 32px rgba(232,93,117,.32);
  --max-w:       1180px;
  --serif:       'Instrument Serif', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --r:           10px;
  --r-lg:        18px;
  --r-xl:        24px;
  --header-h:    72px;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 48px); }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color .2s, opacity .2s, transform .2s, border-color .2s, background .2s; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.sec { padding: 96px 0; }
.sec-sm { padding: 56px 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--black);
}
h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.65rem); }
h3 { font-size: 1.12rem; }
p  { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--silver); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.lead { font-size: 1.05rem; color: var(--dark); line-height: 1.75; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 100px;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--navy-mid); color: var(--white); box-shadow: var(--shadow-md); }

.btn-green {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-green:hover { background: var(--red-mid); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { color: var(--red); transform: none; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--off); color: var(--navy-deep); }

/* ── Advertorial disclosure ───────────────────────────────── */
.ad-disclosure {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #FFF8DC, #FFF2C2);
  color: #1A1A1A;
  border-bottom: 1px solid #E5C95A;
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  min-height: 32px;
}
.ad-disclosure strong { font-weight: 800; color: #000; }
.ad-disclosure .ad-disclosure-sep { opacity: .45; }
.ad-disclosure .ad-disclosure-sub {
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: none;
  font-size: .74rem;
  color: #3A3A3A;
}

/* ── Scroll progress ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 32px; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--red));
  z-index: 401;
  transition: width .08s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 300;
  padding: 0 20px;
  transition: top .3s;
}
.site-header.solid { top: 32px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: background .3s, box-shadow .3s;
}
.site-header:not(.solid) .header-inner {
  background: rgba(8,20,40,.82);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  transition: color .3s;
}
.site-header.solid .logo { color: var(--navy-deep); }
.logo span { color: var(--red); }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(184,188,196,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.site-header.solid .logo-mark {
  background: linear-gradient(135deg, var(--red), var(--red-mid));
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.logo-mark svg { width: 20px; fill: none; stroke: var(--silver); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.site-header.solid .logo-mark svg { stroke: var(--white); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a:not(.btn) {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s;
}
.main-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-header.solid .main-nav a:not(.btn) { color: var(--dark); }
.site-header.solid .main-nav a:not(.btn):hover { color: var(--navy); }
.nav-btn { padding: 10px 22px; font-size: .8rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s;
}
.site-header.solid .hamburger span { background: var(--navy-deep); }

.mobile-nav {
  display: none;
  flex-direction: column;
  max-width: var(--max-w);
  margin: 8px auto 0;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 30%, rgba(232,93,117,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 75%, rgba(147,197,253,.14) 0%, transparent 50%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: .6;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 8px 18px 8px 12px;
  margin-bottom: 28px;
}
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
.hero-pill span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 em { color: var(--silver); font-style: italic; font-weight: 500; }
.hero .lead { color: rgba(255,255,255,.62); max-width: 480px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 420px;
}
.hero-num-item {
  flex: 1;
  padding: 20px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.hero-num-item:last-child { border-right: none; }
.hero-num-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-num-item span {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
}

.hero-visual { position: relative; }
.hero-visual-ring {
  position: absolute;
  inset: -24px;
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-visual-inner {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.hero-visual-inner img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}
.hero-float {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.hero-float-icon {
  width: 40px; height: 40px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon svg { width: 20px; stroke: var(--red); fill: none; }
.hero-float strong { display: block; font-size: .85rem; color: var(--black); font-weight: 700; }
.hero-float span { font-size: .72rem; color: var(--mid); }

.hero-left, .hero-right { display: contents; }
.hero-right img { width: 100%; border-radius: var(--r-xl); }
.hero-right-badge, .badge-icon, .badge-text { display: none; }
.hero-numbers { display: contents; }

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px;
  border-right: 1px solid var(--border-soft);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--off); }
.trust-item svg { width: 22px; stroke: var(--navy); fill: none; flex-shrink: 0; }
.trust-item span { font-size: .82rem; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ── Callout ─────────────────────────────────────────────── */
.callout-strip {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.callout-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,.04) 20px, rgba(255,255,255,.04) 21px);
}
.callout-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 28px;
}
.callout-inner blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
}
.callout-inner blockquote em { color: #FFD4D2; font-style: normal; font-weight: 700; }
.callout-cite {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* ── Ingredients ─────────────────────────────────────────── */
.ingredients-sec { background: var(--off); }
.ingredients-sec .sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.ingredients-sec .sec-head .label { justify-content: center; }
.ingredients-sec .sec-head .label::before { display: none; }
.ingredients-sec .sec-head p { text-align: center; margin-top: 16px; }

.ingr-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ingr-row {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  transition: transform .3s, box-shadow .3s;
  min-height: auto;
  cursor: default;
}
.ingr-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ingr-row:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.ingr-num { display: none; }

.ingr-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border: none;
}
.ingr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ingr-row:hover .ingr-img img { transform: scale(1.06); }

.ingr-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ingr-body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ingr-body h3::before {
  content: attr(data-num);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  color: var(--red);
  background: var(--red-soft);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
}
.ingr-body .lead { font-size: .92rem; margin-bottom: 16px; flex: 1; }
.ingr-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.ingr-pill {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--navy);
  background: var(--silver-light);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}
.ingr-index-line { display: none; }

/* ── Steps ───────────────────────────────────────────────── */
.steps-sec {
  background: var(--navy-deep);
  padding: 88px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.steps-head { text-align: center; margin-bottom: 52px; }
.steps-head .label { justify-content: center; color: var(--red); }
.steps-head .label::before { display: none; }
.steps-head h2 { margin-top: 8px; color: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.step-card:hover {
  border-color: rgba(196,30,58,.4);
  background: rgba(255,255,255,.07);
}
.step-num {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  background: var(--red-soft);
  padding: 6px 12px;
  border-radius: 100px;
  position: static;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: .08em;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-icon svg { width: 24px; stroke: var(--red); fill: none; }
.step-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.7; }

/* ── Stat callout ────────────────────────────────────────── */
.stat-callout {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stat-callout::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,93,117,.22) 0%, transparent 70%);
  pointer-events: none;
}
.stat-callout-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-callout-main { display: flex; align-items: center; gap: 28px; }
.stat-big {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-callout-text h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; font-family: var(--sans); }
.stat-callout-text p { color: rgba(255,255,255,.6); font-size: .9rem; margin: 0; max-width: 340px; }

/* ── Product ─────────────────────────────────────────────── */
.product-sec {
  background: var(--navy);
  position: relative;
}
.product-sec .label { color: var(--silver); }
.product-sec .label::before { background: var(--red); }
.product-sec h2 { color: var(--white); }
.product-sec .lead { color: rgba(255,255,255,.75); }
.product-sec > .container > .product-wrap > .product-text > p { color: rgba(255,255,255,.6); }
.product-sec .feat-item { color: rgba(255,255,255,.85); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.product-sec .feat-item::before { background: var(--red); }
.product-sec .product-note { color: rgba(255,255,255,.45); border-left-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); padding: 16px 20px; border-radius: 0 var(--r) var(--r) 0; border-left: 3px solid var(--red); }
.product-sec .ingr-tags a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.product-sec .ingr-tags a:hover { border-color: var(--red); color: var(--white); }
.product-sec .proof-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.product-sec .proof-card-text strong { color: var(--white); }
.product-sec .proof-card-text span { color: rgba(255,255,255,.5); }
.product-sec .proof-card-icon { background: rgba(196,30,58,.2); }
.product-sec .proof-card-icon svg { stroke: var(--red); }
.product-sec .btn-dark { background: var(--red); box-shadow: var(--shadow-red); }
.product-sec .btn-dark:hover { background: var(--red-mid); }

.product-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.product-photo { position: relative; }
.product-photo-inner {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, #1e3a8a 0%, #0f172a 55%, #020617 100%);
  border: 1px solid rgba(147,197,253,.18);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-red);
  border: 3px solid var(--navy);
}
.product-badge strong {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.product-badge span { font-size: .58rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

.product-text .label { margin-bottom: 14px; }
.product-text h2 { margin-bottom: 16px; }
.product-text .lead { margin-bottom: 14px; }
.product-text > p { margin-bottom: 28px; }

.ingr-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.ingr-tags a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .2s;
}

.feat-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1px solid var(--border-soft);
}
.feat-item::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.product-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px; }
.proof-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.proof-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
}
.proof-card-icon svg { width: 18px; stroke: var(--navy); fill: none; }
.proof-card-text strong { display: block; font-size: .78rem; color: var(--black); line-height: 1.2; }
.proof-card-text span { font-size: .68rem; color: var(--mid); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-sec { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-aside .label { margin-bottom: 14px; }
.contact-aside h2 { margin-bottom: 16px; }
.contact-aside .lead { margin-bottom: 36px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-list li:first-child { border-top: 1px solid var(--border-soft); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--off);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; stroke: var(--navy); fill: none; }
.ci-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--light);
  margin-bottom: 3px;
}
.ci-val { font-size: .92rem; font-weight: 500; color: var(--dark); }
.ci-val a { color: var(--dark); }
.ci-val a:hover { color: var(--red); }

.contact-form-box {
  background: var(--navy-deep);
  border-radius: var(--r-xl);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 { color: var(--white); margin-bottom: 4px; font-size: 1.3rem; }
.contact-form-box .sub { font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: .92rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  color: var(--white);
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit { width: 100%; margin-top: 4px; }
.contact-form-box .btn-dark { background: var(--red); border: none; }
.contact-form-box .btn-dark:hover { background: var(--red-mid); }
.form-note { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 14px; text-align: center; }
.form-note a { color: rgba(255,255,255,.7); text-decoration: underline; }
.form-note a:hover { color: var(--white); }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r);
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-sec { background: var(--off); }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-head .label { justify-content: center; }
.faq-head .label::before { display: none; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--navy-mid); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  transition: color .2s;
}
.faq-question:hover { color: var(--navy); }
.faq-icon {
  width: 30px; height: 30px;
  background: var(--off);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.faq-icon svg { width: 12px; stroke: var(--navy); fill: none; transition: stroke .2s; }
.faq-item.open .faq-icon { background: var(--red-soft); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { stroke: var(--red); }
.faq-answer { display: none; padding: 0 24px 20px; }
.faq-answer p { font-size: .9rem; color: var(--mid); line-height: 1.75; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ── Disclaimer ─────────────────────────────────────────── */
.disclaimer {
  background: var(--black);
  padding: 28px 0;
  border-top: 3px solid var(--red);
}
.disclaimer p {
  font-size: .78rem;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin: 0;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.disclaimer strong { color: rgba(255,255,255,.75); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: 64px 0 36px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand .logo { color: var(--white); margin-bottom: 16px; }
.foot-brand .logo span { color: var(--red); }
.foot-brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 260px; }
.foot-col h5 {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.foot-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); margin: 0; }

/* ── Legal pages ────────────────────────────────────────── */
.pg-hero {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  padding: 130px 0 56px;
  position: relative;
  overflow: hidden;
}
.pg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.pg-hero .container { position: relative; z-index: 1; }
.pg-hero .crumb { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.pg-hero .crumb a { color: rgba(255,255,255,.6); }
.pg-hero .crumb a:hover { color: var(--white); }
.pg-hero h1 { color: var(--white); font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 12px; }
.pg-hero p { color: rgba(255,255,255,.55); margin: 0; font-size: 1rem; }
.pg-bar { width: 48px; height: 4px; background: var(--red); margin-top: 24px; border-radius: 4px; }

.content-sec { padding: 64px 0 96px; background: var(--off); }
.content-body {
  max-width: 720px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-soft);
  padding: 48px 52px;
  box-shadow: var(--shadow-sm);
}
.content-body h2 {
  font-size: 1.25rem;
  margin: 40px 0 14px;
  color: var(--black);
  font-family: var(--sans);
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--off);
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { margin-bottom: 1rem; font-size: .92rem; }
.content-body ul { margin: 0 0 1rem 22px; }
.content-body li { margin-bottom: 8px; color: var(--mid); font-size: .92rem; }
.info-box {
  background: var(--off);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-top: 40px;
}
.info-box h3 { margin-bottom: 14px; font-size: 1rem; color: var(--black); }
.info-box p { margin-bottom: 6px; font-size: .88rem; }

.page-hero, .contact-info-card, .contact-page-grid { display: none; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { gap: 40px; }
  .product-wrap, .contact-wrap { gap: 48px; }
  .footer-top { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { margin-inline: auto; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .ingr-list { grid-template-columns: 1fr; }
  .ingr-row:last-child:nth-child(odd) { max-width: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .product-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .product-proof { grid-template-columns: 1fr; }
  .stat-callout-inner { flex-direction: column; text-align: center; }
  .stat-callout-main { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-body { padding: 32px 28px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .hero-grid { padding: 0 20px; }
  .sec { padding: 72px 0; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-soft); justify-content: flex-start; padding: 18px 24px; }
  .trust-item:last-child { border-bottom: none; }
  .hero-stats { flex-direction: column; max-width: 100%; }
  .hero-num-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-num-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
  .site-header { padding: 0 12px; }
  .header-inner { padding: 0 18px; border-radius: var(--r-lg); }
  .ad-disclosure { font-size: .68rem; letter-spacing: .08em; }
  .ad-disclosure .ad-disclosure-sub { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .product-badge { width: 80px; height: 80px; top: 8px; right: 8px; }
  .product-photo-inner { aspect-ratio: 4/3; }
}
