/* ==========================================================================
   Leptozan® — leptoozan.com
   Design system + page styles.  Prefix: gtlz-
   ========================================================================== */

:root{
  --white:#fff;
  --orange:#F47929;
  --black:#171717;
  --teal:#41A3A3;
  --lightCyan:#75D2D4;
  --yellow:#FAA634;
  --sky:#D4F1F2;
  --orange50:#FEF2EA;
  --grey3:#F6F6F6;
  --grey4:#F1F1F1;
  --grey5:#DCDCDC;

  /* derived tokens */
  --ink:#171717;
  --ink-soft:#4A4A4A;
  --ink-mute:#6B6B6B;
  --deep:#10343A;
  --deep2:#0A2429;
  --line:#E7E7E7;
  --radius-s:10px;
  --radius:16px;
  --radius-l:24px;
  --radius-pill:999px;
  --shadow-s:0 2px 10px rgba(23,23,23,.05);
  --shadow:0 10px 30px rgba(16,52,58,.08);
  --shadow-l:0 20px 50px rgba(16,52,58,.12);
  --maxw:1180px;
  --ff-head:"Poppins",-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  --ff-body:"Nunito Sans",-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:110px}
body{
  margin:0;
  font-family:var(--ff-body);
  font-size:18px;
  line-height:1.7;
  color:var(--ink);
  background:var(--white);
  overflow-x:clip;                 /* clip, not hidden — keeps position:sticky alive */
  -webkit-font-smoothing:antialiased;
}
img,svg,video{max-width:100%;height:auto;display:block}
a{color:var(--teal);text-decoration:none}
a:hover{text-decoration:underline}
button{font:inherit;cursor:pointer}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3,h4,h5{font-family:var(--ff-head);color:var(--ink);margin:0;line-height:1.22;font-weight:700;letter-spacing:-.01em}
p{margin:0 0 1em}
p:last-child{margin-bottom:0}
:focus-visible{outline:3px solid var(--teal);outline-offset:3px;border-radius:6px}

/* ---------- layout helpers ---------- */
.gtlz-wrap{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 20px}
.gtlz-section{padding:86px 0}
.gtlz-section--sky{background:var(--sky)}
.gtlz-section--cream{background:var(--orange50)}
.gtlz-section--grey{background:var(--grey3)}
.gtlz-section--tight{padding:64px 0}

/* ---------- heading pattern (eyebrow + H2 + lead) ---------- */
.gtlz-head{text-align:center;max-width:760px;margin:0 auto 52px}
.gtlz-eyebrow{
  display:block;font-family:var(--ff-head);font-weight:700;
  font-size:13px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--orange);margin-bottom:14px;
}
.gtlz-h2{font-size:clamp(28px,4vw,42px);margin:0 auto;max-width:16ch}
.gtlz-h2--wide{max-width:22ch}
.gtlz-lead{margin-top:18px;font-size:17px;color:var(--ink-soft);line-height:1.65}
.gtlz-head--left{text-align:left;margin-left:0}
.gtlz-head--left .gtlz-h2{margin-left:0}

.gtlz-accent{color:var(--orange)}
.gtlz-accent-teal{color:var(--teal)}

/* ---------- buttons ---------- */
.gtlz-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--ff-head);font-weight:600;font-size:16px;line-height:1;
  padding:18px 34px;border-radius:var(--radius-pill);border:2px solid transparent;
  text-align:center;transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
  text-decoration:none;
}
.gtlz-btn:hover{text-decoration:none;transform:translateY(-2px)}
.gtlz-btn--primary{background:linear-gradient(100deg,var(--orange),var(--yellow));color:var(--white);box-shadow:0 6px 16px rgba(244,121,41,.24)}
.gtlz-btn--primary:hover{color:var(--white);box-shadow:0 10px 22px rgba(244,121,41,.32)}
.gtlz-btn--teal{background:var(--teal);color:var(--white);box-shadow:0 6px 16px rgba(65,163,163,.24)}
.gtlz-btn--teal:hover{color:var(--white)}
.gtlz-btn--ghost{background:var(--white);color:var(--ink);border-color:var(--grey5)}
.gtlz-btn--ghost:hover{border-color:var(--teal);color:var(--teal)}
.gtlz-btn--onDark{background:transparent;color:var(--white);border-color:rgba(255,255,255,.55)}
.gtlz-btn--onDark:hover{background:var(--white);color:var(--deep)}
.gtlz-btn--sm{padding:13px 24px;font-size:15px}
.gtlz-btn--block{width:100%}
.gtlz-btnrow{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.gtlz-btnrow--center{justify-content:center}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.gtlz-announce{background:var(--deep);color:rgba(255,255,255,.86);font-size:12.5px}
.gtlz-announce .gtlz-wrap{display:flex;flex-wrap:wrap;gap:8px 26px;justify-content:center;align-items:center;padding-top:9px;padding-bottom:9px}
.gtlz-announce span{display:inline-flex;align-items:center;gap:7px;white-space:nowrap}
.gtlz-announce b{color:var(--white);font-weight:700}
.gtlz-announce i{font-style:normal;color:var(--lightCyan)}

/* ==========================================================================
   Header
   ========================================================================== */
.gtlz-header{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.gtlz-header .gtlz-wrap{display:flex;align-items:center;gap:20px;height:76px}
.gtlz-logo{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.gtlz-logo img{width:auto;height:auto;max-width:170px;max-height:46px;object-fit:contain}
.gtlz-nav{margin-left:auto;display:flex;align-items:center;gap:26px}
.gtlz-nav a:not(.gtlz-btn){
  font-family:var(--ff-head);font-size:15px;font-weight:500;color:var(--ink);
  position:relative;padding:6px 0;
}
.gtlz-nav a:not(.gtlz-btn):hover{color:var(--orange);text-decoration:none}
.gtlz-nav a:not(.gtlz-btn)::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--orange);transition:width .2s ease}
.gtlz-nav a:not(.gtlz-btn):hover::after{width:100%}
.gtlz-nav a.gtlz-btn{color:var(--white)}
.gtlz-nav a.gtlz-btn:hover{color:var(--white);text-decoration:none}
.gtlz-nav a[aria-current="page"]{color:var(--orange)}
.gtlz-nav a[aria-current="page"]:not(.gtlz-btn)::after{width:100%}
.gtlz-burger{display:none;margin-left:auto;background:none;border:0;padding:8px;border-radius:8px}
.gtlz-burger span{display:block;width:24px;height:2px;background:var(--ink);border-radius:2px}
.gtlz-burger span+span{margin-top:6px}

/* ==========================================================================
   Hero
   ========================================================================== */
.gtlz-hero{background:var(--sky);position:relative;overflow:clip;padding:64px 0 78px}
.gtlz-hero::before{
  content:"";position:absolute;inset:auto -10% -30% -10%;height:60%;
  background:radial-gradient(60% 60% at 50% 50%,rgba(255,255,255,.75),transparent 70%);
  pointer-events:none;
}
.gtlz-hero .gtlz-wrap{position:relative;z-index:1}
.gtlz-hero-grid{display:grid;grid-template-columns:1.06fr .94fr;gap:56px;align-items:start}

.gtlz-pill{
  display:inline-flex;align-items:center;gap:8px;background:var(--white);
  border:1px solid rgba(65,163,163,.35);color:var(--deep);
  font-family:var(--ff-head);font-size:13px;font-weight:600;
  padding:9px 18px;border-radius:var(--radius-pill);margin-bottom:24px;
  box-shadow:var(--shadow-s);
}
.gtlz-pill i{font-style:normal;color:var(--orange);font-weight:800}

.gtlz-h1{font-size:clamp(32px,5.2vw,54px);line-height:1.14;letter-spacing:-.02em;margin-bottom:22px}
.gtlz-hero-intro{font-size:17px;color:var(--ink-soft);max-width:56ch;margin-bottom:26px}
.gtlz-hero-intro b{color:var(--ink);font-weight:700}

/* quick facts card */
.gtlz-facts{background:var(--white);border-radius:var(--radius);padding:26px 28px;box-shadow:var(--shadow);margin-bottom:26px}
.gtlz-facts h3{font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:var(--ink-mute);font-weight:700;margin-bottom:14px}
.gtlz-facts dl{margin:0;display:grid;grid-template-columns:auto 1fr;gap:0}
.gtlz-facts dt,.gtlz-facts dd{padding:11px 0;border-top:1px solid var(--grey4);font-size:15px;margin:0}
.gtlz-facts dt{font-weight:700;color:var(--ink);padding-right:20px;white-space:nowrap}
.gtlz-facts dd{color:var(--ink-soft)}
.gtlz-facts dt:first-of-type,.gtlz-facts dl>dt:first-child+dd{border-top:0}

/* hero check list */
.gtlz-checks{margin-bottom:28px;display:grid;gap:11px}
.gtlz-checks li{display:flex;gap:11px;align-items:flex-start;font-size:16px;color:var(--ink-soft)}
.gtlz-checks img{width:20px;height:20px;flex:0 0 20px;margin-top:4px}

/* hero stats */
.gtlz-stats{display:flex;flex-wrap:wrap;gap:38px;margin-bottom:30px}
.gtlz-stat b{display:block;font-family:var(--ff-head);font-size:34px;font-weight:700;color:var(--orange);line-height:1}
.gtlz-stat span{display:block;font-size:12.5px;color:var(--ink-mute);margin-top:6px;letter-spacing:.02em}

.gtlz-trustline{display:flex;flex-wrap:wrap;gap:8px 22px;margin-top:26px;font-size:13px;color:var(--ink-soft)}
.gtlz-trustline span{display:inline-flex;align-items:center;gap:8px}
.gtlz-trustline span::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--orange)}

/* hero media */
.gtlz-hero-media{position:relative;padding-top:10px}
.gtlz-hero-shot{position:relative;text-align:center}
.gtlz-hero-shot>img{width:100%;max-width:430px;height:auto;margin:0 auto;filter:drop-shadow(0 26px 40px rgba(16,52,58,.18));animation:gtlzFloat 6s ease-in-out infinite}
@keyframes gtlzFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}

.gtlz-tag{
  position:absolute;background:var(--white);border-radius:14px;padding:10px 15px;
  box-shadow:var(--shadow);text-align:center;font-family:var(--ff-head);z-index:2;
}
.gtlz-tag b{display:block;font-size:17px;color:var(--ink);line-height:1.1}
.gtlz-tag span{display:block;font-size:11px;color:var(--ink-mute);margin-top:3px;letter-spacing:.02em}
.gtlz-tag--a{top:6%;left:-2%;animation:gtlzFloat 7s ease-in-out infinite}
.gtlz-tag--b{top:40%;right:-3%;animation:gtlzFloat 7.6s ease-in-out .4s infinite}
.gtlz-tag--c{bottom:6%;left:2%;animation:gtlzFloat 8s ease-in-out .8s infinite}
.gtlz-tag--ship{position:absolute;top:2%;right:0;width:120px;z-index:3}
.gtlz-tag--ship img{width:100%;height:auto}

/* ==========================================================================
   Hero visualization — metabolic pathway
   ========================================================================== */
.gtlz-viz{
  margin-top:26px;background:var(--white);border-radius:var(--radius);
  padding:22px 22px 18px;box-shadow:var(--shadow);border:1px solid rgba(65,163,163,.16);
}
.gtlz-viz h3{
  font-size:11.5px;letter-spacing:.2em;text-transform:uppercase;color:var(--ink-mute);
  font-weight:700;margin-bottom:14px;text-align:center;
}
.gtlz-viz svg{width:100%;height:auto;display:block}
.gtlz-viz-legend{display:flex;flex-wrap:wrap;justify-content:center;gap:10px 20px;margin-top:12px}
.gtlz-viz-legend span{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;color:var(--ink-soft)}
.gtlz-viz-legend i{width:11px;height:11px;border-radius:3px;display:inline-block}
.gtlz-viz-note{margin-top:10px;font-size:11.5px;color:var(--ink-mute);text-align:center;line-height:1.5}

/* animated pathway bits */
.gtlz-flow{stroke-dasharray:10 12;animation:gtlzDash 2.6s linear infinite}
@keyframes gtlzDash{to{stroke-dashoffset:-44}}
.gtlz-orb{animation:gtlzPulse 2.4s ease-in-out infinite}
.gtlz-orb--2{animation-delay:.5s}
.gtlz-orb--3{animation-delay:1s}
.gtlz-orb--4{animation-delay:1.5s}
@keyframes gtlzPulse{0%,100%{opacity:.55;r:7}50%{opacity:1;r:10}}
@media (prefers-reduced-motion:reduce){
  .gtlz-flow,.gtlz-orb,.gtlz-hero-shot>img,.gtlz-tag{animation:none!important}
  html{scroll-behavior:auto}
}

/* ==========================================================================
   Inner page hero + breadcrumbs
   ========================================================================== */
.gtlz-pagehero{background:var(--sky);padding:52px 0 58px;position:relative;overflow:clip}
.gtlz-pagehero::before{
  content:"";position:absolute;inset:auto -10% -40% -10%;height:70%;
  background:radial-gradient(60% 60% at 50% 50%,rgba(255,255,255,.7),transparent 70%);pointer-events:none;
}
.gtlz-pagehero .gtlz-wrap{position:relative;z-index:1;max-width:900px;text-align:center}
.gtlz-pagehero .gtlz-h1{font-size:clamp(28px,4.4vw,44px);margin:0 auto 18px;max-width:20ch}
.gtlz-pagehero-lead{font-size:17px;color:var(--ink-soft);max-width:64ch;margin:0 auto}
.gtlz-crumbs{font-size:13px;color:var(--ink-mute);margin-bottom:20px}
.gtlz-crumbs a{color:var(--deep);font-weight:600}
.gtlz-crumbs span{margin:0 4px}

/* long-form prose */
.gtlz-prose{max-width:760px;margin:0 auto;font-size:16.5px;color:var(--ink-soft);line-height:1.75}
.gtlz-prose p{margin-bottom:1.1em}
.gtlz-prose b{color:var(--ink)}

/* comparison table */
.gtlz-tablewrap{overflow-x:auto;max-width:940px;margin:0 auto;border-radius:var(--radius);box-shadow:var(--shadow-s);border:1px solid var(--line);background:var(--white)}
.gtlz-table{width:100%;border-collapse:collapse;min-width:660px;font-size:15px}
.gtlz-table-cap{caption-side:top;text-align:left;padding:18px 22px 0;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-mute);font-weight:700}
.gtlz-table th,.gtlz-table td{padding:15px 20px;text-align:left;border-bottom:1px solid var(--grey4)}
.gtlz-table thead th{font-family:var(--ff-head);font-size:12.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-mute);background:var(--grey3)}
.gtlz-table tbody th{font-family:var(--ff-head);font-weight:700;color:var(--ink);font-size:15.5px}
.gtlz-table tbody tr:last-child th,.gtlz-table tbody tr:last-child td{border-bottom:0}
.gtlz-tr-best{background:var(--orange50)}
.gtlz-tr-best th{color:var(--orange)}

/* jump nav */
.gtlz-jump{display:flex;flex-wrap:wrap;gap:10px;align-items:center;background:var(--grey3);border-radius:var(--radius);padding:18px 22px;margin-bottom:48px}
.gtlz-jump b{font-family:var(--ff-head);font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-mute);margin-right:6px}
.gtlz-jump a{background:var(--white);border:1px solid var(--grey5);border-radius:var(--radius-pill);padding:7px 15px;font-size:13.5px;font-weight:600;color:var(--deep);font-family:var(--ff-head)}
.gtlz-jump a:hover{border-color:var(--orange);color:var(--orange);text-decoration:none}

/* deep-dive ingredient blocks */
.gtlz-deeps{display:grid;gap:30px;max-width:900px;margin:0 auto}
.gtlz-deep{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-l);padding:34px 38px;box-shadow:var(--shadow-s);scroll-margin-top:120px}
.gtlz-deep-head{display:flex;gap:20px;align-items:flex-start;margin-bottom:20px}
.gtlz-deep-n{
  font-family:var(--ff-head);font-weight:700;font-size:15px;color:var(--white);flex:0 0 auto;
  background:linear-gradient(135deg,var(--orange),var(--yellow));width:44px;height:44px;
  border-radius:13px;display:grid;place-items:center;
}
.gtlz-deep-title{font-size:23px;margin-bottom:4px}
.gtlz-deep-media{margin:0 0 22px;border-radius:var(--radius);overflow:clip}
.gtlz-deep-media img{width:100%;height:auto;max-height:260px;object-fit:cover}
.gtlz-deep .gtlz-prose{max-width:none;margin:0}
.gtlz-deep-refs{margin-top:22px;padding-top:18px;border-top:1px solid var(--grey4)}
.gtlz-deep-refs b{font-family:var(--ff-head);font-size:11.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-mute);display:block;margin-bottom:8px}
.gtlz-deep-refs li{font-size:14px;padding:3px 0}

/* ==========================================================================
   Trust badge cards (Why people choose)
   ========================================================================== */
.gtlz-grid{display:grid;gap:24px}
.gtlz-grid--4{grid-template-columns:repeat(4,1fr)}
.gtlz-grid--3{grid-template-columns:repeat(3,1fr)}
.gtlz-grid--2{grid-template-columns:repeat(2,1fr)}

.gtlz-badge{background:var(--white);border-radius:var(--radius);padding:32px 24px;text-align:center;box-shadow:var(--shadow-s);border:1px solid var(--line);transition:transform .2s ease,box-shadow .2s ease}
.gtlz-badge:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.gtlz-badge img{width:86px;height:auto;margin:0 auto 18px}
.gtlz-badge h3{font-size:18px;margin-bottom:10px}
.gtlz-badge p{font-size:14.5px;color:var(--ink-soft);line-height:1.6}

/* ==========================================================================
   Split section (What is / media + text)
   ========================================================================== */
.gtlz-split{display:grid;grid-template-columns:.92fr 1.08fr;gap:60px;align-items:center}
.gtlz-split--flip .gtlz-split-media{order:2}
.gtlz-split-media img{width:100%;max-width:470px;height:auto;margin:0 auto;filter:drop-shadow(0 20px 34px rgba(16,52,58,.16))}
.gtlz-split-body p{font-size:16.5px;color:var(--ink-soft)}

.gtlz-note{
  background:var(--orange50);border-left:4px solid var(--orange);
  border-radius:0 var(--radius-s) var(--radius-s) 0;padding:18px 22px;margin:24px 0;
  font-size:15px;color:var(--ink-soft);
}
.gtlz-note b{color:var(--ink)}
.gtlz-note--teal{background:rgba(212,241,242,.6);border-left-color:var(--teal)}

.gtlz-chips{display:flex;flex-wrap:wrap;gap:10px;margin:26px 0}
.gtlz-chip{
  display:inline-flex;align-items:center;gap:8px;background:var(--white);
  border:1px solid var(--grey5);border-radius:var(--radius-pill);
  padding:9px 16px;font-size:13px;font-weight:600;font-family:var(--ff-head);color:var(--deep);
}
.gtlz-chip::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--teal)}

/* ==========================================================================
   Feature / benefit cards
   ========================================================================== */
.gtlz-card{background:var(--white);border-radius:var(--radius);padding:28px 26px;border:1px solid var(--line);box-shadow:var(--shadow-s);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.gtlz-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(65,163,163,.4)}
.gtlz-card h3{font-size:17.5px;margin-bottom:10px}
.gtlz-card p{font-size:14.5px;color:var(--ink-soft);line-height:1.62}
.gtlz-card-ico{
  width:46px;height:46px;border-radius:13px;display:grid;place-items:center;
  background:linear-gradient(135deg,var(--orange),var(--yellow));margin-bottom:16px;
}
.gtlz-card-ico svg{width:24px;height:24px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.gtlz-card-ico--teal{background:linear-gradient(135deg,var(--teal),var(--lightCyan))}
.gtlz-card--top{border-top:3px solid var(--orange)}

/* dark summary box */
.gtlz-summary{
  background:linear-gradient(135deg,var(--deep),var(--deep2));color:rgba(255,255,255,.86);
  border-radius:var(--radius);padding:38px 44px;text-align:center;margin-top:44px;
}
.gtlz-summary h3{color:var(--white);font-size:22px;margin-bottom:14px}
.gtlz-summary p{font-size:15.5px;line-height:1.7}
.gtlz-summary a{color:var(--lightCyan);text-decoration:underline}

/* numbered steps */
.gtlz-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;text-align:center}
.gtlz-step-n{
  width:44px;height:44px;border-radius:50%;display:grid;place-items:center;margin:0 auto 16px;
  background:var(--teal);color:var(--white);font-family:var(--ff-head);font-weight:700;font-size:17px;
}
.gtlz-steps h3{font-size:17px;margin-bottom:9px}
.gtlz-steps p{font-size:14.5px;color:var(--ink-soft)}

/* ==========================================================================
   Animated benefit chart
   ========================================================================== */
.gtlz-chart{
  background:var(--white);border-radius:var(--radius-l);padding:36px 34px 28px;
  box-shadow:var(--shadow);border:1px solid var(--line);max-width:900px;margin:0 auto;
}
.gtlz-chart-top{display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between;align-items:flex-end;margin-bottom:26px}
.gtlz-chart-top h3{font-size:19px}
.gtlz-chart-top p{font-size:13px;color:var(--ink-mute);margin:4px 0 0}
.gtlz-chart-key{display:flex;gap:18px;flex-wrap:wrap}
.gtlz-chart-key span{display:inline-flex;align-items:center;gap:7px;font-size:12.5px;color:var(--ink-soft)}
.gtlz-chart-key i{width:12px;height:12px;border-radius:4px;display:inline-block}
.gtlz-chart svg{width:100%;height:auto}
.gtlz-bar{transform-box:fill-box;transform-origin:bottom;transform:scaleY(0);transition:transform 1.1s cubic-bezier(.22,1,.36,1)}
.gtlz-is-in .gtlz-bar{transform:scaleY(1)}
.gtlz-line{stroke-dasharray:900;stroke-dashoffset:900;transition:stroke-dashoffset 1.8s ease .3s}
.gtlz-is-in .gtlz-line{stroke-dashoffset:0}
.gtlz-dot{opacity:0;transition:opacity .4s ease}
.gtlz-is-in .gtlz-dot{opacity:1}
.gtlz-chart-note{margin-top:16px;font-size:12px;color:var(--ink-mute);text-align:center;line-height:1.55}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.gtlz-quote{background:var(--white);border-radius:var(--radius);padding:28px 26px;border:1px solid var(--line);box-shadow:var(--shadow-s)}
.gtlz-quote-top{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.gtlz-quote-top img{width:52px;height:52px;border-radius:50%;object-fit:cover;flex:0 0 52px}
.gtlz-quote-top b{display:block;font-family:var(--ff-head);font-size:16px;color:var(--ink)}
.gtlz-quote-top span{display:block;font-size:12.5px;color:var(--ink-mute)}
.gtlz-starrow{color:var(--yellow);font-size:15px;letter-spacing:2px;margin-bottom:12px}
.gtlz-quote p{font-size:14.8px;font-style:italic;color:var(--ink-soft);line-height:1.66}
.gtlz-verified{margin-top:14px;font-size:11.5px;color:var(--ink-mute);letter-spacing:.04em;text-transform:uppercase;font-weight:700}

/* featured long review */
.gtlz-feature{
  margin-top:26px;background:var(--white);border:1px solid var(--line);border-radius:var(--radius-l);
  box-shadow:var(--shadow);padding:32px 36px;display:grid;grid-template-columns:120px 1fr;gap:30px;align-items:center;
}
.gtlz-feature img{width:120px;height:120px;border-radius:50%;object-fit:cover;object-position:top center}
.gtlz-feature p{font-size:16px;font-style:italic;color:var(--ink-soft);line-height:1.7}
.gtlz-feature .gtlz-quote-top b{font-size:16px}

/* certification strip */
.gtlz-certs{display:flex;flex-wrap:wrap;justify-content:center;gap:34px;margin:52px 0 0}
.gtlz-certs li{text-align:center;width:126px}
.gtlz-certs img{width:88px;height:auto;margin:0 auto 10px}
.gtlz-certs span{display:block;font-size:12.5px;font-weight:700;font-family:var(--ff-head);color:var(--ink-soft);line-height:1.35}

/* how-to-use media pair */
.gtlz-usemedia{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-end;gap:30px;margin:0 0 46px}
.gtlz-usemedia img{max-height:260px;width:auto;height:auto;filter:drop-shadow(0 18px 30px rgba(16,52,58,.16))}

/* dark stat band */
.gtlz-band{background:linear-gradient(120deg,var(--deep),var(--deep2));color:var(--white);text-align:center;padding:66px 0}
.gtlz-band .gtlz-stats{justify-content:center;gap:56px;margin-bottom:30px}
.gtlz-band .gtlz-stat b{color:var(--white)}
.gtlz-band .gtlz-stat span{color:rgba(255,255,255,.66)}
.gtlz-band h2{color:var(--white);font-size:clamp(24px,3.4vw,32px);margin-bottom:14px}
.gtlz-band p{color:rgba(255,255,255,.78);max-width:620px;margin:0 auto 28px;font-size:16px}

/* ==========================================================================
   Pricing
   ========================================================================== */
.gtlz-pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:center}
.gtlz-plan{
  background:var(--white);border:1px solid var(--grey5);border-radius:var(--radius-l);
  padding:34px 26px 30px;text-align:center;position:relative;box-shadow:var(--shadow-s);
  transition:transform .2s ease,box-shadow .2s ease;
}
.gtlz-plan:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.gtlz-plan--best{border:2px solid var(--orange);padding-top:46px;box-shadow:var(--shadow-l);order:0}
.gtlz-plan--best .gtlz-plan-flag{
  position:absolute;top:-1px;left:50%;transform:translateX(-50%);
  background:linear-gradient(100deg,var(--orange),var(--yellow));color:var(--white);
  font-family:var(--ff-head);font-size:11.5px;font-weight:700;letter-spacing:.1em;
  padding:8px 22px;border-radius:0 0 12px 12px;text-transform:uppercase;white-space:nowrap;
}
.gtlz-plan h3{font-size:22px;margin-bottom:4px}
.gtlz-plan-sub{font-size:11.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-mute);font-weight:700;margin-bottom:18px}
.gtlz-plan-img{height:190px;display:grid;place-items:center;margin-bottom:14px}
.gtlz-plan-img img{max-height:190px;width:auto;height:auto}
.gtlz-price{font-family:var(--ff-head);font-weight:700;font-size:42px;color:var(--ink);line-height:1}
.gtlz-price small{font-size:14px;font-weight:600;color:var(--ink-mute)}
.gtlz-plan-save{font-size:13.5px;color:var(--ink-soft);margin:10px 0 18px}
.gtlz-plan-save b{color:var(--orange)}
.gtlz-plan-total{font-size:13px;color:var(--ink-mute);margin-bottom:16px}
.gtlz-plan-cards{margin:18px auto 0;max-width:190px}

/* ==========================================================================
   Ingredients
   ========================================================================== */
.gtlz-ing{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.gtlz-ing-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 26px;position:relative;overflow:hidden;box-shadow:var(--shadow-s);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.gtlz-ing-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(244,121,41,.4)}
.gtlz-ing-card h3{font-size:18px;margin-bottom:6px;padding-right:52px}
.gtlz-ing-role{font-size:11.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--teal);font-weight:700;margin-bottom:12px}
.gtlz-ing-card p{font-size:14.5px;color:var(--ink-soft);line-height:1.62}
.gtlz-ing-n{
  position:absolute;top:16px;right:22px;font-family:var(--ff-head);font-weight:700;
  font-size:40px;color:rgba(244,121,41,.16);line-height:1;
}
.gtlz-ing-link{display:inline-block;margin-top:12px;font-size:13.5px;font-weight:700;color:var(--orange);font-family:var(--ff-head)}
.gtlz-ing-media{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:44px}
.gtlz-ing-media figure{margin:0;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-s);background:var(--white)}
.gtlz-ing-media img{width:100%;height:210px;object-fit:cover}
.gtlz-ing-media figcaption{padding:14px 16px;font-size:13.5px;color:var(--ink-soft);text-align:center}

/* ==========================================================================
   Guarantee
   ========================================================================== */
.gtlz-guarantee{
  background:var(--white);border-radius:var(--radius-l);padding:38px 42px;box-shadow:var(--shadow);
  display:grid;grid-template-columns:190px 1fr;gap:36px;align-items:center;margin-top:52px;border:1px solid var(--line);
}
.gtlz-guarantee img{width:100%;max-width:190px;height:auto}
.gtlz-guarantee h3{font-size:24px;margin-bottom:16px}
.gtlz-guarantee li{display:flex;gap:12px;font-size:15px;color:var(--ink-soft);padding:8px 0;align-items:flex-start}
.gtlz-guarantee li img{width:20px;height:20px;flex:0 0 20px;margin-top:4px}
.gtlz-guarantee li b{color:var(--ink)}

/* ==========================================================================
   Benefits image grid
   ========================================================================== */
.gtlz-benefit-media{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:760px;margin:0 auto 44px}
.gtlz-benefit-media figure{margin:0;position:relative;border-radius:14px;overflow:hidden;border:2px solid var(--teal)}
.gtlz-benefit-media img{width:100%;height:180px;object-fit:cover}
.gtlz-benefit-media figcaption{
  position:absolute;left:0;right:0;bottom:0;background:rgba(23,23,23,.72);color:var(--white);
  font-family:var(--ff-head);font-size:12px;font-weight:600;text-align:center;padding:8px 6px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.gtlz-faq{max-width:820px;margin:0 auto}
.gtlz-faq-item{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-s);margin-bottom:14px;overflow:hidden;box-shadow:var(--shadow-s)}
.gtlz-faq-q{
  width:100%;background:none;border:0;text-align:left;display:flex;gap:18px;align-items:center;
  justify-content:space-between;padding:20px 24px;font-family:var(--ff-head);font-weight:600;
  font-size:16px;color:var(--ink);
}
.gtlz-faq-q:hover{color:var(--orange)}
.gtlz-faq-q i{font-style:normal;font-size:24px;line-height:1;color:var(--orange);flex:0 0 auto;transition:transform .25s ease}
.gtlz-faq-item.gtlz-open .gtlz-faq-q i{transform:rotate(45deg)}
.gtlz-faq-a{max-height:0;overflow:hidden;transition:max-height .32s ease}
.gtlz-faq-a>div{padding:0 24px 22px;font-size:15.5px;color:var(--ink-soft);line-height:1.68}

/* ==========================================================================
   References / payment / blog
   ========================================================================== */
.gtlz-refs{display:grid;grid-template-columns:repeat(2,1fr);gap:12px 40px;max-width:860px;margin:0 auto}
.gtlz-refs a{font-size:14.5px;color:var(--teal);font-weight:600;display:inline-flex;gap:8px}
.gtlz-disclaim{max-width:860px;margin:30px auto 0;font-size:12.5px;color:var(--ink-mute);line-height:1.65;text-align:center}

.gtlz-pay{max-width:860px;margin:0 auto;background:var(--white);border-radius:var(--radius);padding:32px 36px;box-shadow:var(--shadow-s);border:1px solid var(--line)}
.gtlz-pay h3{font-size:19px;margin-bottom:10px}
.gtlz-pay p{font-size:15px;color:var(--ink-soft)}
.gtlz-pay-cards{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-top:22px;padding-top:22px;border-top:1px solid var(--grey4)}
.gtlz-pay-cards img{height:30px;width:auto}

.gtlz-blog{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}
.gtlz-blog h3{font-size:17px;margin-bottom:14px;padding-bottom:12px;border-bottom:2px solid var(--orange)}
.gtlz-blog li{padding:8px 0}
.gtlz-blog a{font-size:14.8px;color:var(--ink-soft)}
.gtlz-blog a:hover{color:var(--orange)}

/* final CTA band with product */
.gtlz-final{background:linear-gradient(120deg,var(--deep),var(--deep2));color:var(--white);padding:70px 0}
.gtlz-final-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:50px;align-items:center}
.gtlz-final-grid img{width:100%;max-width:340px;height:auto;margin:0 auto}
.gtlz-final h2{color:var(--white);font-size:clamp(26px,3.6vw,36px);margin-bottom:24px;max-width:18ch}
.gtlz-final-pills{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:24px}
.gtlz-final-pill{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:12px;padding:14px 22px;text-align:center}
.gtlz-final-pill b{display:block;font-family:var(--ff-head);font-size:20px}
.gtlz-final-pill span{font-size:11.5px;color:rgba(255,255,255,.68)}
.gtlz-final-price{font-family:var(--ff-head);font-size:22px;margin-bottom:24px}
.gtlz-final-price s{color:rgba(255,255,255,.5);font-size:17px;margin-right:10px}
.gtlz-final-price b{color:var(--yellow)}

/* ==========================================================================
   Footer
   ========================================================================== */
.gtlz-footer{background:var(--black);color:rgba(255,255,255,.62);padding:64px 0 26px;font-size:14.5px}
.gtlz-footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px}
.gtlz-footer img.gtlz-foot-logo{width:auto;height:auto;max-width:160px;max-height:48px;object-fit:contain;margin-bottom:18px;filter:brightness(0) invert(1)}

/* wide section image (how it works) */
.gtlz-showcase{margin:0 auto 46px;max-width:720px;border-radius:24px;overflow:clip;box-shadow:var(--shadow-l)}
.gtlz-showcase img{width:100%;height:auto;max-height:430px;object-fit:cover;object-position:center 35%}
.gtlz-footer h4{color:var(--white);font-size:15.5px;margin-bottom:16px}
.gtlz-footer a{color:rgba(255,255,255,.62)}
.gtlz-footer a:hover{color:var(--orange);text-decoration:none}
.gtlz-footer li{padding:6px 0}
.gtlz-footer-by{margin-top:18px;font-size:13px;line-height:1.8}
.gtlz-footer-by b{color:var(--white)}
.gtlz-footer-badges{display:flex;flex-wrap:wrap;gap:10px;margin:40px 0 26px;padding-top:34px;border-top:1px solid rgba(255,255,255,.12)}
.gtlz-footer-badges span{border:1px solid rgba(255,255,255,.22);border-radius:var(--radius-pill);padding:7px 16px;font-size:12px}
.gtlz-legal p{font-size:12.5px;line-height:1.7;color:rgba(255,255,255,.5);margin-bottom:14px}
.gtlz-footer-nav{display:flex;flex-wrap:wrap;gap:8px 18px;justify-content:center;margin:26px 0 14px;font-size:13px}
.gtlz-copy{text-align:center;font-size:12.5px;color:rgba(255,255,255,.45)}

/* ==========================================================================
   Sticky price bar + back to top
   ========================================================================== */
.gtlz-sticky{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  background:linear-gradient(100deg,var(--orange),var(--yellow));color:var(--white);
  transform:translateY(110%);transition:transform .3s ease;
}
.gtlz-sticky.gtlz-show{transform:translateY(0)}
.gtlz-sticky .gtlz-wrap{display:flex;align-items:center;justify-content:center;gap:24px;padding-top:12px;padding-bottom:12px;flex-wrap:wrap}
.gtlz-sticky b{font-family:var(--ff-head);font-size:16px;display:block;line-height:1.3}
.gtlz-sticky span{font-size:12.5px;opacity:.9}
.gtlz-sticky .gtlz-btn{background:var(--white);color:var(--ink);box-shadow:none;padding:13px 26px}

.gtlz-top{
  position:fixed;right:20px;bottom:84px;z-index:65;width:46px;height:46px;border-radius:50%;
  background:var(--teal);color:var(--white);border:0;display:grid;place-items:center;
  opacity:0;pointer-events:none;transition:opacity .25s ease,transform .25s ease;box-shadow:var(--shadow);
}
.gtlz-top.gtlz-show{opacity:1;pointer-events:auto}
.gtlz-top:hover{transform:translateY(-3px)}
.gtlz-top svg{width:20px;height:20px;stroke:#fff;fill:none;stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round}

/* reveal on scroll */
.gtlz-rev{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.gtlz-rev.gtlz-is-in{opacity:1;transform:none}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1080px){
  .gtlz-hero-grid{grid-template-columns:1fr;gap:44px}
  .gtlz-hero-media{max-width:560px;margin:0 auto;width:100%}
  .gtlz-split{grid-template-columns:1fr;gap:36px}
  .gtlz-split--flip .gtlz-split-media{order:0}
  .gtlz-grid--4{grid-template-columns:repeat(2,1fr)}
  .gtlz-footer-grid{grid-template-columns:1fr 1fr}
  .gtlz-final-grid{grid-template-columns:1fr;text-align:center}
  .gtlz-final h2{margin-left:auto;margin-right:auto}
  .gtlz-final-pills,.gtlz-final .gtlz-btnrow{justify-content:center}
}
@media (max-width:900px){
  .gtlz-nav{
    position:fixed;inset:76px 0 auto 0;background:var(--white);flex-direction:column;
    align-items:stretch;gap:0;padding:8px 20px 20px;border-bottom:1px solid var(--line);
    box-shadow:var(--shadow);display:none;
  }
  .gtlz-nav.gtlz-open{display:flex}
  .gtlz-nav a{padding:14px 0;border-bottom:1px solid var(--grey4)}
  .gtlz-nav .gtlz-btn{margin-top:14px}
  .gtlz-burger{display:block}
  .gtlz-header .gtlz-wrap{gap:12px}
  .gtlz-pricing{grid-template-columns:1fr;max-width:420px;margin:0 auto}
  .gtlz-plan--best{order:-1}
  .gtlz-grid--3,.gtlz-steps,.gtlz-blog,.gtlz-ing-media{grid-template-columns:1fr}
  .gtlz-ing{grid-template-columns:1fr}
  .gtlz-refs{grid-template-columns:1fr}
  .gtlz-guarantee{grid-template-columns:1fr;text-align:center;padding:30px 24px}
  .gtlz-guarantee img{margin:0 auto}
  .gtlz-guarantee li{text-align:left}
  .gtlz-benefit-media{grid-template-columns:repeat(2,1fr)}
  .gtlz-feature{grid-template-columns:1fr;text-align:center;padding:28px 22px}
  .gtlz-feature img{margin:0 auto}
  .gtlz-feature .gtlz-quote-top{justify-content:center}
  .gtlz-certs{gap:22px}
  .gtlz-certs li{width:104px}
  .gtlz-certs img{width:72px}
  .gtlz-usemedia img{max-height:190px}
}
@media (max-width:620px){
  body{font-size:17px}
  .gtlz-section{padding:58px 0}
  .gtlz-announce .gtlz-wrap{gap:6px 14px;font-size:11px}
  .gtlz-grid--4,.gtlz-grid--2,.gtlz-benefit-media{grid-template-columns:1fr}
  .gtlz-footer-grid{grid-template-columns:1fr;gap:28px}
  .gtlz-stats{gap:24px}
  .gtlz-stat b{font-size:28px}
  .gtlz-facts dl{grid-template-columns:1fr}
  .gtlz-facts dt{padding-bottom:0;border-top:1px solid var(--grey4)}
  .gtlz-facts dd{padding-top:2px;border-top:0}
  .gtlz-facts dt:first-of-type{border-top:0}
  .gtlz-summary{padding:28px 22px}
  .gtlz-chart{padding:24px 18px 20px}
  .gtlz-tag--a,.gtlz-tag--c{left:-1%}
  .gtlz-tag--b{right:-1%}
  .gtlz-tag--ship{width:88px}
  .gtlz-btn{width:100%}
  .gtlz-sticky .gtlz-wrap{gap:12px}
  .gtlz-sticky .gtlz-btn{width:auto}
  .gtlz-top{bottom:96px;right:14px}
}

/* ==========================================================================
   Horizontal bars (ingredients breakdown chart) — after .gtlz-bar defaults
   ========================================================================== */
.gtlz-chart .gtlz-bar--h{transform-box:fill-box;transform-origin:left center;transform:scaleX(0);transition:transform 1.1s cubic-bezier(.22,1,.36,1)}
.gtlz-chart.gtlz-is-in .gtlz-bar--h{transform:scaleX(1)}

/* inner-page responsive */
@media (max-width:900px){
  .gtlz-deep{padding:26px 22px}
  .gtlz-deep-title{font-size:20px}
  .gtlz-jump{padding:16px}
}
@media (max-width:620px){
  .gtlz-pagehero{padding:36px 0 42px}
  .gtlz-deep-head{gap:14px}
  .gtlz-deep-n{width:38px;height:38px;border-radius:11px;font-size:13px}
}
