/* ============================
   TOKENS
============================ */
:root {
  --bg:       #F8F6F1;
  --bg2:      #EEEBE3;
  --surface:  #FFFFFF;
  --dark:     #0A0C0F;
  --dark2:    #141820;
  --ink:      #1A1C22;
  --muted:    #6B7280;
  --border:   rgba(26,28,34,0.10);
  --red:      #C8102E;
  --red-l:    #FFF0F2;
  --gold:     #B8860B;
  --gold-l:   #FEF9E7;
  --teal:     #0E7E6A;
  --teal-l:   #E8F7F4;

  --r-sm: 10px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-pill: 999px;
  --sh-sm: 0 4px 16px rgba(10,12,15,.07);
  --sh-md: 0 16px 48px rgba(10,12,15,.10);
  --sh-lg: 0 32px 96px rgba(10,12,15,.14);

  --ff-h: 'Playfair Display', serif;
  --ff-b: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --d: .26s;
}

/* ============================
   RESET
============================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }
body { font-family:var(--ff-b); background:var(--bg); color:var(--ink); line-height:1.65; overflow-x:hidden; -webkit-font-smoothing:antialiased }
img { max-width:100%; display:block }
a { text-decoration:none; color:inherit }
button { font-family:var(--ff-b); cursor:pointer; border:none; background:none }

.wrap { width:min(1160px,92%); margin:0 auto }

/* ============================
   CHIP / TAG
============================ */
.chip { display:inline-flex; align-items:center; gap:6px; font-family:var(--ff-b); font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 14px; border-radius:var(--r-pill) }
.chip-red  { background:var(--red-l);  color:var(--red) }
.chip-dark { background:var(--dark);   color:#fff }
.chip-teal { background:var(--teal-l); color:var(--teal) }
.chip-gold { background:var(--gold-l); color:var(--gold) }
.chip-white{ background:rgba(255,255,255,.15); color:#fff; border:1px solid rgba(255,255,255,.25) }

/* ============================
   BUTTONS
============================ */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:var(--ff-b); font-weight:600; font-size:15px; padding:14px 28px; border-radius:var(--r-pill); transition:transform var(--d) var(--ease), box-shadow var(--d) var(--ease); white-space:nowrap; line-height:1 }
.btn:active { transform:scale(.97)!important }
.btn-dark  { background:var(--dark);  color:#fff; box-shadow:0 6px 24px rgba(10,12,15,.28) }
.btn-dark:hover  { transform:translateY(-2px); box-shadow:0 12px 36px rgba(10,12,15,.38) }
.btn-red   { background:var(--red);   color:#fff; box-shadow:0 6px 24px rgba(200,16,46,.28) }
.btn-red:hover   { transform:translateY(-2px); box-shadow:0 12px 36px rgba(200,16,46,.4) }
.btn-white { background:#fff; color:var(--ink); box-shadow:0 6px 24px rgba(10,12,15,.12) }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 12px 36px rgba(10,12,15,.2) }
.btn-ghost { background:transparent; color:var(--ink); border:1.5px solid var(--border) }
.btn-ghost:hover { background:var(--surface) }
.btn-xl { padding:18px 38px; font-size:17px }
.btn-sm { padding:10px 20px; font-size:13px }
a.btn { display:inline-flex }

/* ============================
   TOP RIBBON
============================ */
.ribbon { background:var(--dark); padding:10px 0 }
.ribbon-inner { display:flex; align-items:center; justify-content:center; gap:32px; flex-wrap:wrap }
.ribbon-item { display:flex; align-items:center; gap:7px; font-size:12.5px; font-weight:500; color:rgba(255,255,255,.65) }
.ribbon-dot { width:5px; height:5px; border-radius:50%; background:var(--red); flex-shrink:0 }

/* ============================
   NAV
============================ */
.nav { position:fixed; top:38px; left:0; right:0; z-index:100; padding:14px 0; transition:background var(--d), box-shadow var(--d), top var(--d) }
.nav.scrolled { background:rgba(248,246,241,.94); backdrop-filter:blur(20px); box-shadow:0 2px 24px rgba(10,12,15,.07) }
.nav.top-fixed { top:0 }
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:20px }
.logo-mark { display:flex; align-items:center; gap:10px }
.logo-box { width:40px; height:40px; border-radius:12px; background:var(--dark); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:18px }
.logo-txt { font-family:var(--ff-h); font-size:18px; font-weight:700; letter-spacing:-.01em }
.logo-sub { font-size:10px; font-weight:600; color:var(--red); letter-spacing:.1em; text-transform:uppercase; display:block }
.nav-links { display:flex; align-items:center; gap:2px }
.nav-links a { font-size:14px; font-weight:500; padding:8px 14px; border-radius:var(--r-pill); color:var(--muted); transition:background var(--d), color var(--d) }
.nav-links a:hover { background:var(--surface); color:var(--ink) }
.hamburger { display:none; flex-direction:column; gap:5px; padding:8px; border-radius:var(--r-sm) }
.hamburger span { width:22px; height:2px; background:var(--ink); border-radius:2px; display:block }

/* MOBILE MENU */
.mob-menu { position:fixed; inset:0; z-index:150; background:var(--surface); display:flex; flex-direction:column; transform:translateX(100%); transition:transform .35s var(--ease); padding:80px 28px 40px; overflow-y:auto }
.mob-menu.open { transform:translateX(0) }
.mob-menu a { font-family:var(--ff-h); font-size:24px; font-weight:700; padding:14px 0; border-bottom:1px solid var(--border); display:block }
.mob-cta { margin-top:28px }
.mob-close { position:absolute; top:20px; right:24px; width:40px; height:40px; border-radius:50%; background:var(--bg); display:flex; align-items:center; justify-content:center; font-size:18px; transition:background var(--d) }

/* ============================
   HERO
============================ */
.hero { padding:160px 0 96px; position:relative; overflow:hidden; background:var(--dark) }
.hero::before { content:''; position:absolute; width:700px; height:700px; border-radius:50%; background:radial-gradient(circle,rgba(200,16,46,.12),transparent 70%); right:-100px; top:-80px; pointer-events:none }
.hero::after { content:''; position:absolute; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(184,134,11,.07),transparent 70%); left:-80px; bottom:-60px; pointer-events:none }
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; position:relative; z-index:1 }
.hero-pre { margin-bottom:20px }
.hero h1 { font-family:var(--ff-h); font-size:clamp(38px,5.5vw,68px); font-weight:800; line-height:1.06; letter-spacing:-.02em; color:#fff; margin-bottom:22px }
.hero h1 em { font-style:italic; color:var(--red); text-decoration:none }
.hero-sub { font-size:17px; color:rgba(255,255,255,.6); max-width:480px; line-height:1.75; margin-bottom:36px }
.hero-cta { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px }
.hero-trust { display:flex; gap:20px; flex-wrap:wrap }
.trust-chip { display:flex; align-items:center; gap:7px; font-size:13px; font-weight:500; color:rgba(255,255,255,.5) }
.trust-ok { width:20px; height:20px; border-radius:50%; background:rgba(200,16,46,.25); color:var(--red); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; flex-shrink:0 }

/* Hero visual */
.hero-visual { position:relative; padding:16px }
.hcard { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:var(--r-xl); padding:28px; backdrop-filter:blur(12px); animation:hfloat 5s ease-in-out infinite }
@keyframes hfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hcard-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px }
.hcard-label { font-family:var(--ff-h); font-size:15px; font-weight:700; color:#fff }
.hcard-badge { font-size:11px; font-weight:700; padding:4px 10px; border-radius:var(--r-pill); background:rgba(200,16,46,.2); color:var(--red); border:1px solid rgba(200,16,46,.3) }
.hcard-stat { display:flex; align-items:center; gap:16px; padding:14px 16px; background:var(--red); border-radius:var(--r-md); margin-bottom:14px }
.hstat-num { font-family:var(--ff-h); font-size:28px; font-weight:800; color:#fff; line-height:1 }
.hstat-lbl { font-size:12px; color:rgba(255,255,255,.75); font-weight:500 }
.hcard-phases { display:flex; flex-direction:column; gap:8px }
.hphase { display:flex; align-items:center; gap:10px; padding:10px 14px; border-radius:var(--r-sm); font-size:13px; font-weight:500 }
.hphase.done { background:rgba(14,126,106,.2); color:rgba(255,255,255,.8) }
.hphase.active { background:rgba(200,16,46,.15); color:#fff; border:1px solid rgba(200,16,46,.2) }
.hphase.wait { background:rgba(255,255,255,.05); color:rgba(255,255,255,.4) }
.hphase-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0 }
.hphase.done .hphase-dot { background:var(--teal) }
.hphase.active .hphase-dot { background:var(--red); animation:pulse 2s infinite }
.hphase.wait .hphase-dot { background:rgba(255,255,255,.2) }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.fbadge { position:absolute; background:rgba(255,255,255,.1); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.15); border-radius:var(--r-pill); padding:10px 18px; font-size:13px; font-weight:600; color:#fff; display:flex; align-items:center; gap:8px; white-space:nowrap; z-index:3 }
.fb1 { top:-10px; right:24px; animation:hfloat 4s ease-in-out infinite .4s }
.fb2 { bottom:24px; left:-16px; animation:hfloat 5s ease-in-out infinite 1s }

/* ============================
   BRANDS / CERTIFICATIONS
============================ */
.certs { padding:32px 0; border-bottom:1px solid var(--border) }
.certs-inner { display:flex; align-items:center; gap:20px; flex-wrap:wrap }
.certs-label { font-size:12px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; white-space:nowrap }
.certs-row { display:flex; gap:12px; flex-wrap:wrap }
.cert-tag { padding:8px 18px; border-radius:var(--r-pill); background:var(--surface); border:1.5px solid var(--border); font-size:13px; font-weight:600; color:var(--muted); display:flex; align-items:center; gap:6px }

/* ============================
   SECTIONS
============================ */
.section { padding:96px 0 }
.section-dark { background:var(--dark); padding:96px 0 }
.section-alt { background:var(--bg2) }
.sec-hd { text-align:center; margin-bottom:60px }
.sec-hd h2 { font-family:var(--ff-h); font-size:clamp(28px,4vw,50px); font-weight:800; letter-spacing:-.02em; line-height:1.1; margin-top:14px }
.sec-hd p { font-size:17px; color:var(--muted); max-width:540px; margin:14px auto 0; line-height:1.7 }
.sec-hd.light h2 { color:#fff }
.sec-hd.light p { color:rgba(255,255,255,.5) }

/* ============================
   PRODUCTS
============================ */
.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.prod-card { background:var(--surface); border-radius:var(--r-xl); overflow:hidden; border:1.5px solid var(--border); transition:transform var(--d), box-shadow var(--d); display:flex; flex-direction:column }
.prod-card:hover { transform:translateY(-6px); box-shadow:var(--sh-lg) }
.prod-card.best { border-color:var(--red); box-shadow:0 0 0 1px var(--red) }
.prod-img { aspect-ratio:1; background:linear-gradient(135deg,var(--bg2),var(--bg)); display:flex; align-items:center; justify-content:center; font-size:64px; position:relative; overflow:hidden }
.prod-img-bg { position:absolute; inset:0; background:radial-gradient(circle at 50% 60%, rgba(200,16,46,.06), transparent 70%) }
.prod-badge { position:absolute; top:16px; left:16px }
.prod-body { padding:24px; flex:1; display:flex; flex-direction:column }
.prod-lasers { font-size:11px; font-weight:700; color:var(--red); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px }
.prod-name { font-family:var(--ff-h); font-size:22px; font-weight:800; margin-bottom:8px }
.prod-desc { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:16px; flex:1 }
.prod-features { list-style:none; display:flex; flex-direction:column; gap:7px; margin-bottom:22px }
.prod-features li { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted) }
.prod-features li::before { content:'✓'; color:var(--teal); font-weight:800; flex-shrink:0 }
.prod-footer { display:flex; align-items:center; justify-content:space-between; gap:12px }
.prod-price { font-family:var(--ff-h); font-size:26px; font-weight:800; color:var(--ink) }
.prod-price small { font-size:14px; font-weight:500; color:var(--muted); font-family:var(--ff-b) }

/* ============================
   SCIENCE / HOW
============================ */
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.how-card { background:var(--surface); border-radius:var(--r-lg); padding:28px; border:1.5px solid var(--border); transition:transform var(--d), box-shadow var(--d) }
.how-card:hover { transform:translateY(-5px); box-shadow:var(--sh-md) }
.how-icon { width:52px; height:52px; border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:20px }
.hi-red  { background:var(--red-l) }
.hi-teal { background:var(--teal-l) }
.hi-gold { background:var(--gold-l) }
.how-card h3 { font-family:var(--ff-h); font-size:19px; font-weight:700; margin-bottom:10px }
.how-card p { font-size:14px; color:var(--muted); line-height:1.7 }

/* ============================
   TIMELINE
============================ */
.timeline { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--bg2); border-radius:var(--r-lg); overflow:hidden }
.tl-step { padding:36px 28px; background:var(--surface); transition:background var(--d) }
.tl-step:hover { background:var(--bg) }
.tl-month { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; color:var(--red); margin-bottom:10px }
.tl-title { font-family:var(--ff-h); font-size:17px; font-weight:700; margin-bottom:10px }
.tl-desc { font-size:13.5px; color:var(--muted); line-height:1.65 }
.tl-num { font-family:var(--ff-h); font-size:56px; font-weight:800; color:rgba(26,28,34,.05); margin-bottom:8px; line-height:1 }

/* ============================
   STATS
============================ */
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); background:var(--dark); border-radius:var(--r-lg); overflow:hidden }
.stat-box { padding:40px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.07); transition:background var(--d) }
.stat-box:last-child { border-right:none }
.stat-box:hover { background:rgba(255,255,255,.04) }
.stat-num { font-family:var(--ff-h); font-size:clamp(30px,3.5vw,46px); font-weight:800; color:#fff; line-height:1; margin-bottom:6px }
.stat-num span { color:var(--red) }
.stat-lbl { font-size:13px; color:rgba(255,255,255,.45); font-weight:500 }

/* ============================
   BEFORE/AFTER
============================ */
.ba-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px }
.ba-card { background:var(--surface); border-radius:var(--r-lg); overflow:hidden; border:1.5px solid var(--border); transition:transform var(--d), box-shadow var(--d) }
.ba-card:hover { transform:translateY(-4px); box-shadow:var(--sh-md) }
.ba-images { display:grid; grid-template-columns:1fr 1fr; gap:0 }
.ba-side { aspect-ratio:1; background:var(--bg2); display:flex; align-items:center; justify-content:center; position:relative; font-size:40px }
.ba-label { position:absolute; bottom:8px; left:50%; transform:translateX(-50%); font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; padding:3px 8px; border-radius:var(--r-pill); white-space:nowrap }
.ba-label.before { background:rgba(10,12,15,.6); color:rgba(255,255,255,.8) }
.ba-label.after  { background:var(--red); color:#fff }
.ba-body { padding:20px }
.ba-stars { color:#F5A623; font-size:13px; margin-bottom:8px }
.ba-text { font-size:14px; color:var(--muted); line-height:1.7; font-style:italic; margin-bottom:14px }
.ba-author { display:flex; align-items:center; gap:10px }
.ba-av { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--ff-h); font-size:14px; font-weight:700; color:#fff; flex-shrink:0 }
.ba-name { font-size:13px; font-weight:700 }
.ba-loc { font-size:11px; color:var(--muted) }
.ba-chip { display:inline-flex; margin-top:4px; font-size:10px; font-weight:700; padding:2px 8px; border-radius:var(--r-pill); background:var(--teal-l); color:var(--teal) }

/* ============================
   COMPARISON
============================ */
.comp-wrap { background:var(--surface); border-radius:var(--r-xl); border:1.5px solid var(--border); overflow:hidden }
.comp-table { width:100%; border-collapse:collapse }
.comp-table th { padding:20px 24px; font-size:13px; font-weight:700; text-align:center; border-bottom:2px solid var(--bg2) }
.comp-table th:first-child { text-align:left; color:var(--muted) }
.comp-table td { padding:16px 24px; font-size:14px; border-bottom:1px solid var(--bg2); text-align:center }
.comp-table td:first-child { text-align:left; font-weight:600; color:var(--ink) }
.comp-table tr:last-child td { border-bottom:none }
.comp-table tr:hover td { background:var(--bg) }
.comp-col-capillus { background:rgba(200,16,46,.04) }
.comp-yes { color:var(--teal); font-weight:700 }
.comp-no  { color:var(--muted) }
.comp-th-cap { background:rgba(200,16,46,.06); color:var(--red)!important }

/* ============================
   FAQ
============================ */
.faq-wrap { max-width:700px; margin:0 auto; display:flex; flex-direction:column; gap:10px }
.faq-item { background:var(--surface); border-radius:var(--r-md); border:1.5px solid var(--border); overflow:hidden }
.faq-q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; cursor:pointer; font-size:15px; font-weight:600; transition:background var(--d); user-select:none }
.faq-q:hover { background:var(--bg) }
.faq-ico { width:28px; height:28px; border-radius:50%; background:var(--bg); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--muted); transition:transform var(--d), background var(--d) }
.faq-item.open .faq-ico { transform:rotate(45deg); background:var(--red-l); color:var(--red) }
.faq-a { max-height:0; overflow:hidden; transition:max-height .38s var(--ease), padding .38s; padding:0 24px; font-size:14.5px; color:var(--muted); line-height:1.75 }
.faq-item.open .faq-a { max-height:400px; padding:0 24px 20px }

/* ============================
   CTA BAND
============================ */
.cta-band { background:linear-gradient(130deg,var(--red),#8B0A1E); border-radius:var(--r-xl); padding:72px 56px; text-align:center; position:relative; overflow:hidden }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 90% at 85% 40%,rgba(255,255,255,.1),transparent 60%) }
.cta-band h2 { font-family:var(--ff-h); font-size:clamp(26px,4vw,46px); font-weight:800; color:#fff; letter-spacing:-.02em; margin-bottom:14px; position:relative }
.cta-band p { color:rgba(255,255,255,.72); font-size:17px; max-width:480px; margin:0 auto 32px; line-height:1.7; position:relative }
.cta-sub { margin-top:16px; font-size:13px; color:rgba(255,255,255,.5); position:relative }

/* ============================
   FOOTER
============================ */
footer { background:var(--dark); padding:72px 0 36px }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px }
.footer-brand p { font-size:13px; color:rgba(255,255,255,.4); line-height:1.75; margin-top:14px; max-width:260px }
.footer-col h5 { font-family:var(--ff-b); font-size:11px; font-weight:700; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.1em; margin-bottom:18px }
.footer-col a { display:block; font-size:14px; color:rgba(255,255,255,.55); padding:5px 0; transition:color var(--d) }
.footer-col a:hover { color:#fff }
.footer-bot { padding-top:28px; border-top:1px solid rgba(255,255,255,.07); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px }
.footer-bot p { font-size:12.5px; color:rgba(255,255,255,.25) }

/* ============================
   REVEAL
============================ */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .55s ease, transform .55s ease }
.reveal.in { opacity:1; transform:none }

/* ============================
   RESPONSIVE
============================ */
@media(max-width:960px){
  .hero-grid { grid-template-columns:1fr; gap:48px }
  .hero-visual { display:none }
  .products-grid { grid-template-columns:1fr }
  .how-grid { grid-template-columns:1fr }
  .timeline { grid-template-columns:1fr }
  .ba-grid { grid-template-columns:1fr }
  .stats-row { grid-template-columns:repeat(2,1fr) }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px }
  .footer-brand { grid-column:1/-1 }
  .nav-links { display:none }
  .hamburger { display:flex }
}
@media(max-width:600px){
  .section, .section-dark { padding:60px 0 }
  .hero { padding:110px 0 60px }
  .hero h1 { font-size:36px }
  .hero-cta { flex-direction:column }
  .hero-cta .btn { width:100%; justify-content:center }
  .hero-trust { flex-direction:column; gap:8px }
  .ribbon-inner { flex-direction:column; gap:8px }
  .ribbon-item { font-size:12px }
  .certs-inner { flex-direction:column; align-items:flex-start; gap:12px }
  .stats-row { grid-template-columns:1fr 1fr; border-radius:var(--r-md) }
  .stat-box { padding:24px 16px }
  .stat-num { font-size:28px }
  .cta-band { padding:44px 24px; border-radius:var(--r-lg) }
  .cta-band h2 { font-size:26px }
  .footer-grid { grid-template-columns:1fr }
  .footer-bot { flex-direction:column; text-align:center; gap:6px }
  .nav .btn { display:none }
  .logo-sub { display:none }
  .sec-hd h2 { font-size:26px }
  .sec-hd p { font-size:15px }
  .comp-wrap { overflow-x:auto }
  .comp-table { min-width:480px }
}
