/* ==========================================================================
   GL Control - Master Stylesheet
   All shared component styles (header, footer, nav, buttons, cards)
   ========================================================================== */

:root{
  --teal:#0d9488;
  --teal-dark:#0f766e;
  --teal-light:#14b8a6;
  --teal-bg:#f0fdfa;
  --gold:#d97706;
  --gold-light:#f59e0b;
  --gold-bg:#fffbeb;
  --pink:#ec4899;
  --ink:#0f172a;
  --slate:#334155;
  --slate-2:#64748b;
  --slate-3:#94a3b8;
  --line:#e2e8f0;
  --bg:#ffffff;
  --bg-2:#f8fafc;
  --bg-3:#f1f5f9;
  --green:#16a34a;
  --red:#dc2626;
  --shadow-sm:0 1px 2px rgba(15,23,42,.06);
  --shadow:0 4px 16px rgba(15,23,42,.08);
  --shadow-lg:0 12px 40px rgba(15,23,42,.12);
  --shadow-card:0 8px 28px rgba(13,148,136,.10);
  --r-sm:8px;
  --r:14px;
  --r-lg:20px;
  --r-xl:28px;
  --container:1200px;
  --container-narrow:880px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'DM Sans','Segoe UI',system-ui,sans-serif;
  font-size:17px;
  line-height:1.65;
  color:var(--slate);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--teal);text-decoration:none;transition:color .15s ease}
a:hover{color:var(--teal-dark)}
h1,h2,h3,h4,h5{font-family:'Outfit','DM Sans',system-ui,sans-serif;color:var(--ink);line-height:1.2;font-weight:700}
h2{font-size:clamp(1.7rem,3.2vw,2.4rem);margin-bottom:1rem}
h3{font-size:clamp(1.2rem,2vw,1.4rem);margin-bottom:.6rem}
h4{font-size:1.1rem;margin-bottom:.5rem}
p{margin-bottom:1rem}
ul,ol{padding-left:1.25rem;margin-bottom:1rem}
li{margin-bottom:.4rem}
section{padding:64px 0}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.narrow{max-width:var(--container-narrow);margin:0 auto;padding:0 20px}
.center{text-align:center}
.eyebrow{display:inline-block;background:var(--teal-bg);color:var(--teal-dark);padding:6px 14px;border-radius:999px;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;font-weight:700;margin-bottom:1rem}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar{
  background:linear-gradient(90deg,var(--teal-dark) 0%,var(--teal) 100%);
  color:#fff;
  text-align:center;
  padding:8px 16px;
  font-size:.92rem;
  font-weight:500;
  position:sticky;
  top:0;
  z-index:90;
}
.announce-bar a{color:#fff;text-decoration:underline;font-weight:700;margin-left:4px}
.announce-bar a:hover{color:#fde68a}

/* ===== HEADER ===== */
.header{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:14px 0;
  position:sticky;
  top:34px;
  z-index:80;
  box-shadow:var(--shadow-sm);
}
.nav-wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Outfit',sans-serif;
  font-weight:800;
  font-size:1.4rem;
  color:var(--ink);
  letter-spacing:-.02em;
}
.logo-mark{
  width:38px;height:38px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-light) 100%);
  color:#fff;
  display:grid;place-items:center;
  font-weight:800;font-size:1rem;
  box-shadow:0 4px 12px rgba(13,148,136,.32);
}
.nav-links{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;padding:0;
}
.nav-links a{
  color:var(--slate);
  font-weight:500;
  font-size:.97rem;
  transition:color .15s ease;
}
.nav-links a:hover{color:var(--teal-dark)}
.btn-cta{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color:#fff;
  padding:11px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:.93rem;
  letter-spacing:.01em;
  border:0;cursor:pointer;
  box-shadow:0 6px 18px rgba(217,119,6,.32);
  transition:transform .15s ease,box-shadow .15s ease;
  white-space:nowrap;
}
.btn-cta:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(217,119,6,.4);color:#fff}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color:#fff;
  padding:16px 36px;
  border-radius:999px;
  font-weight:700;
  font-size:1.05rem;
  border:0;cursor:pointer;
  box-shadow:0 10px 28px rgba(217,119,6,.32);
  transition:transform .15s ease,box-shadow .15s ease;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(217,119,6,.42);color:#fff}
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#fff;
  color:var(--teal-dark);
  border:2px solid var(--teal);
  padding:14px 32px;
  border-radius:999px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition:all .15s ease;
}
.btn-secondary:hover{background:var(--teal-bg);transform:translateY(-1px)}
.mobile-menu-btn{
  display:none;
  background:none;border:0;cursor:pointer;
  width:40px;height:40px;
  align-items:center;justify-content:center;
  color:var(--ink);
}
.mobile-menu-btn svg{width:26px;height:26px}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(180deg,var(--teal-bg) 0%,#fff 100%);
  padding:56px 0 70px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;
  top:-100px;right:-100px;
  width:400px;height:400px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(20,184,166,.12) 0%,transparent 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  grid-template-areas:
    "head image"
    "body image";
  column-gap:48px;
  row-gap:18px;
  align-items:start;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
  position:relative;
  z-index:1;
}
.hero-h1{grid-area:head}
.hero-image-wrap{
  grid-area:image;
  align-self:center;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  animation:float 4s ease-in-out infinite;
}
.hero-body{grid-area:body}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  padding:7px 16px;
  border-radius:999px;
  font-size:.82rem;
  color:var(--teal-dark);
  font-weight:700;
  margin-bottom:18px;
  box-shadow:var(--shadow-sm);
}
.hero-badge::before{
  content:"";
  width:8px;height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(22,163,74,.18);
}
.hero h1{
  font-size:clamp(1.9rem,4vw,2.8rem);
  color:var(--ink);
  margin-bottom:18px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.hero h1 em{
  font-style:normal;
  background:linear-gradient(120deg,var(--teal) 0%,var(--teal-light) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub{
  font-size:1.1rem;
  color:var(--slate);
  margin-bottom:22px;
  line-height:1.6;
}
.hero-bullets{
  list-style:none;
  padding:0;
  margin:0 0 26px;
}
.hero-bullets li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
  font-size:1rem;
  color:var(--ink);
}
.check-icon{
  flex-shrink:0;
  width:22px;height:22px;
  color:var(--gold);
  margin-top:2px;
}
.hero-cta-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-bottom:24px}
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:18px 28px;
  font-size:.88rem;
  color:var(--slate-2);
  align-items:center;
}
.hero-trust-item{display:flex;align-items:center;gap:6px}
.hero-trust-item svg{width:18px;height:18px;color:var(--teal)}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
.hero-image-wrap img{
  max-width:100%;
  height:auto;
  filter:drop-shadow(0 24px 40px rgba(13,148,136,.18));
}

/* ===== TRUST STRIP ===== */
.trust-strip{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:28px 0;
}
.trust-strip-img{
  max-width:1000px;
  margin:0 auto;
  display:block;
  padding:0 20px;
}

/* ===== SECTION HELPERS ===== */
.section-title{
  text-align:center;
  margin-bottom:48px;
}
.section-title h2{margin-bottom:14px}
.section-title p{
  font-size:1.08rem;
  color:var(--slate-2);
  max-width:680px;
  margin:0 auto;
}

/* ===== AI ANSWER BLOCK ===== */
.ai-answer{
  background:linear-gradient(135deg,var(--teal-bg) 0%,#ecfeff 100%);
  border-left:4px solid var(--teal);
  border-radius:var(--r);
  padding:24px 28px;
  margin:28px 0;
  position:relative;
}
.ai-answer-q{
  font-family:'Outfit',sans-serif;
  font-weight:700;
  font-size:1.08rem;
  color:var(--ink);
  margin-bottom:10px;
}
.ai-answer-a{
  color:var(--slate);
  font-size:1rem;
  line-height:1.65;
  margin:0;
}

/* ===== WHY CHOOSE ===== */
.why-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:48px;
  align-items:center;
}
.why-image img{
  border-radius:var(--r-lg);
  width:100%;
  filter:drop-shadow(0 16px 32px rgba(13,148,136,.14));
}
.why-list{list-style:none;padding:0;margin:0}
.why-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
}
.why-list .check-icon{width:26px;height:26px}
.why-list strong{display:block;font-family:'Outfit',sans-serif;color:var(--ink);font-size:1.05rem;margin-bottom:2px}

/* ===== PROBLEM SECTION ===== */
.problem-section{
  background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);
  color:#cbd5e1;
}
.problem-section h2{color:#fff}
.problem-section .eyebrow{background:rgba(20,184,166,.15);color:#5eead4}
.problem-section .section-title p{color:#94a3b8}
.problem-section .ai-answer{
  background:rgba(15,118,110,.18);
  border-left-color:var(--teal-light);
}
.problem-section .ai-answer-q,
.problem-section .ai-answer-a{color:#e2e8f0}
.pain-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:36px;
}
.pain-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r);
  padding:24px;
  transition:transform .2s ease,border-color .2s ease;
}
.pain-card:hover{transform:translateY(-3px);border-color:rgba(20,184,166,.35)}
.pain-card-icon{
  width:48px;height:48px;
  border-radius:12px;
  background:rgba(20,184,166,.15);
  color:var(--teal-light);
  display:grid;place-items:center;
  margin-bottom:14px;
}
.pain-card-icon svg{width:24px;height:24px}
.pain-card h3{color:#fff;font-size:1.05rem;margin-bottom:8px}
.pain-card p{color:#94a3b8;font-size:.93rem;line-height:1.55;margin:0}

/* ===== WHAT IS - 2 COLUMN ===== */
.what-is-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:48px;
  align-items:center;
}
.what-is-grid img{
  border-radius:var(--r-lg);
  width:100%;
}
.what-is-grid p{font-size:1.02rem;color:var(--slate)}

/* ===== HOW IT WORKS ===== */
.mechanism-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:24px;
}
.mech-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:26px 22px;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  position:relative;
  overflow:hidden;
}
.mech-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card);border-color:var(--teal-light)}
.mech-card::before{
  content:"";position:absolute;
  top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--teal),var(--teal-light));
  transform:scaleX(0);transform-origin:left;
  transition:transform .25s ease;
}
.mech-card:hover::before{transform:scaleX(1)}
.mech-icon{
  width:54px;height:54px;
  border-radius:14px;
  background:var(--teal-bg);
  color:var(--teal-dark);
  display:grid;place-items:center;
  margin-bottom:14px;
}
.mech-icon svg{width:28px;height:28px}
.mech-card h3{font-size:1.08rem;color:var(--ink)}
.mech-card p{font-size:.95rem;color:var(--slate);line-height:1.6;margin:0}

/* ===== PATHWAY DIAGRAM ===== */
.diagram-section{
  background:linear-gradient(180deg,#fff 0%,var(--teal-bg) 100%);
}
.diagram-wrap{
  max-width:920px;
  margin:0 auto;
  background:#fff;
  border-radius:var(--r-lg);
  padding:36px 24px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.unique-badge{
  display:inline-block;
  background:var(--gold-bg);
  color:var(--gold);
  border:1px solid var(--gold-light);
  padding:4px 12px;
  border-radius:999px;
  font-size:.74rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:12px;
}

/* ===== PRICING ===== */
.pricing-section{background:var(--bg-2)}
.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1.06fr 1fr;
  gap:20px;
  margin:8px auto 0;
  max-width:1100px;
  align-items:center;
}
.price-card{
  display:block;
  border-radius:18px;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease,filter .25s ease;
  text-decoration:none;
  cursor:pointer;
  background:transparent;
}
.price-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 44px rgba(13,148,136,.22);
  filter:brightness(1.02);
}
.price-card.featured{
  transform:scale(1.06);
  z-index:2;
  position:relative;
}
.price-card.featured:hover{
  transform:scale(1.06) translateY(-6px);
  box-shadow:0 24px 56px rgba(217,119,6,.28);
}

/* ===== BONUS CARDS ===== */
.bonus-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:40px;
}
.bonus-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:24px;
  display:flex;
  gap:20px;
  align-items:center;
  box-shadow:var(--shadow-sm);
}
.bonus-card img{
  width:120px;
  flex-shrink:0;
  border-radius:8px;
}
.bonus-tag{
  display:inline-block;
  background:var(--teal);
  color:#fff;
  padding:3px 10px;
  border-radius:6px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:6px;
}
.bonus-card h4{margin-bottom:6px}
.bonus-card p{font-size:.9rem;color:var(--slate);margin:0}

/* ===== INGREDIENTS ===== */
.ing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:32px;
}
.ing-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:26px 22px;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.ing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card);border-color:var(--teal-light)}
.ing-icon{
  width:56px;height:56px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--teal-bg) 0%,#ecfeff 100%);
  color:var(--teal-dark);
  display:grid;place-items:center;
  margin-bottom:14px;
}
.ing-icon svg{width:32px;height:32px}
.ing-tag{
  display:inline-block;
  background:var(--gold-bg);
  color:var(--gold);
  padding:3px 10px;
  border-radius:6px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.ing-card h3{font-size:1.15rem;color:var(--ink);margin-bottom:8px}
.ing-card p{font-size:.95rem;color:var(--slate);line-height:1.6;margin:0}

/* ===== BENEFITS ===== */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:32px;
}
.benefit-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:22px 18px;
  text-align:center;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.benefit-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:var(--teal-light)}
.benefit-icon{
  width:52px;height:52px;
  border-radius:50%;
  background:var(--teal-bg);
  color:var(--teal);
  display:grid;place-items:center;
  margin:0 auto 14px;
}
.benefit-icon svg{width:26px;height:26px}
.benefit-card h4{font-size:.98rem;margin-bottom:6px;color:var(--ink)}
.benefit-card p{font-size:.86rem;color:var(--slate-2);line-height:1.5;margin:0}

/* ===== TIMELINE ===== */
.timeline-section{background:var(--bg-2)}
.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:36px;
  position:relative;
}
.timeline::before{
  content:"";position:absolute;
  top:36px;left:8%;right:8%;
  height:2px;
  background:linear-gradient(90deg,var(--teal-light) 0%,var(--gold-light) 100%);
  z-index:0;
}
.timeline-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:28px 22px 22px;
  position:relative;
  z-index:1;
  text-align:center;
}
.timeline-num{
  width:48px;height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-light) 100%);
  color:#fff;
  display:grid;place-items:center;
  font-family:'Outfit',sans-serif;
  font-weight:800;
  font-size:1.1rem;
  margin:-44px auto 14px;
  box-shadow:0 6px 18px rgba(13,148,136,.32);
  border:3px solid #fff;
}
.timeline-card h4{font-size:1rem;margin-bottom:6px;color:var(--teal-dark)}
.timeline-card h3{font-size:1.1rem;margin-bottom:8px}
.timeline-card p{font-size:.92rem;color:var(--slate);line-height:1.55;margin:0}

/* ===== COMPARISON TABLE ===== */
.compare-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  margin-top:24px;
}
.compare-table th,.compare-table td{
  padding:14px 18px;
  text-align:left;
  border-bottom:1px solid var(--line);
  font-size:.96rem;
}
.compare-table th{
  background:var(--bg-3);
  color:var(--ink);
  font-family:'Outfit',sans-serif;
  font-weight:700;
}
.compare-table th.featured-col{background:var(--teal);color:#fff}
.compare-table td:first-child{font-weight:600;color:var(--ink)}
.compare-table td.featured-col{background:var(--teal-bg);color:var(--teal-dark);font-weight:600}
.compare-table tr:last-child td{border-bottom:0}
.compare-yes{color:var(--green);font-weight:700}
.compare-no{color:var(--red);font-weight:700}
.compare-meh{color:var(--gold);font-weight:600}

/* ===== REVIEWS ===== */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:36px;
}
.review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:24px;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}
.review-header{display:flex;gap:14px;align-items:center;margin-bottom:14px}
.review-avatar{
  width:56px;height:56px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--teal-bg);
}
.review-meta strong{display:block;color:var(--ink);font-family:'Outfit',sans-serif;font-size:.98rem}
.review-meta span{font-size:.82rem;color:var(--slate-2)}
.review-stars{color:var(--gold);font-size:1rem;letter-spacing:1px;margin-bottom:10px}
.verified-badge{
  display:inline-flex;
  align-items:center;
  gap:4px;
  background:var(--teal-bg);
  color:var(--teal-dark);
  padding:3px 8px;
  border-radius:6px;
  font-size:.72rem;
  font-weight:700;
  margin-top:6px;
}
.review-body{font-size:.96rem;color:var(--slate);line-height:1.6;margin:0;flex:1}

/* ===== GUARANTEE ===== */
.guarantee-section{
  background:linear-gradient(135deg,var(--teal-bg) 0%,#ecfeff 100%);
}
.guarantee-wrap{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:40px;
  align-items:center;
  max-width:900px;
  margin:0 auto;
  background:#fff;
  padding:40px;
  border-radius:var(--r-lg);
  box-shadow:var(--shadow);
}
.guarantee-seal{
  width:180px;height:180px;
  flex-shrink:0;
  /* STATIC - no rotation animation */
}
.guarantee-seal img{width:100%;height:100%;object-fit:contain}

/* ===== CONTRAINDICATIONS ===== */
.contra-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  list-style:none;
  padding:0;
  margin:30px 0 0;
  max-width:880px;
}
.contra-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:#fff;
  border:1px solid var(--line);
  padding:16px 20px;
  border-radius:var(--r);
}
.contra-list li::before{
  content:"✕";
  flex-shrink:0;
  width:26px;height:26px;
  border-radius:50%;
  background:#fee2e2;
  color:var(--red);
  display:grid;place-items:center;
  font-weight:800;
  font-size:.92rem;
}

/* ===== FAQ ===== */
.faq-list{max-width:820px;margin:30px auto 0}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  margin-bottom:12px;
  overflow:hidden;
  transition:box-shadow .2s ease;
}
.faq-item[open]{box-shadow:var(--shadow-sm);border-color:var(--teal-light)}
.faq-item summary{
  padding:18px 24px;
  cursor:pointer;
  font-family:'Outfit',sans-serif;
  font-weight:600;
  color:var(--ink);
  font-size:1.04rem;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  flex-shrink:0;
  width:30px;height:30px;
  border-radius:50%;
  background:var(--teal-bg);
  color:var(--teal-dark);
  display:grid;place-items:center;
  font-size:1.3rem;
  font-weight:600;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{content:"−"}
.faq-item .faq-answer{
  padding:0 24px 20px;
  color:var(--slate);
  line-height:1.65;
  font-size:.98rem;
}

/* ===== MEDICAL REVIEWER ===== */
.reviewer-section{background:#fff}
.reviewer-card{
  max-width:860px;
  margin:0 auto;
  background:linear-gradient(135deg,var(--teal-bg) 0%,#ecfeff 100%);
  border:1px solid #cffafe;
  border-radius:var(--r-lg);
  padding:36px 40px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:36px;
  align-items:center;
  box-shadow:var(--shadow-sm);
}
.reviewer-badge{
  width:130px;
  height:130px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-light) 100%);
  display:grid;
  place-items:center;
  flex-shrink:0;
  box-shadow:0 12px 32px rgba(13,148,136,.32);
  position:relative;
  border:5px solid #fff;
}
.reviewer-badge::after{
  content:"MD";
  position:absolute;
  bottom:-6px;right:-6px;
  width:46px;height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color:#fff;
  display:grid;
  place-items:center;
  font-family:'Outfit',sans-serif;
  font-weight:800;
  font-size:.88rem;
  letter-spacing:.04em;
  border:3px solid #fff;
  box-shadow:0 4px 12px rgba(217,119,6,.32);
}
.reviewer-badge svg{
  width:62px;
  height:62px;
  color:#fff;
}
.reviewer-content h3{
  font-size:1.35rem;
  margin-bottom:4px;
  color:var(--ink);
}
.reviewer-cred{
  font-size:.86rem;
  color:var(--teal-dark);
  font-weight:700;
  margin-bottom:14px;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.reviewer-statement{
  font-size:1rem;
  color:var(--slate);
  line-height:1.7;
  margin-bottom:14px;
  font-style:italic;
}
.reviewer-date{
  font-size:.82rem;
  color:var(--slate-2);
  margin:0;
  padding-top:10px;
  border-top:1px solid #cffafe;
}

@media (max-width:700px){
  .reviewer-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:32px 24px;
    gap:20px;
  }
  .reviewer-badge{margin:0 auto}
  .reviewer-statement{text-align:left}
  .reviewer-date{text-align:center}
}

/* ===== REFERENCES ===== */
.refs-section{background:var(--bg-2)}
.refs-list{
  max-width:820px;
  margin:0 auto;
  list-style:none;
  padding:0;
  counter-reset:ref;
}
.refs-list li{
  counter-increment:ref;
  background:#fff;
  border:1px solid var(--line);
  padding:14px 18px 14px 50px;
  border-radius:var(--r);
  margin-bottom:10px;
  position:relative;
  font-size:.92rem;
  color:var(--slate);
  line-height:1.5;
}
.refs-list li::before{
  content:counter(ref);
  position:absolute;
  left:14px;top:14px;
  width:26px;height:26px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;
  display:grid;place-items:center;
  font-weight:700;
  font-size:.82rem;
}
.refs-list a{color:var(--teal-dark);font-weight:600;text-decoration:underline}

/* ===== FINAL CTA ===== */
.final-cta{
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%);
  color:#fff;
  text-align:center;
  padding:64px 0;
}
.final-cta h2{color:#fff;margin-bottom:20px}
.final-cta-img{
  max-width:380px;
  width:100%;
  margin:0 auto 24px;
  filter:drop-shadow(0 16px 32px rgba(0,0,0,.25));
}
.final-cta p{color:#ccfbf1;max-width:620px;margin:0 auto 28px;font-size:1.06rem}
.final-cta .btn-primary{background:#fff;color:var(--teal-dark);box-shadow:0 12px 32px rgba(0,0,0,.18)}
.final-cta .btn-primary:hover{background:var(--gold-bg);color:var(--teal-dark);box-shadow:0 16px 40px rgba(0,0,0,.28)}
.final-cta-trust{color:rgba(255,255,255,.78);font-size:.9rem;margin-top:18px}

/* ===== FOOTER ===== */
.footer{
  background:var(--ink);
  color:#94a3b8;
  padding:56px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1.2fr 1fr 1.1fr;
  gap:36px;
  margin-bottom:32px;
}
.footer-col h4{
  color:#fff;
  font-size:.96rem;
  margin-bottom:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col li{margin-bottom:8px}
.footer-col a{color:#cbd5e1;font-size:.92rem;transition:color .15s ease}
.footer-col a:hover{color:var(--teal-light)}
.footer-logo{
  display:flex;align-items:center;gap:10px;
  font-family:'Outfit',sans-serif;
  font-weight:800;font-size:1.3rem;
  color:#fff;margin-bottom:12px;
}
.footer-logo .logo-mark{background:linear-gradient(135deg,var(--teal-light) 0%,var(--teal) 100%)}
.footer-desc{font-size:.9rem;line-height:1.55;color:#94a3b8;max-width:280px}
.footer-contact{font-size:.9rem;line-height:1.55;color:#cbd5e1}
.footer-contact a{color:var(--teal-light)}
.footer-disclaimer{
  border-top:1px solid #1e293b;
  padding-top:24px;
  font-size:.78rem;
  color:#64748b;
  line-height:1.55;
  max-width:920px;
  margin:0 auto 16px;
  text-align:center;
}
.footer-copy{
  text-align:center;
  font-size:.82rem;
  color:#64748b;
}

/* ===== SOCIAL PROOF POPUP ===== */
.proof-popup{
  position:fixed;
  bottom:20px;left:20px;
  background:#fff;
  border-radius:var(--r);
  box-shadow:0 12px 36px rgba(0,0,0,.18);
  padding:14px 18px 14px 14px;
  display:flex;
  align-items:center;
  gap:12px;
  max-width:320px;
  z-index:60;
  transform:translateX(-120%);
  transition:transform .35s ease;
  border:1px solid var(--line);
}
.proof-popup.show{transform:translateX(0)}
.proof-icon{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--teal-bg);
  color:var(--teal);
  display:grid;place-items:center;
  flex-shrink:0;
}
.proof-icon svg{width:22px;height:22px}
.proof-text{font-size:.86rem;color:var(--slate);line-height:1.45}
.proof-text strong{color:var(--ink);display:block;font-size:.92rem}
.proof-time{color:var(--slate-3);font-size:.78rem;display:block;margin-top:2px}
.proof-close{
  position:absolute;
  top:6px;right:8px;
  background:none;border:0;
  cursor:pointer;
  color:var(--slate-3);
  font-size:1.1rem;
  width:22px;height:22px;
}

/* ===== EXIT INTENT ===== */
.exit-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.7);
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.exit-overlay.show{display:flex}
.exit-modal{
  background:#fff;
  border-radius:var(--r-lg);
  padding:40px 32px;
  max-width:460px;
  text-align:center;
  position:relative;
  box-shadow:0 24px 60px rgba(0,0,0,.32);
}
.exit-modal h3{font-size:1.5rem;color:var(--ink);margin-bottom:10px}
.exit-modal p{color:var(--slate);margin-bottom:20px}
.exit-close{
  position:absolute;
  top:14px;right:14px;
  background:none;border:0;
  cursor:pointer;
  color:var(--slate-3);
  font-size:1.5rem;
  width:32px;height:32px;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  background:#fff;
  padding:12px 16px;
  box-shadow:0 -8px 24px rgba(0,0,0,.1);
  z-index:70;
  border-top:1px solid var(--line);
}
.mobile-sticky-cta .btn-primary{
  width:100%;
  padding:14px;
  font-size:1rem;
}

/* ===== BLOG ===== */
.blog-hero{
  background:linear-gradient(180deg,var(--teal-bg) 0%,#fff 100%);
  padding:48px 0;
  text-align:center;
}
.blog-hero h1{font-size:clamp(1.9rem,4vw,2.6rem);margin-bottom:14px}
.blog-hero p{font-size:1.06rem;color:var(--slate-2);max-width:640px;margin:0 auto}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:8px;
}
.blog-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:26px;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card);border-color:var(--teal-light)}
.blog-tag{
  display:inline-block;
  background:var(--teal-bg);
  color:var(--teal-dark);
  padding:4px 12px;
  border-radius:999px;
  font-size:.74rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:12px;
}
.blog-card h3{font-size:1.18rem;line-height:1.35;margin-bottom:10px}
.blog-card h3 a{color:var(--ink)}
.blog-card h3 a:hover{color:var(--teal-dark)}
.blog-card p{font-size:.94rem;color:var(--slate);margin-bottom:14px}
.blog-meta{font-size:.82rem;color:var(--slate-3);display:flex;gap:14px;margin-bottom:14px}
.blog-read{color:var(--teal-dark);font-weight:700;font-size:.92rem;display:inline-flex;align-items:center;gap:4px}
.blog-read:hover{color:var(--gold)}

/* ===== BLOG POST ===== */
.post-hero{
  background:linear-gradient(180deg,var(--teal-bg) 0%,#fff 100%);
  padding:48px 0 28px;
}
.post-hero .container{max-width:820px}
.post-hero h1{font-size:clamp(1.7rem,3.5vw,2.4rem);margin:14px 0 16px;line-height:1.2}
.post-meta{display:flex;gap:14px;font-size:.86rem;color:var(--slate-2);margin-bottom:8px;flex-wrap:wrap}
.post-content{padding:32px 0 56px}
.post-content .container{max-width:760px}
.post-content h2{margin:36px 0 14px;font-size:clamp(1.4rem,2.4vw,1.8rem)}
.post-content h3{margin:24px 0 10px;font-size:1.2rem}
.post-content p{font-size:1.04rem;line-height:1.75;margin-bottom:16px;color:var(--slate)}
.post-content ul,.post-content ol{margin-bottom:18px;padding-left:1.4rem}
.post-content li{margin-bottom:8px;line-height:1.65}
.post-content blockquote{
  border-left:4px solid var(--teal);
  background:var(--teal-bg);
  padding:16px 22px;
  margin:24px 0;
  border-radius:8px;
  font-style:italic;
  color:var(--slate);
}
.post-cta-box{
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-dark) 100%);
  color:#fff;
  border-radius:var(--r-lg);
  padding:32px 28px;
  text-align:center;
  margin:32px 0;
}
.post-cta-box h3{color:#fff;font-size:1.3rem;margin-bottom:10px}
.post-cta-box p{color:#ccfbf1;margin-bottom:18px}
.post-cta-box .btn-primary{background:#fff;color:var(--teal-dark)}
.post-cta-box .btn-primary:hover{background:var(--gold-bg)}
.post-internal-links{
  background:var(--bg-2);
  border-radius:var(--r);
  padding:22px 24px;
  margin:32px 0;
}
.post-internal-links h4{margin-bottom:10px}
.post-internal-links ul{margin:0;padding-left:1.2rem}
.post-internal-links a{font-weight:600}

/* ===== LEGAL PAGES ===== */
.legal-hero{
  background:linear-gradient(180deg,var(--teal-bg) 0%,#fff 100%);
  padding:48px 0 20px;
}
.legal-hero h1{font-size:clamp(1.8rem,3.5vw,2.4rem);text-align:center}
.legal-content{padding:24px 0 56px}
.legal-content .container{max-width:820px}
.legal-content h2{margin:32px 0 12px;font-size:1.4rem}
.legal-content p{margin-bottom:14px;line-height:1.7}
.legal-content ul{margin-bottom:14px;padding-left:1.3rem}
.legal-updated{font-size:.88rem;color:var(--slate-3);text-align:center;margin-bottom:24px}

/* ===== 404 ===== */
.error-section{padding:80px 0;text-align:center;background:linear-gradient(180deg,var(--teal-bg) 0%,#fff 100%)}
.error-number{
  font-family:'Outfit',sans-serif;
  font-weight:900;
  font-size:clamp(6rem,18vw,10rem);
  line-height:1;
  background:linear-gradient(135deg,var(--teal) 0%,var(--teal-light) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:18px;
}
.error-links{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:28px}
.error-links a{
  background:#fff;
  border:1px solid var(--line);
  padding:10px 22px;
  border-radius:999px;
  color:var(--teal-dark);
  font-weight:600;
}
.error-links a:hover{background:var(--teal-bg);border-color:var(--teal-light)}

/* ===== CONTACT FORM ===== */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  max-width:1000px;
  margin:0 auto;
}
.contact-info{background:var(--teal-bg);border-radius:var(--r-lg);padding:36px}
.contact-info h3{margin-bottom:14px}
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:36px;
  box-shadow:var(--shadow-sm);
}
.form-field{margin-bottom:16px}
.form-field label{display:block;font-weight:600;color:var(--ink);margin-bottom:6px;font-size:.92rem}
.form-field input,.form-field textarea{
  width:100%;
  padding:11px 14px;
  border:1px solid var(--line);
  border-radius:8px;
  font-size:.95rem;
  font-family:inherit;
  color:var(--ink);
  background:#fff;
  transition:border-color .15s ease;
}
.form-field input:focus,.form-field textarea:focus{outline:none;border-color:var(--teal)}
.form-field textarea{resize:vertical;min-height:120px}

/* ==========================================================================
   RESPONSIVE - 900px
   ========================================================================== */
@media (max-width:900px){
  section{padding:48px 0}
  .nav-links{
    display:none;
    position:absolute;
    top:100%;left:0;right:0;
    background:#fff;
    flex-direction:column;
    padding:18px 20px;
    border-top:1px solid var(--line);
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    gap:12px;
  }
  .nav-links.open{display:flex}
  .mobile-menu-btn{display:inline-flex}
  .nav-wrap .btn-cta{display:none}
  .hero-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "head"
      "image"
      "body";
    text-align:center;
    column-gap:0;
    row-gap:14px;
  }
  .hero-bullets li{justify-content:center;text-align:left;max-width:340px;margin:0 auto 10px}
  .hero-cta-row{justify-content:center}
  .hero-trust{justify-content:center}
  .hero-image-wrap img{max-width:300px}
  .pain-grid{grid-template-columns:repeat(2,1fr)}
  .why-grid{grid-template-columns:1fr;gap:32px}
  .what-is-grid{grid-template-columns:1fr;gap:32px}
  .mechanism-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr;gap:24px;max-width:400px}
  .price-card.featured{transform:none;order:-1}
  .price-card.featured:hover{transform:translateY(-6px)}
  .bonus-grid{grid-template-columns:1fr}
  .ing-grid{grid-template-columns:repeat(2,1fr)}
  .benefits-grid{grid-template-columns:repeat(2,1fr)}
  .timeline{grid-template-columns:repeat(2,1fr)}
  .timeline::before{display:none}
  .reviews-grid{grid-template-columns:1fr}
  .guarantee-wrap{grid-template-columns:1fr;text-align:center;padding:28px 20px}
  .guarantee-seal{margin:0 auto}
  .contra-list{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .blog-grid{grid-template-columns:1fr}
  .contact-wrap{grid-template-columns:1fr;gap:28px}
  .mobile-sticky-cta{display:block}
  body{padding-bottom:80px}
  .compare-table{font-size:.85rem;display:block;overflow-x:auto;white-space:nowrap}
  .compare-table th,.compare-table td{padding:10px 12px}
}

/* ==========================================================================
   RESPONSIVE - 560px
   ========================================================================== */
@media (max-width:560px){
  body{font-size:16px}
  section{padding:40px 0}
  .container{padding:0 16px}
  .narrow{padding:0 16px}
  h2{font-size:1.55rem}
  .hero{padding:36px 0 48px}
  .hero h1{font-size:1.6rem}
  .hero-sub{font-size:1rem}
  .hero-image-wrap img{max-width:240px}
  .pain-grid{grid-template-columns:1fr}
  .mechanism-grid{grid-template-columns:1fr}
  .ing-grid{grid-template-columns:1fr}
  .benefits-grid{grid-template-columns:1fr 1fr}
  .timeline{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:24px}
  .price-card img{width:100%;height:auto}
  .price-card.featured img{width:100%;height:auto}
  .ai-answer{padding:18px 20px}
  .guarantee-seal{width:140px;height:140px}
  .proof-popup{left:10px;right:10px;max-width:none}
  .exit-modal{padding:28px 22px}
}
