@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ─────────────────────────────────────────────
   FONT RULE:
   • Bebas Neue   → hero giant text, stats, marquee, nav logo, step numbers only
   • Playfair Display → all section headings (mixed case, elegant)
   • DM Sans      → body, labels, buttons, captions
   • Cormorant    → italic accents, taglines
───────────────────────────────────────────── */

:root {
  --red:       #e8260a;
  --red-dark:  #b81d07;
  --red-light: #fef2f0;
  --white:     #ffffff;
  --off-white: #fafafa;
  --black:     #1a1a1a;
  --charcoal:  #2d2d2d;
  --mid:       #f4f4f4;
  --border:    rgba(0,0,0,0.08);
  --text-muted:rgba(26,26,26,0.38);
  --text-dim:  rgba(26,26,26,0.58);
  --text-body: rgba(26,26,26,0.80);

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-italic:  'Cormorant Garamond', serif;

  --logo-bar-h: 64px;
  --nav-h:      0px;
}

/* ═══ RESET ═══ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }

/* ═══ NOISE TEXTURE ═══ */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
}

/* ═══════════════════════════════════════════════
   FIXED LOGO BAR — TOP
   Always visible, scrolls with sticky position
═══════════════════════════════════════════════ */
.logo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--logo-bar-h);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 600;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
}
.logo-bar-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
/* Buy Now button inside logo bar */
.logo-bar-buy {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  
  white-space: nowrap;
  transition: background .3s;
  flex-shrink: 0;
}
.logo-bar-buy:hover { background: var(--red-dark); }

nav {
  position: fixed;
  top: var(--logo-bar-h);
  left: 0; right: 0;
  z-index: 500;
  padding: 0 40px;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.nav-logo { display: none; }
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(26,26,26,.6); text-decoration: none;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  transition: color .3s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  border: 1px solid rgba(232,38,10,.5) !important;
  padding: 8px 20px; border-radius: 2px; color: var(--red) !important;
  transition: background .3s, color .3s !important;
}
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); transition: transform .3s, opacity .3s;
}

/* ═══ PAGE OFFSET — push content below both bars ═══ */
.page-start { padding-top: calc(var(--logo-bar-h) + 56px); }

/* ═══ MARQUEE ═══ */
.marquee-wrap {
  position: relative; z-index: 10;
  background: var(--red); padding: 10px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  justify-content: center;
  min-width: 200%;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: .88rem; letter-spacing: .32em;
  padding: 0 36px; color: var(--white); opacity: .9;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-dark {
  background: #f5f5f5;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.marquee-dark .marquee-track { animation-duration: 30s; animation-direction: reverse; }
.marquee-dark .marquee-track span { color: rgba(26,26,26,.3); font-size: .8rem; }

/* ═══ SECTION SHARED ═══ */
section { position: relative; overflow: hidden; }
#hero { overflow: visible; }
.section-label {
  font-size: .62rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 20px; opacity: 0;
  font-family: var(--font-body); font-weight: 400;
}

/* ═══════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 56px 60px;
  gap: 40px;
  background: #ffffff;
  min-height: calc(100vh - var(--logo-bar-h) - 56px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(30,100,220,.08);
  border: 1px solid rgba(30,100,220,.2);
  border-radius: 2px; padding: 8px 16px;
  margin-bottom: 28px; opacity: 0;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1e64dc; animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-eyebrow-text {
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: #1e64dc; font-family: var(--font-body);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.8vw, 88px);
  letter-spacing: .04em; line-height: .92;
  margin-bottom: 24px; opacity: 0; color: #111;
}
.hero-h1 em { font-style: normal; color: var(--red); }
.hero-h1 .world-first {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: .1em; color: var(--text-dim);
  display: block; font-weight: 300; margin-bottom: 8px;
}
.hero-body {
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(26,26,26,.68); line-height: 1.8;
  max-width: 480px; margin-bottom: 40px; opacity: 0;
}
.hero-body strong { color: #111; font-weight: 500; }
.hero-price { opacity: 0; transform: translateY(20px); }
.hero-ctas {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap; margin-bottom: 48px; opacity: 0;
}
.btn-primary {
  display: inline-block; padding: 16px 44px;
  background: var(--red); color: var(--white);
  text-decoration: none; font-size: .72rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  border: none; 
  position: relative; overflow: hidden;
  transition: background .3s;
  box-shadow: 0 0 28px rgba(232,38,10,.35);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%); transition: transform .45s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 0 40px rgba(232,38,10,.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(26,26,26,.55); text-decoration: none;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid rgba(26,26,26,.2);
  padding-bottom: 2px; transition: color .3s, border-color .3s;
}
.btn-secondary:hover { color: #111; border-color: #111; }
.btn-secondary svg { transition: transform .3s; }
.btn-secondary:hover svg { transform: translateX(4px); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item::before {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: #1e64dc; flex-shrink: 0;
}
.trust-text {
  font-size: .68rem; color: rgba(26,26,26,.45);
  letter-spacing: .08em; text-transform: uppercase;
}

/* Hero right */
.hero-right {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 100%; min-height: 500px;
}
#ray-canvas { position: absolute; inset: 0; pointer-events: none; }
#particle-canvas { position: absolute; inset: 0; pointer-events: none; opacity: .6; }
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 160px);
  color: rgba(30,100,220,.04);
  white-space: nowrap; text-align: center; line-height: .88;
  pointer-events: none; filter: blur(1.5px); user-select: none;
}
.product-stage {
  position: relative; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.glow-core {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,100,220,.22) 0%, rgba(30,100,220,.07) 38%, transparent 70%);
  filter: blur(50px); pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%,-54%);
}
.product-shadow { display: none; }
.product-wrap {
  position: relative; z-index: 22;
  width: clamp(240px, 24vw, 340px);
  will-change: transform; perspective: 1200px;
}
.product-wrap img {
  width: 100%; height: auto;
  filter: drop-shadow(0 0 40px rgba(232,38,10,.28));
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(72deg);
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(30,100,220,.18);
  pointer-events: none; z-index: 19;
  animation: orbitSpin 20s linear infinite;
}
.orbit-ring-2 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotateX(72deg) rotateZ(60deg);
  width: 210px; height: 210px; border-radius: 50%;
  border: 1px solid rgba(30,100,220,.10);
  pointer-events: none; z-index: 19;
  animation: orbitSpin 14s linear infinite reverse;
}
@keyframes orbitSpin {
  from { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(0deg); }
  to   { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(360deg); }
}
#molecule-canvas {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 460px; height: 460px;
  pointer-events: none; z-index: 21;
}
.scroll-indicator {
  position: absolute; bottom: 3%; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; z-index: 30; opacity: .35;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(30,100,220,.4));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-text { font-size: .55rem; letter-spacing: .35em; text-transform: uppercase; color: rgba(30,100,220,.5); }
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: .9; transform: scaleY(1.3); }
}

/* ═══ CRO STRIP ═══ */
.cro-strip {
  background: var(--red); padding: 20px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cro-strip p {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700; color: var(--black);
  letter-spacing: .02em;
}
.btn-white {
  background: var(--white); color: var(--red);
  text-decoration: none; font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 14px 36px; white-space: nowrap; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.btn-white:hover { background: var(--white); color: var(--white); }

/* ═══════════════════════════════════════════════
   2. ABOUT
═══════════════════════════════════════════════ */
#about { padding: 120px 56px; background: var(--off-white); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 32px; opacity: 0;
  letter-spacing: -.01em;
}
.about-headline em { font-style: italic; color: var(--red); font-weight: 700; }
.about-body {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text-body); line-height: 1.9; opacity: 0;
}
.about-body p { margin-bottom: 18px; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--black); font-weight: 600; }
.about-tagline {
  margin-top: 36px;
  font-family: var(--font-italic); font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--text-dim); letter-spacing: .06em; opacity: 0;
  border-left: 3px solid var(--red); padding-left: 20px;
}
.about-right { opacity: 0; display: flex; flex-direction: column; justify-content: center; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: rgba(0,0,0,.06); margin-top: 0;
  border: 1px solid rgba(0,0,0,.06);
}
.about-stat {
  background: #fff; padding: 36px 24px; text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.about-stat-upto {
  font-family: var(--font-body);
  font-size: .58rem; color: var(--text-muted);
  letter-spacing: .2em; text-transform: uppercase;
  display: block; height: 16px; line-height: 16px;
  margin-bottom: 2px;
}
/* Spacer for stats without an "Upto" label — keeps numbers aligned */
.about-stat-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--red); display: block; letter-spacing: .05em;
  line-height: 1;
}
/* For stats without upto label, spacer span handles alignment */
.about-stat-lbl {
  font-size: .62rem; color: var(--text-muted);
  letter-spacing: .2em; text-transform: uppercase;
  margin-top: 6px; display: block;
}

/* ═══════════════════════════════════════════════
   3. WHY breathEN — 5 KEY POINTS
═══════════════════════════════════════════════ */
#why { padding: 120px 56px; background: var(--white); }
.why-header { text-align: center; margin-bottom: 72px; }
.why-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 800; line-height: 1.1; opacity: 0;
  letter-spacing: -.01em;
}
.why-title em { font-style: italic; color: var(--red); }
.why-sub {
  font-size: clamp(14px, 1.2vw, 17px); color: var(--text-dim);
  margin-top: 16px; opacity: 0;
  max-width: 540px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.why-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 2px; background: rgba(0,0,0,.06);
  max-width: 1200px; margin: 0 auto;
}
.why-card {
  background: var(--white); padding: 0 0 32px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  cursor: default; transition: background .4s, box-shadow .3s;
}
.why-card:hover { background: #fff8f7; box-shadow: 0 4px 24px rgba(232,38,10,.08); }
/* spotlight */
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(350px circle at var(--mx,50%) var(--my,50%),
    rgba(232,38,10,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.why-card:hover::before { opacity: 1; }
.why-card-img { width: 100%; height: auto; object-fit: fill; margin-bottom: 16px; }
.why-card:hover .why-card-img { opacity: .92; }
.why-card-num {
  position: absolute; top: 12px; right: 14px;
  font-family: var(--font-italic); font-size: 2rem;
  color: rgba(232,38,10,.1); font-weight: 300;
}
.why-card-body { padding: 0 22px; }
.why-card-icon { font-size: 1.4rem; margin-bottom: 10px; display: block; opacity: .7; }
.why-card-title {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 10px;
  display: block; line-height: 1.3;
  letter-spacing: -.01em;
}
.why-card-desc {
  font-size: .76rem; color: var(--text-muted); line-height: 1.75;
}
.why-card-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s;
}
.why-card:hover .why-card-line { transform: scaleX(1); }

/* ═══════════════════════════════════════════════
   4. PRODUCT
═══════════════════════════════════════════════ */
#product { padding: 120px 56px; background: var(--off-white); }
.product-header { text-align: center; margin-bottom: 72px; }
.product-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 800; line-height: 1.1; opacity: 0;
  letter-spacing: -.01em;
}
.product-title em { font-style: italic; color: var(--red); }

/* Benefits tabs */
.benefits-section { max-width: 1200px; margin: 0 auto 100px; }
.benefits-tabs {
  display: flex; gap: 2px;
  background: rgba(0,0,0,.06); margin-bottom: 0;
}
.benefit-tab {
  flex: 1; padding: 16px 20px;
  font-family: var(--font-body); font-size: .8rem;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); background: var(--off-white);
  border: none; cursor: pointer; transition: color .3s, background .3s;
  text-align: center;
}
.benefit-tab.active { color: var(--black); background: #fff; border-bottom: 2px solid var(--red); }
.benefit-tab-indicator { height: 2px; background: rgba(0,0,0,.06); position: relative; }
.benefits-content { display: none; }
.benefits-content.active { display: grid; grid-template-columns: 1fr 1fr; }
/* IMAGE — full, never cropped */
.benefits-img {
  width: 100%; height: 100%;
  min-height: 400px; max-height: 560px;
  object-fit: contain;          /* show full image */
  object-position: center;
  background: #f4f4f4;
  display: block;
}
.benefits-text {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
  background: #fff; border-left: 1px solid rgba(0,0,0,.06);
}
.benefits-text .section-label { opacity: 1; }
.benefits-text-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -.01em;
}
.benefits-text-title em { font-style: italic; color: var(--red); }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.benefit-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .85rem; color: var(--text-body); line-height: 1.6;
}
.benefit-list li::before {
  content: '✦'; color: var(--red);
  flex-shrink: 0; font-size: .6rem; margin-top: 4px;
}
.benefit-list li strong { color: var(--black); font-weight: 600; }

/* How to use */
.howto-section { max-width: 1200px; margin: 0 auto 100px; }
.howto-header { margin-bottom: 48px; }
.howto-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800; line-height: 1.1; opacity: 0;
  letter-spacing: -.01em;
}
.howto-title em { font-style: italic; color: var(--red); }
.howto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0,0,0,.06); }
.howto-steps { background: #fff; padding: 48px; border: 1px solid rgba(0,0,0,.06); }
.howto-step {
  display: flex; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,.06);
  opacity: 0; transform: translateX(-20px);
}
.howto-step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; flex-shrink: 0;
}
.step-content h4 {
  font-family: var(--font-heading);
  font-size: .95rem; font-weight: 700;
  color: var(--black); margin-bottom: 6px; letter-spacing: -.01em;
}
.step-content p { font-size: .8rem; color: var(--text-muted); line-height: 1.65; }
.howto-visual { position: relative; overflow: hidden; }
/* FULL image — no crop */
.howto-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: contain;
  object-position: center;
  background: #f4f4f4;
  display: block;
}
.howto-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(240,240,240,.15) 0%, transparent 50%);
  pointer-events: none;
}
.howto-video-link {
  position: absolute; bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  padding: 12px 20px; text-decoration: none;
  border: 1px solid rgba(0,0,0,.1);
  transition: border-color .3s;
}
.howto-video-link:hover { border-color: var(--red); }
.video-link-text {
  font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--black);
}
.video-link-sub { font-size: .6rem; color: var(--text-dim); letter-spacing: .08em; }

/* Product callouts */
.product-callouts {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(0,0,0,.06);
}
.callout-card {
  background: #fff;
  opacity: 0; transform: translateY(20px);
}
/* Full image */
.callout-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f0f0f0;
  display: block;
  max-height: 320px;
}
.callout-text { padding: 40px 40px; }
.callout-text .section-label { opacity: 1; }
.callout-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 12px; letter-spacing: -.01em;
}
.callout-title em { font-style: italic; color: var(--red); }
.callout-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   5. TESTIMONIALS
═══════════════════════════════════════════════ */
#testimonials { padding: 120px 56px; background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 800; line-height: 1.1; opacity: 0;
  letter-spacing: -.01em;
}
.testimonials-title em { font-style: italic; color: var(--red); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; max-width: 1100px; margin: 0 auto;
  background: rgba(0,0,0,.06);
}
.testimonial-card {
  background: #fafafa; padding: 48px 40px;
  opacity: 0; transform: translateY(20px); position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%),
    rgba(232,38,10,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s; pointer-events: none;
}
.testimonial-card:hover::before { opacity: 1; }
.quote-mark {
  font-family: var(--font-italic);
  font-size: 5rem; color: rgba(232,38,10,.15);
  line-height: .6; margin-bottom: 16px; display: block;
}
.testimonial-text {
  font-family: var(--font-italic);
  font-size: clamp(15px, 1.4vw, 21px);
  font-style: italic; color: var(--text-body);
  line-height: 1.7; margin-bottom: 28px;
}
.author-name {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; color: var(--black);
}
.author-title {
  font-size: .68rem; color: var(--red);
  letter-spacing: .18em; text-transform: uppercase; margin-top: 4px;
  display: block;
}
.fire-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px;
  background: rgba(232,38,10,.08);
  border: 1px solid rgba(232,38,10,.2);
  padding: 8px 14px; font-size: .64rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
}

/* ═══════════════════════════════════════════════
   6. FAQ
═══════════════════════════════════════════════ */
#faq { padding: 120px 56px; background: var(--off-white); }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 800; line-height: 1.1; opacity: 0;
  letter-spacing: -.01em;
}
.faq-title em { font-style: italic; color: var(--red); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); opacity: 0; transform: translateY(16px); }
.faq-question {
  display: flex; justify-content: space-between;
  align-items: center; padding: 22px 0; cursor: pointer; gap: 20px;
}
.faq-q-text {
  font-family: var(--font-body); font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400; color: var(--black); line-height: 1.5;
}
.faq-toggle {
  width: 28px; height: 28px; border: 1px solid rgba(0,0,0,.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.faq-toggle svg { transition: transform .35s; color: var(--black); }
.faq-item.open .faq-toggle { background: var(--red); border-color: var(--red); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .35s; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: clamp(13px, 1.1vw, 15px); color: var(--text-body); line-height: 1.85;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.faq-answer-inner ul li { display: flex; gap: 10px; align-items: flex-start; }
.faq-answer-inner ul li::before { content: '·'; color: var(--red); font-size: 1.2rem; line-height: 1; }
.faq-cta { margin-top: 48px; text-align: center; opacity: 0; }
.faq-cta p { font-size: .85rem; color: var(--text-muted); letter-spacing: .1em; margin-bottom: 16px; }

/* ═══════════════════════════════════════════════
   7. CTA
═══════════════════════════════════════════════ */
#cta {
  min-height: 60vh; display: flex;
  align-items: center; justify-content: center;
  background: var(--red); padding: 100px 56px;
  position: relative; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none; animation: ctaPulse 5s ease-in-out infinite;
}
@keyframes ctaPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
  font-family: var(--font-italic); font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px); color: rgba(255,255,255,.75);
  letter-spacing: .15em; display: block; margin-bottom: 16px; opacity: 0;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(50px, 9vw, 120px);
  letter-spacing: .04em; line-height: .88; color: #fff;
  margin-bottom: 8px; opacity: 0;
}
.cta-headline span { color: rgba(255,255,255,.5); }
.cta-sub {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: .04em; line-height: .88; color: #fff;
  margin-bottom: 52px; opacity: 0;
}
.btn-magnetic-wrap { display: inline-block; position: relative; opacity: 0; }
.cta-btn {
  display: inline-block; padding: 20px 72px;
  background: #fff; color: var(--red);
  text-decoration: none; font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  border: none; position: relative; overflow: hidden; transition: background .3s, color .3s;
}
.cta-btn:hover { background: var(--black); color: #fff; }

/* ═══════════════════════════════════════════════
   8. CONTACT
═══════════════════════════════════════════════ */
#contact { padding: 100px 56px; background: var(--off-white); border-top: 1px solid var(--border); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px;
}
.contact-brand p {
  font-size: .82rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 20px;
}
.contact-logo-img {
  height: 52px; width: auto; object-fit: contain;
  display: block; margin-bottom: 20px;
}
.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted); text-decoration: none;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(0,0,0,.1); padding: 8px 14px;
  transition: color .3s, border-color .3s;
}
.social-link:hover { color: var(--black); border-color: rgba(232,38,10,.4); }
.contact-col h4 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 20px;
}
.contact-col p, .contact-col a {
  font-size: .82rem; color: var(--text-dim);
  line-height: 1.8; text-decoration: none; display: block; transition: color .3s;
}
.contact-col a:hover { color: var(--red); }

/* ═══ LOGO BAR — FOOTER ═══ */
.logo-bar-footer {
  background: #fff; padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(0,0,0,.06);
}
.logo-bar-footer img {
  height: clamp(32px, 4vw, 48px); width: auto;
  object-fit: contain; display: block; max-width: 300px;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 24px 56px; background: #111;
  display: flex; justify-content: space-between;
  align-items: center; border-top: none;
}
.footer-copy { font-size: .62rem; color: rgba(255,255,255,.35); letter-spacing: .12em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .62rem; color: rgba(255,255,255,.35); text-decoration: none;
  letter-spacing: .12em; text-transform: uppercase; transition: color .3s;
}
.footer-links a:hover { color: var(--red); }

/* ═══ STICKY MOBILE BUY BAR ═══ */
.sticky-buy-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 700; background: var(--white);
  border-top: 1px solid rgba(232,38,10,.35);
  padding: 10px 16px; gap: 12px;
  align-items: center; justify-content: space-between;
}
.sticky-text { font-size: .72rem; color: var(--text-body); line-height: 1.4; }
.sticky-text strong { color: var(--black); display: block; font-weight: 500; }
.sticky-buy-btn {
  flex-shrink: 0; background: var(--red); color: var(--white);
  text-decoration: none; font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 22px; white-space: nowrap;
}

/* ═══ FLOATING CONTACT BUTTONS ═══ */
.float-cta {
  position: fixed; right: 18px; bottom: 90px;
  z-index: 690; display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  transition: transform .25s;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.phone { background: var(--red); }
.float-btn.email { background: #1a73e8; }
.float-btn.whatsapp { background: #25d366; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Logo bar */
  .logo-bar { padding: 0 16px; justify-content: space-between; }
  .logo-bar-img { height: 34px; }
  .nav-hamburger { display: flex; }

  /* Nav — hidden on mobile (hamburger now lives in logo bar) */
  nav { display: none; }
  .nav-links {
    display: none; position: fixed;
    inset: 0; background: rgba(8,8,8,.97);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 28px; z-index: 400;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: .95rem; }

  /* Page offset — only logo bar height now */
  .page-start { padding-top: var(--logo-bar-h); }

  /* Hero */
  #hero {
    display: flex; flex-direction: column;
    padding: calc(var(--logo-bar-h) + 24px) 20px 60px; gap: 0;
    min-height: unset;
  }
  .hero-right { min-height: 360px; width: 100%; order: 2; margin-top: 16px; }
  .hero-left { order: 1; }
  .product-wrap { width: clamp(180px, 58vw, 260px) !important; }
  #molecule-canvas, #smoke-canvas { width: 300px !important; }
  .orbit-ring { width: 210px !important; height: 210px !important; }
  .orbit-ring-2 { width: 160px !important; height: 160px !important; }
  .scroll-indicator { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* About */
  #about, #product, #testimonials, #faq, #cta, #contact { padding: 72px 20px; }
  #why { padding: 72px 0; }
  #why .why-header { padding: 0 20px 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Why grid — single column on mobile, full-width images */
  .why-grid {
    grid-template-columns: 1fr !important;
    max-width: 100%; margin: 0; gap: 0;
    background: none;
  }
  .why-card {
    display: block; padding: 0 0 28px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: #fff !important;
  }
  .why-card-img { width: 100%; height: auto; object-fit: fill; margin-bottom: 16px; }
  .why-card-body { padding: 0 20px; }
  .why-card-num { top: 8px; right: 14px; font-size: 1.6rem; }
  .why-card-line { display: none; }

  /* Benefits */
  .benefits-content.active {
    display: flex !important; flex-direction: column;
  }
  .benefits-img {
    min-height: unset !important; max-height: unset !important;
    width: 100%; height: auto !important;
    aspect-ratio: 4 / 3; object-fit: contain; background: #f4f4f4;
  }
  .benefits-text { padding: 28px 20px; }
  .benefits-tabs { flex-direction: column; }

  /* How to use */
  .howto-grid { grid-template-columns: 1fr !important; }
  .howto-visual { order: -1; }
  .howto-visual img {
    min-height: unset !important;
    height: auto !important; width: 100%;
    aspect-ratio: unset;
    object-fit: contain !important;
    background: #f5f5f5;
  }
  .howto-steps { padding: 28px 20px; }

  /* Callouts */
  .product-callouts { grid-template-columns: 1fr !important; }
  .callout-card--full { grid-template-columns: 1fr !important; }
  .callout-img, .callout-img--tall {
    width: 100%; height: auto !important;
    max-height: unset !important; min-height: unset !important;
    aspect-ratio: 4 / 3; object-fit: contain; background: #f0f0f0;
  }
  .callout-text { padding: 28px 20px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card[style*="grid-column"] { grid-column: 1 / -1 !important; }

  /* CRO strip */
  .cro-strip { flex-direction: column; text-align: center; padding: 20px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr !important; gap: 36px; }

  /* Footer */
  footer { flex-direction: column; gap: 14px; text-align: center; padding: 20px; }
  .footer-links { justify-content: center; }

  /* Sticky bar */
  .sticky-buy-bar { display: flex; }
  body { padding-bottom: 66px; }
  .float-cta { bottom: 82px; }
}

@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .why-card-img { width: 100%; height: auto; object-fit: fill; margin-bottom: 16px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .logo-bar-footer img { max-width: 220px; }
}

/* ═══ MOBILE NAV OVERLAY ═══ */
/* ═══ MOBILE NAV ═══ */

/* Backdrop — dims page behind dropdown */
.mnav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--logo-bar-h);
  z-index: 750;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity .25s ease;
}
.mnav-backdrop.open {
  display: block;
  opacity: 1;
}

/* Dropdown panel */
.mobile-nav-overlay {
  position: fixed;
  top: var(--logo-bar-h);
  left: 0; right: 0;
  z-index: 760;
  background: #111;
  border-bottom: 2px solid rgba(232,38,10,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.75);
  /* slide up by default */
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s cubic-bezier(0.4,0,0.2,1), opacity .25s ease;
}
.mobile-nav-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Links list */
.mnav-links {
  list-style: none;
  padding: 8px 0 8px;
}
.mnav-link {
  display: block;
  padding: 15px 24px;
  text-decoration: none;
  color: rgba(245,243,239,0.72);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .18s, background .18s, padding-left .18s;
  position: relative;
}
.mnav-links li:last-child .mnav-link { border-bottom: none; }
.mnav-link:hover,
.mnav-link:focus {
  color: #fff;
  background: rgba(255,255,255,0.04);
  padding-left: 30px;
  outline: none;
}
.mnav-link--cta {
  color: var(--red) !important;
  font-weight: 500;
  letter-spacing: .18em;
}
.mnav-link--cta:hover,
.mnav-link--cta:focus {
  background: rgba(232,38,10,0.08) !important;
  padding-left: 30px;
}

/* Hamburger → X animation */
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav-link--active {
  color: #fff !important;
  padding-left: 30px;
}
.mnav-link--active::before {
  content: '';
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.play-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play-icon svg { margin-left: 2px; }

/* ═══════════════════════════════════════════════
   WHO breathEN HELPS — NEW SECTION
═══════════════════════════════════════════════ */
#who-helps { padding: 120px 56px; background: var(--white); }
.who-helps-header { text-align: center; margin-bottom: 72px; }
.who-helps-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.01em; color: var(--black);
}
.who-helps-title em { font-style: italic; color: var(--red); }
.who-helps-sub {
  font-size: clamp(14px, 1.2vw, 17px); color: var(--text-dim);
  margin-top: 16px; max-width: 540px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
/* 5-card grid */
.who-helps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,.08);
}
.who-card {
  border-right: 1px solid rgba(0,0,0,.08);
  padding: 36px 28px 40px;
  position: relative;
  transition: background .3s;
  background: #fff;
}
.who-card:last-child { border-right: none; }
.who-card:hover { background: #fff8f7; }
.who-card-accent {
  width: 32px; height: 3px; background: var(--red);
  margin-bottom: 24px;
}
.who-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem; color: rgba(232,38,10,.1);
  position: absolute; top: 16px; right: 20px;
  line-height: 1;
}
.who-card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.who-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: var(--black); margin-bottom: 8px;
  line-height: 1.25;
}
.who-card-subtitle {
  font-size: .72rem; color: var(--red);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px; display: block; font-weight: 500;
}
.who-card-desc {
  font-size: .78rem; color: var(--text-dim);
  line-height: 1.75; margin-bottom: 18px;
}
.who-card-list {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
}
.who-card-list li {
  font-size: .74rem; color: var(--text-body);
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.who-card-list li::before {
  content: '·'; color: var(--red); font-size: 1.1rem; line-height: 1; flex-shrink: 0;
}
.who-card-role {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.who-card-role-label {
  font-size: .6rem; color: var(--text-muted);
  letter-spacing: .18em; text-transform: uppercase; display: block;
  margin-bottom: 8px;
}
.who-card-roles {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.who-card-roles span {
  font-size: .68rem; color: var(--red);
  background: rgba(232,38,10,.06);
  border: 1px solid rgba(232,38,10,.12);
  padding: 3px 10px; border-radius: 2px;
  letter-spacing: .06em;
}

/* ═══ WHO HELPS BOTTOM — photo + breathEN role strip ═══ */
.who-helps-photo-strip {
  max-width: 1200px; margin: 48px auto 0;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 0; border: 1px solid rgba(0,0,0,.08); overflow: hidden;
}
.who-photo-side { position: relative; overflow: hidden; }
.who-photo-side img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center top;
  min-height: 300px; display: block;
  background: #f5f5f5;
}
.who-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  padding: 24px 24px 20px;
  color: #fff; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.who-role-side {
  background: var(--red);
  padding: 48px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.who-role-side h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 48px);
  color: #fff; letter-spacing: .04em; line-height: .95;
  margin-bottom: 28px;
}
.who-role-tagline {
  font-family: var(--font-italic); font-style: italic;
  font-size: clamp(15px, 1.4vw, 20px);
  color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 36px;
}
.who-benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.who-benefit-item {
  display: flex; gap: 10px; align-items: flex-start;
}
.who-benefit-item svg { flex-shrink: 0; margin-top: 2px; }
.who-benefit-text { font-size: .8rem; color: rgba(255,255,255,.85); line-height: 1.5; }

/* ═══ CALLOUT CARD white theme fix ═══ */
.callout-card { background: #fff; opacity: 0; transform: translateY(20px); border: 1px solid rgba(0,0,0,.06); }
.callout-desc { font-size: .82rem; color: var(--text-dim); line-height: 1.7; }

/* ═══ MOBILE for who-helps ═══ */
@media (max-width: 900px) {
  #who-helps { padding: 72px 20px; }
  .who-helps-grid { grid-template-columns: 1fr 1fr; }
  .who-card { border-bottom: 1px solid rgba(0,0,0,.08); }
  .who-helps-photo-strip { grid-template-columns: 1fr; }
  .who-photo-side img { min-height: 280px; }
  .who-role-side { padding: 36px 24px; }
  .who-benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .who-helps-grid { grid-template-columns: 1fr; }
}

/* Why card bullet list */
.why-card-list {
  list-style: none;
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.why-card-list li {
  font-size: .72rem; color: var(--text-dim);
  display: flex; gap: 7px; align-items: flex-start; line-height: 1.5;
}
.why-card-list li::before {
  content: '·'; color: var(--red); font-size: 1rem;
  line-height: 1; flex-shrink: 0; margin-top: 1px;
}
.why-card-desc strong { color: var(--black); font-weight: 600; }

/* Full-width single callout card */
.callout-card--full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.callout-card--full .callout-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.callout-divider {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 28px 0;
}

/* Who-helps video button */
.who-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
  align-self: flex-start;
}
.who-video-btn:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }
.who-video-btn svg { flex-shrink: 0; }

/* Callout tall image — fills height of both text blocks */
.callout-img--tall {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #f5f5f5;
}

/* Callout points spacing */
.callout-point { padding: 0; }
.callout-point + .callout-divider { margin: 24px 0; }

/* ═══ BENEFITS SLIDESHOW ═══ */
.benefits-slideshow {
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  overflow: hidden;
  background: #fff;
}
.slideshow-track { position: relative; }
.slide {
  display: none;
  position: relative;
}
.slide.active { display: block; }
.slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f8f8f8;
}
.slide-label {
  display: block;
  background: #fff;
  color: var(--black);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 500;
  border-left: 3px solid var(--red);
  border-top: 1px solid rgba(0,0,0,.06);
}
.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
}
.slide-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.slide-btn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.08); }
.slide-dots { display: flex; gap: 8px; align-items: center; }
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.18);
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.slide-dot.active { background: var(--red); transform: scale(1.3); }

/* fade animation */
@keyframes slideFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.slide.active img { animation: slideFadeIn .35s ease; }

@media (max-width: 900px) {
  .benefits-slideshow { margin-bottom: 48px; }
  .slide img { max-height: 420px; }
}

/* ═══ UX IMPROVEMENTS ═══ */

/* Better focus visible states for accessibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Why card mobile — reset grid on larger screens */
@media (min-width: 901px) {
  .why-card { display: block; }
  .why-card-img { width: 100%; height: auto; object-fit: fill; margin-bottom: 16px; }
  .why-card-body { padding: 0 22px; }
}

/* Smoother card hover shadow */
.why-card {
  transition: background .3s, box-shadow .3s, transform .3s;
}
.why-card:hover { transform: translateY(-3px); }

/* FAQ — better open state visual */
.faq-item.open .faq-q-text { color: var(--red); }
.faq-item { transition: background .2s; }
.faq-item.open { background: rgba(232,38,10,.02); padding: 0 12px; margin: 0 -12px; border-radius: 4px; }

/* Testimonials — better card border on hover */
.testimonial-card {
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s, border-color .3s, transform .25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: rgba(232,38,10,.15);
  transform: translateY(-2px);
}

/* CRO strip — make btn-white more tactile */
.btn-white { transition: background .25s, color .25s, transform .2s, box-shadow .25s; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

/* Sticky bar — shadow on scroll feel */
.sticky-buy-bar { box-shadow: 0 -2px 16px rgba(0,0,0,.08); }

/* Float buttons — better shadow */
.float-btn { box-shadow: 0 4px 20px rgba(0,0,0,.22), 0 0 0 3px rgba(255,255,255,.9); }

/* Why card list — slightly more spacing */
.why-card-list { margin-top: 12px; }
.why-card-list li { font-size: .75rem; padding: 2px 0; }

/* About stats — hover highlight */
.about-stat {
  transition: background .2s, transform .2s;
  cursor: default;
}
.about-stat:hover { background: #fff8f7; transform: translateY(-2px); }

/* Section labels — consistent red line accent */
.why-header, .about-left, .testimonials-header, .faq-header {
  border-left: none;
}

/* Hero eyebrow pill — subtle pulse on load */
@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,100,220,0); }
  50%       { box-shadow: 0 0 0 6px rgba(30,100,220,.08); }
}
.hero-eyebrow { animation: eyebrowPulse 3s ease-in-out infinite; }

/* Btn-primary — stronger hover feedback */
.btn-primary { transition: background .25s, box-shadow .25s, transform .2s; }
.btn-primary:hover { transform: translateY(-1px); }

/* Contact section links — underline on hover */
.contact-col a { position: relative; }
.contact-col a::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width .3s;
}
.contact-col a:hover::after { width: 100%; }

/* Mobile why card — ensure image fits properly */
@media (max-width: 900px) {
  .why-card-img { width: 100%; height: auto; object-fit: fill; margin-bottom: 16px; }
  .why-card-desc strong { display: inline; }
}

/* Slideshow — add pointer cursor to slides */
.slide { cursor: pointer; }
.slide-btn { cursor: pointer; }

/* Product callout text — better padding mobile */
@media (max-width: 900px) {
  .callout-point { padding: 0; }
  .callout-divider { margin: 20px 0; }
}

/* ═══ LOADING CURTAIN ═══ */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#curtain.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#curtain-logo {
  width: clamp(140px, 40vw, 220px);
  height: auto;
  object-fit: contain;
  animation: curtainPulse 1.2s ease-in-out infinite;
}
@keyframes curtainPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.97); }
}

/* ── PRICING DISPLAY ── */
.hero-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-mrp {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}
.hero-sale {
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
}
.hero-save {
  font-size: 12px;
  font-weight: 600;
  background: #e8f9ee;
  color: #1a8a3a;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: .04em;
}
.sticky-mrp {
  text-decoration: line-through;
  opacity: .6;
  font-size: 12px;
  font-weight: 400;
}
.sticky-sale-price {
  font-weight: 700;
  color: var(--red);
  font-size: 14px;
}
