/* ============================================
   GLUCOZEN™ STYLES
   Mobile-first · Blue palette · Green CTAs only
   Navy · Blue · White · Green buttons
   ============================================ */

/* Override base palette for GlucoZen */
:root {
  --navy:        #0d1a2e;
  --navy-dark:   #080f1c;
  --navy-mid:    #0d1526;
  --navy-light:  #1a3a6b;
  --blue-pale:   #e0ecff;
  --blue-mid:    #1e5fa8;
  --blue-accent: #3d8fd4;
  --blue-bright: #4aa3e8;
  --white:       #ffffff;
  --off-white:   #f4f8ff;
  --light:       #dde8f5;
  --gray:        #6b7280;
  --gray-dark:   #374151;
  --body:        #1a1a2e;

  /* CTAs — GREEN ONLY on buttons */
  --green:       #5cad1e;
  --green-dark:  #4a9218;
  --green-light: #6dc426;
  --green-pale:  #edf7e4;

  --success:     #2d7a3a;

  --font-head: 'mnn', 'Syne', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: .4rem;
  --r-md: .8rem;
  --r-lg: 1.2rem;
  --r-xl: 2rem;
  --r-full: 10rem;

  --s0: .25rem;
  --s1: .5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 2.5rem;
  --s6: 3rem;
  --s7: 4rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 18px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 36px rgba(0,0,0,.14);
  --shadow-xl: 0 16px 56px rgba(0,0,0,.18);
}

/* ---- BUTTONS — GREEN ONLY ---- */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-weight: 750; font-size: 1.05rem;
  padding: .9rem 2rem 1rem; border-radius: var(--r-full); border: none;
  cursor: pointer; text-decoration: none; white-space: nowrap; line-height: 1;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(92,173,30,.35);
  animation: pulse-btn 2.2s ease-in-out infinite;
}
.btn-green:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(92,173,30,.45) !important;
  text-decoration: none; color: var(--white); animation: none !important;
}
.btn-green:active { transform: translateY(0); }
.btn-full { width: 100%; text-align: center; }

@keyframes pulse-btn {
  0%   { box-shadow: 0 4px 18px rgba(92,173,30,.35), 0 0 0 0 rgba(92,173,30,.4); }
  70%  { box-shadow: 0 4px 18px rgba(92,173,30,.35), 0 0 0 10px rgba(92,173,30,0); }
  100% { box-shadow: 0 4px 18px rgba(92,173,30,.35), 0 0 0 0 rgba(92,173,30,0); }
}


/* ---- SECTION TYPOGRAPHY ---- */
.section-label {
  display: inline-block; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--blue-mid);
  background: var(--blue-pale); border: 1px solid rgba(30,95,168,.2);
  padding: .25rem .8rem; border-radius: var(--r-full); margin-bottom: var(--s2);
}
.section-title {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.55rem, 5.5vw, 2.4rem); line-height: 1.1;
  color: var(--navy); margin-bottom: var(--s2);
}
.section-title em { font-style: normal; color: var(--blue-mid); }
.section-body { font-size: .95rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: var(--s4); }
.section-body strong { color: var(--navy); }


/* ---- NAV ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 var(--s3); max-width: 1100px; margin-inline: auto;
}
.nav-logo img { height: 34px; object-fit: contain; }
.nav-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.7);
  padding: .4rem .85rem; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--green) !important; color: var(--white) !important;
  border-radius: var(--r-full) !important; font-weight: 700 !important;
  padding: .45rem 1.1rem .5rem !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.06); }
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block; color: rgba(255,255,255,.8); font-weight: 600;
  padding: .9rem var(--s3); border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 1rem;
}
.nav-drawer a:last-child { border: none; }
.nav-drawer a:hover { color: #fff; }
.drawer-cta { color: var(--green-light) !important; font-weight: 800 !important; }


/* ---- HERO ---- */
.hero { background: var(--navy); overflow: hidden; }

.hero-image-wrap {
  width: 100%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.hero-bottle {
  width: 100%;
  max-width: 480px;
  display: block;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-bottle { max-width: 600px; }
}

.hero-content {
  padding: var(--s4) var(--s3) var(--s5);
  max-width: 480px; margin-inline: auto; text-align: center;
  background: var(--navy);
}
.hero-eyebrow {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--blue-bright);
  background: rgba(30,95,168,.2); border: 1px solid rgba(61,143,212,.3);
  display: inline-block; padding: .25rem .8rem; border-radius: var(--r-full);
  margin-bottom: var(--s2);
}
.hero-title {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.9rem, 7.5vw, 3rem); line-height: 1.06;
  color: var(--white); margin-bottom: var(--s2);
}
.hero-title em { font-style: normal; color: var(--blue-bright); display: block; }
.hero-sub { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: var(--s3); }
.hero-sub strong { color: var(--white); }

.hero-rating {
  display: inline-flex; align-items: center; gap: var(--s1);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full); padding: .4rem 1rem;
  font-size: .85rem; color: rgba(255,255,255,.85);
  margin-bottom: var(--s3);
}
.hero-rating strong { color: var(--white); }

.hero-bullets {
  display: flex; flex-direction: column; gap: var(--s1);
  text-align: left; margin-bottom: var(--s4);
  max-width: 280px; margin-inline: auto;
}
.hero-bullets li {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 1rem; font-weight: 600; color: var(--white);
}
.hero-bullets li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12l3 3 5-5' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}
.hero-guarantee { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: var(--s2); margin-bottom: 0; }


/* ---- TRUST BAR ---- */
.trust-bar {
  background: #ffffff !important;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: var(--s3) 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--s3);
  background: #ffffff;
}
.trust-inner img {
  width: 342px;
  max-width: 100%;
  height: auto;
  display: block;
}


/* ---- SCIENCE / CLINICAL ---- */
.clinical { background: var(--white); }
.clinical .wrap { text-align: center; }

/* Pain block */
.pain-block {
  background: var(--off-white); border-left: 4px solid var(--blue-mid);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--s3) var(--s3); margin: var(--s3) 0;
  text-align: left;
}
.pain-block p {
  font-size: .92rem; color: var(--gray-dark); line-height: 1.75;
  margin-bottom: var(--s2);
}
.pain-block p:last-child { margin: 0; }
.pain-block strong { color: var(--navy); }

/* Mechanism reveal */
.mechanism-title {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.2rem, 4vw, 1.5rem); color: var(--navy);
  margin: var(--s4) 0 var(--s2); line-height: 1.2;
}

/* NIH highlight */
.nih-box {
  background: #fff8e8; border: 1px solid #f5c842;
  border-radius: var(--r-lg); padding: var(--s3);
  margin: var(--s3) 0; text-align: left;
}
.nih-box p { font-size: .88rem; color: #7a5800; line-height: 1.7; margin: 0; }
.nih-box strong { color: #5a3e00; }

/* GLP-1 block */
.glp-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-lg); padding: var(--s4) var(--s3);
  margin: var(--s3) 0; color: var(--white); text-align: left;
}
.glp-block h3 {
  font-family: var(--font-head); font-weight: 750; font-size: 1.2rem;
  color: var(--white); margin-bottom: var(--s2);
}
.glp-block p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: var(--s2); }
.glp-block p:last-child { margin: 0; }
.glp-block strong { color: var(--blue-bright); }

/* Bear analogy */
.bear-block {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: var(--s3); margin: var(--s3) 0; text-align: left;
  border: 1px solid var(--light);
}
.bear-block-emoji { font-size: 2.5rem; margin-bottom: var(--s2); display: block; }
.bear-block h3 {
  font-family: var(--font-head); font-weight: 750; font-size: 1.1rem;
  color: var(--navy); margin-bottom: var(--s2);
}
.bear-block p { font-size: .88rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: var(--s2); }
.bear-block p:last-child { margin: 0; }
.bear-block strong { color: var(--blue-mid); }

/* Clinical graph */
.clinical-graph {
  background: var(--off-white); border: 1px solid var(--light);
  border-radius: var(--r-lg); padding: var(--s3);
  margin-bottom: var(--s4); overflow: hidden;
}
.graph-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--blue-mid);
  margin-bottom: var(--s4);
}
.graph-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: var(--s5); height: 120px; position: relative;
  padding-right: var(--s4); margin-bottom: var(--s3);
}
.bar-group { display: flex; flex-direction: column; align-items: center; gap: var(--s1); }
.bar { width: 68px; border-radius: 6px 6px 0 0; }
.bar-placebo { height: 10px; background: var(--light); border: 1px solid #ccc; }
.bar-glucozen { height: 110px; background: linear-gradient(to top, var(--navy), var(--blue-mid)); }
.bar-label { font-size: .7rem; color: var(--gray); text-align: center; line-height: 1.3; }
.graph-yaxis {
  position: absolute; right: 0; top: 0; bottom: 28px;
  display: none; flex-direction: column; justify-content: space-between;
  font-size: .65rem; color: var(--gray);
}
@media (min-width: 400px) { .graph-yaxis { display: flex; } }

.graph-stats {
  display: flex; flex-direction: column; gap: var(--s2);
  margin-bottom: var(--s2);
}
.graph-stat {
  display: flex; align-items: center; gap: var(--s2);
  background: var(--white); border-radius: var(--r-md);
  padding: var(--s1) var(--s2); border: 1px solid var(--light);
}
.graph-stat-number {
  font-family: var(--font-head); font-weight: 750;
  font-size: 1.4rem; color: var(--blue-mid); line-height: 1;
  min-width: 52px;
}
.graph-stat-text { font-size: .8rem; color: var(--gray-dark); line-height: 1.4; }
.graph-footnote {
  font-size: .72rem; color: var(--gray); line-height: 1.6;
  border-top: 1px solid var(--light); padding-top: var(--s2);
}


/* ---- INGREDIENTS ---- */
.ingredients { background: var(--off-white); }
.ingredients .wrap { text-align: center; }

.ingredients-scroll {
  display: flex; flex-direction: column; gap: var(--s3);
  padding: var(--s3) var(--s3) var(--s4);
  max-width: 480px; margin-inline: auto;
}
@media (min-width: 768px) {
  .ingredients-scroll {
    display: grid; grid-template-columns: repeat(4, 1fr);
    flex-direction: unset; max-width: 1100px; padding-inline: var(--s4);
  }
}

.ingredient-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--s3); box-shadow: var(--shadow-sm); text-align: center;
  border-top: 3px solid var(--blue-mid);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: row; align-items: center; gap: var(--s3);
}
@media (min-width: 768px) {
  .ingredient-card { flex-direction: column; align-items: center; }
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ingredient-img-wrap {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--light); background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
@media (min-width: 768px) {
  .ingredient-img-wrap { width: 90px; height: 90px; margin-bottom: var(--s2); }
}
.ingredient-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block;
}
.ingredient-text { flex: 1; text-align: left; }
@media (min-width: 768px) { .ingredient-text { text-align: center; flex: none; } }
.ingredient-card h3 {
  font-family: var(--font-head); font-weight: 750; font-size: .9rem;
  color: var(--blue-mid); margin-bottom: var(--s1);
}
.ingredient-card p { font-size: .78rem; color: var(--gray); line-height: 1.6; margin: 0; }

.serving-row {
  display: flex; align-items: center; gap: var(--s3);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-lg); padding: var(--s3); margin-top: var(--s4);
  color: var(--white);
}
.serving-img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: var(--r-md); flex-shrink: 0;
  border: 2px solid rgba(61,143,212,.4);
}
.serving-text strong { display: block; color: var(--blue-bright); font-size: 1rem; margin-bottom: .4rem; }
.serving-text p { font-size: .8rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.6; }


/* ---- CRAFTED FOR ---- */
.crafted { background: var(--white); overflow: hidden; }
.crafted .wrap { text-align: center; margin-bottom: var(--s4); }

.crafted-grid {
  display: flex; flex-direction: column; gap: var(--s3);
  max-width: 480px; margin-inline: auto; padding-inline: var(--s3);
}
@media (min-width: 768px) {
  .crafted-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--s2); max-width: 1100px; padding-inline: var(--s4);
  }
}

.crafted-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}
.crafted-item img {
  width: 100%; height: 280px;
  object-fit: cover; object-position: center top;
  display: block; transition: transform .5s ease;
}
@media (min-width: 768px) { .crafted-item img { height: 340px; } }
.crafted-item:hover img { transform: scale(1.04); }
.crafted-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s3);
  background: linear-gradient(to top, rgba(8,15,28,.95) 0%, rgba(13,26,46,.65) 60%, transparent 100%);
  color: var(--white);
}
.crafted-overlay strong {
  display: block; font-family: var(--font-head); font-weight: 750;
  font-size: 1.15rem; margin-bottom: .35rem; color: var(--white);
}
.crafted-overlay p { font-size: .82rem; color: rgba(255,255,255,.85); margin: 0; line-height: 1.5; }


/* ---- DOCTOR BANNER ---- */
.doctor-banner { background: var(--navy); position: relative; overflow: hidden; }
.doctor-text {
  text-align: center; padding: var(--s4) var(--s3) var(--s3);
  position: relative; z-index: 2;
}
.doctor-text h2 {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.3rem, 4.5vw, 2rem); color: var(--white); line-height: 1.2;
}
.doctor-text h2 em { font-style: normal; color: var(--blue-bright); }
.doctor-img-wrap { overflow: hidden; }
.doctor-img-wrap img { width: 100%; display: block; }


/* ---- REVIEWS ---- */
.reviews { background: var(--off-white); }
.reviews .wrap { text-align: center; margin-bottom: var(--s4); }
.reviews-agg {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--white); border: 1px solid var(--light);
  border-radius: var(--r-full); padding: .5rem 1.25rem;
  box-shadow: var(--shadow-sm); margin-bottom: var(--s2);
}
.agg-score { font-family: var(--font-head); font-weight: 750; font-size: 2rem; color: var(--navy); line-height: 1; }
.agg-label { font-size: .75rem; color: var(--gray); margin-top: .1rem; }

.reviews-hint {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s1); font-size: .75rem; color: var(--gray); margin-bottom: var(--s2);
}
@media (min-width: 900px) { .reviews-hint { display: none; } }

.reviews-track {
  display: flex; overflow-x: auto; gap: var(--s3);
  padding: var(--s1) var(--s3) var(--s4);
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
@media (min-width: 900px) {
  .reviews-track {
    display: grid; grid-template-columns: repeat(2, 1fr);
    overflow: visible; padding-inline: var(--s4);
    max-width: 1100px; margin-inline: auto;
  }
}

.review-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--white); border-radius: var(--r-lg);
  padding: var(--s4); box-shadow: var(--shadow-sm);
  border: 1px solid var(--light);
  border-top: 3px solid var(--blue-mid);
}
@media (min-width: 900px) { .review-card { flex: none; } }
.review-stars { font-size: .9rem; margin-bottom: var(--s2); }
.review-title {
  font-family: var(--font-head); font-weight: 750; font-size: 1rem;
  color: var(--navy); margin-bottom: var(--s2); line-height: 1.2;
}
.review-body { font-size: .85rem; color: #444; line-height: 1.7; margin-bottom: var(--s3); }
.review-meta { display: flex; align-items: center; gap: var(--s1); margin-bottom: var(--s2); flex-wrap: wrap; }
.review-meta strong { font-size: .82rem; color: var(--navy); }
.review-verified { font-size: .72rem; color: var(--success); }
.review-actions {
  display: flex; gap: var(--s2);
  padding-top: var(--s2); border-top: 1px solid var(--light);
}
.review-like {
  display: flex; align-items: center; gap: .4em; font-size: .72rem; color: var(--gray);
  padding: .3rem .65rem; border: 1px solid var(--light); border-radius: var(--r-sm);
  background: none; font-family: var(--font-body); transition: all .15s; cursor: pointer;
}
.review-like:hover, .review-like.liked { background: var(--green-pale); border-color: var(--green); color: var(--green-dark); }
.review-like.disliked { background: #fff0f0; border-color: #faa; color: #c33; }


/* ---- PRICING ---- */
.pricing { background: var(--navy); color: var(--white); }
.pricing .wrap { text-align: center; margin-bottom: var(--s5); }
.pricing .section-title { color: var(--white); }
.pricing .section-label { color: var(--blue-bright); background: rgba(61,143,212,.15); border-color: rgba(61,143,212,.3); }
.pricing .section-body { color: rgba(255,255,255,.65); margin-bottom: var(--s2); }

.pricing-protocol {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,193,7,.25);
  border-radius: var(--r-md); padding: var(--s2) var(--s3);
  margin-bottom: var(--s4); text-align: left;
}
.pricing-protocol p {
  font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0;
}
.pricing-protocol strong { color: #ffc107; }

.pricing-social {
  font-size: .78rem; color: rgba(255,255,255,.45);
  font-style: italic; margin-bottom: var(--s4);
}
.pricing-social strong { color: var(--blue-bright); font-style: normal; }

.pricing-grid {
  display: flex; flex-direction: column; gap: var(--s4);
  padding-inline: var(--s3); max-width: 480px; margin-inline: auto;
}
@media (min-width: 900px) {
  .pricing-grid { flex-direction: row; max-width: 1100px; padding-inline: var(--s4); align-items: flex-start; }
}

.price-card {
  flex: 1; display: flex; flex-direction: column;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.1);
  background: #000000;
  text-decoration: none; color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); text-decoration: none; color: var(--white); }
.price-card--best {
  border-color: rgba(61,143,212,.6);
  box-shadow: 0 0 0 1px rgba(61,143,212,.4), 0 8px 32px rgba(0,0,0,.2);
  background: #000000;
}
@media (min-width: 900px) {
  .price-card--best { transform: scale(1.04); }
  .price-card--best:hover { transform: scale(1.04) translateY(-4px); }
}

.price-card-badge {
  padding: .55rem var(--s2); text-align: center;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.35);
}
.price-card--best .price-card-badge { background: var(--blue-mid); color: var(--white); }
.price-card-badge--popular { background: rgba(255,255,255,.08) !important; color: rgba(255,255,255,.6) !important; }
.price-card-badge--starter { background: rgba(255,255,255,.03) !important; color: rgba(255,255,255,.25) !important; }

.price-card-inner {
  padding: var(--s3) var(--s3) var(--s2);
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: var(--s1); flex: 1;
}
.price-card-supply { line-height: 1.2; }
.price-card-supply strong { display: block; font-family: var(--font-head); font-weight: 750; font-size: 1.4rem; }
.price-card-supply span { font-size: .68rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; }
.price-card-img { max-width: 140px; width: 100%; }

.price-card-price { display: flex; align-items: baseline; gap: .1em; line-height: 1; }
.price-card-price sup { font-size: 1.4rem; font-weight: 700; color: var(--blue-bright); }
.price-big { font-family: var(--font-head); font-weight: 750; font-size: clamp(2.6rem, 9vw, 3.5rem); color: var(--white); }
.price-per { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; align-self: flex-end; margin-bottom: .5rem; }

.price-card-total { font-size: .88rem; color: rgba(255,255,255,.55); }
.price-card-total s { text-decoration-color: rgba(255,80,80,.7); text-decoration-thickness: 2px; }
.price-card-total strong { color: var(--white); }

.price-card-savings {
  display: inline-block; background: rgba(61,143,212,.15); color: var(--blue-bright);
  border: 1px solid rgba(61,143,212,.3); border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; padding: .2rem .85rem;
}

.price-card-perks { list-style: none; margin: 0; padding: 0; text-align: left; width: 100%; }
.price-card-perks li {
  font-size: .75rem; color: rgba(255,255,255,.6);
  padding: .22rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: .5em;
}
.price-card-perks li::before { content: '✓'; color: var(--green-light); font-weight: 900; flex-shrink: 0; }
.price-card-perks li:last-child { border: none; }

.price-card-btn {
  width: 100%; text-align: center; padding: .85rem 1rem .95rem;
  font-family: var(--font-head); font-weight: 750; font-size: 1rem;
  background: var(--green); color: var(--white); border-radius: var(--r-full);
  box-shadow: 0 4px 14px rgba(92,173,30,.4);
  transition: background .2s, transform .15s;
  display: block;
  animation: pulse-btn 2.2s ease-in-out infinite;
}
.price-card-btn:hover { background: var(--green-dark); transform: translateY(-1px); animation: none; }
.price-card-small { font-size: .7rem; color: rgba(255,255,255,.25); text-align: center; }

.payment-row {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s3); flex-wrap: wrap; margin-top: var(--s4);
  padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,.07);
}
.payment-label { font-size: .72rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .08em; }
.payment-icons { display: flex; align-items: center; gap: var(--s2); }
.payment-icons img { height: 26px; opacity: .7; transition: opacity .15s; }
.payment-icons img:hover { opacity: 1; }


/* ---- HEALTHY CLUB ---- */
.healthy-club {
  background: linear-gradient(135deg, #070e1c 0%, #0d2040 60%, #070e1c 100%);
  color: var(--white);
}
.hc-inner {
  display: flex; flex-direction: column; gap: var(--s4); align-items: flex-start;
}
@media (min-width: 768px) { .hc-inner { flex-direction: row; align-items: flex-start; gap: var(--s5); } }
.hc-logo { width: 80px; flex-shrink: 0; margin: 0 auto; }
@media (min-width: 768px) { .hc-logo { width: 95px; margin: 0; } }
.hc-logo img { width: 100%; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.hc-content { flex: 1; }
.hc-eyebrow { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-bright); margin-bottom: var(--s1); }
.hc-title { font-family: var(--font-head); font-weight: 750; font-size: clamp(1.3rem, 4.5vw, 1.8rem); color: var(--white); margin-bottom: .3rem; }
.hc-tagline { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: var(--s2); }
.hc-perks { margin-bottom: var(--s3); display: flex; flex-direction: column; gap: .5rem; }
.hc-perks li { display: flex; align-items: flex-start; gap: var(--s1); font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.45; }
.hc-perks li span { color: var(--blue-bright); font-weight: 900; flex-shrink: 0; font-size: .9rem; margin-top: .05rem; }
.hc-perks li strong { color: rgba(255,255,255,.95); }
.hc-notice {
  background: rgba(255,255,255,.04); border: 1px solid rgba(61,143,212,.2);
  border-radius: var(--r-md); padding: var(--s2) var(--s3);
  font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.7;
}
.hc-notice strong { color: rgba(255,255,255,.75); }


/* ---- GUARANTEE ---- */
.guarantee { background: var(--navy); padding: var(--s7) 0; }
.guarantee-card {
  background: #0d1a2e; border-radius: var(--r-xl);
  padding: var(--s5) var(--s4); text-align: center;
  box-shadow: var(--shadow-xl); max-width: 560px; margin-inline: auto;
  border: 1px solid rgba(61,143,212,.2);
}
.guarantee-seal { width: 130px; margin: 0 auto var(--s3); }
.guarantee-card h2 {
  font-family: var(--font-head); font-weight: 750;
  font-size: clamp(1.4rem, 5vw, 1.9rem); color: var(--white);
  margin-bottom: var(--s3); line-height: 1.15;
}
.guarantee-card h2 em { font-style: normal; color: var(--blue-bright); }
.guarantee-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.75; }


/* ---- FAQ ---- */
.faq { background: var(--white); border-top: 3px solid var(--navy); }
.faq .wrap { text-align: center; }
.faq-list { max-width: 680px; margin-inline: auto; margin-top: var(--s4); display: flex; flex-direction: column; gap: var(--s2); }
.faq-item { background: var(--white); border-radius: var(--r-md); border: 1px solid var(--light); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3); background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body); font-size: .9rem; font-weight: 700;
  color: var(--navy); gap: var(--s2); transition: background .15s;
}
.faq-q:hover { background: var(--off-white); }
.faq-icon {
  flex-shrink: 0; width: 1.4rem; height: 1.4rem;
  background: var(--navy); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; line-height: 1;
  transition: transform .25s, background .15s;
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--blue-mid); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 var(--s3) var(--s3); font-size: .88rem; color: #555; line-height: 1.75; }
.faq-a.open { display: block; }
.faq-a p { margin-bottom: var(--s1); }
.faq-a p:last-child { margin: 0; }


/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.05);
  padding: var(--s6) 0 var(--s4);
}
.site-footer .wrap { text-align: center; }
.footer-logo { margin: 0 auto var(--s3); height: 40px; object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s1); margin-bottom: var(--s4); }
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.35); padding: .2rem .5rem; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.75); }
.footer-disclaimer { text-align: left; border-top: 1px solid rgba(255,255,255,.05); padding-top: var(--s3); margin-bottom: var(--s3); }
.footer-disclaimer p { font-size: .72rem; color: rgba(255,255,255,.2); line-height: 1.7; margin-bottom: var(--s1); }
.footer-disclaimer p:last-child { margin: 0; }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.18); margin-top: var(--s3); }


/* ---- STICKY CTA ---- */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy-dark); border-top: 1px solid rgba(92,173,30,.35);
  padding: var(--s2) var(--s3); box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
@media (max-width: 767px) { .sticky-cta { display: block; } }
.sticky-cta .btn-green { animation: pulse-btn 2s ease-in-out infinite; }
