/* ================================================================
   BP & BLOOD SUGAR RESET PROTOCOL — Inner Pages CSS
   Shared styles for: About, How To Use, FAQ, Product Page
   Inherits all variables from landing.css
================================================================ */

/* ── PAGE HERO BANNER ───────────────────────────────────────── */
.page-hero {
  background: var(--forest);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 20%, rgba(46,125,82,.3) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(184,134,11,.1) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.page-hero-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold-lt);
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.75);
  max-width: 640px;
  line-height: 1.65;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-top: 32px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--gold-lt); }
.page-hero-breadcrumb span { color: rgba(255,255,255,.3); }

/* ── PAGE BODY WRAPPER ──────────────────────────────────────── */
.page-body { padding: 80px 0 100px; background: var(--cream); }
.page-body--alt { background: var(--sage-lt); }
.page-body--dark { background: var(--forest); }

/* ── INNER CONTENT GRID (content + optional sidebar) ────────── */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.page-main { min-width: 0; }

/* ── SECTION BLOCKS ─────────────────────────────────────────── */
.content-section { margin-bottom: 72px; }
.content-section:last-child { margin-bottom: 0; }

/* Kicker label */
.kicker-label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

/* Headings */
.page-h1 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-h2 {
  font-family: var(--ff-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--forest-mid);
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 52px;
}
.page-h2:first-child { margin-top: 0; }
.page-h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 36px;
}

/* Body text */
.page-body-text {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 18px;
}
.page-body-text:last-child { margin-bottom: 0; }
.page-body-text strong { color: var(--charcoal); }
.page-body-text em { color: var(--forest-mid); font-style: italic; }

/* Pull quote */
.pull-quote {
  font-family: var(--ff-head);
  font-size: clamp(19px, 2.5vw, 26px);
  font-style: italic;
  color: var(--forest-mid);
  line-height: 1.5;
  padding: 28px 36px;
  border-left: 6px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 40px 0;
}

/* Divider */
.content-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--sage), transparent);
  margin: 60px 0;
  border: none;
}

/* ── COLOURED CALLOUT BOXES ──────────────────────────────────── */
.callout-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}
.callout-box__head {
  padding: 16px 28px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
}
.callout-box__body { padding: 20px 28px 24px; }
.callout-box__body p { font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.callout-box__body p:last-child { margin-bottom: 0; }
.callout-box__body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.callout-box__body ul li { font-size: 15px; line-height: 1.65; }

.callout-box--green .callout-box__head { background: var(--forest); color: var(--white); }
.callout-box--green .callout-box__body { background: var(--sage-lt); color: var(--charcoal); }
.callout-box--green .callout-box__body ul li::before { content: '✓'; color: var(--forest-mid); font-weight: 700; margin-right: 10px; }

.callout-box--gold .callout-box__head { background: var(--gold); color: var(--white); }
.callout-box--gold .callout-box__body { background: var(--gold-pale); color: var(--charcoal); }
.callout-box--gold .callout-box__body ul li::before { content: '→'; color: var(--gold); font-weight: 700; margin-right: 10px; }

.callout-box--red .callout-box__head { background: var(--red); color: var(--white); }
.callout-box--red .callout-box__body { background: var(--red-lt); color: var(--charcoal); }

.callout-box--blue .callout-box__head { background: #1a2f6a; color: var(--white); }
.callout-box--blue .callout-box__body { background: #ebf5fb; color: var(--charcoal); }
.callout-box--blue .callout-box__body ul li::before { content: '💡'; margin-right: 10px; }

/* ── BULLET / CHECK LISTS ───────────────────────────────────── */
.check-list, .bullet-list, .arrow-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li, .bullet-list li, .arrow-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.65;
}
.check-list li::before  { content: '✓'; color: var(--forest-mid); font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.bullet-list li::before { content: '•'; color: var(--gold); font-weight: 700; font-size: 20px; flex-shrink: 0; line-height: 1.3; }
.arrow-list li::before  { content: '→'; color: var(--forest-lt); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.check-list li strong, .bullet-list li strong { color: var(--charcoal); }

/* Numbered steps */
.step-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.step-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--forest);
  color: var(--gold-lt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.step-content p { font-size: 15px; color: var(--slate); line-height: 1.65; margin: 0; }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline-block { position: relative; margin: 40px 0; }
.timeline-block::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--forest-lt), var(--gold));
}
.tl-entry {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}
.tl-dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  position: relative;
  z-index: 1;
}
.tl-dot-inner {
  width: 52px; height: 52px;
  background: var(--forest);
  border: 4px solid var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 900;
  color: var(--gold-lt);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
}
.tl-content {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-left: 16px;
  box-shadow: var(--shadow-sm);
}
.tl-content h4 {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.tl-content ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.tl-content ul li { font-size: 15px; color: var(--slate); padding-left: 20px; position: relative; line-height: 1.6; }
.tl-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--forest-lt); font-weight: 700; }

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th {
  padding: 16px 20px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
}
.compare-table th:first-child { background: var(--red); color: var(--white); }
.compare-table th:last-child  { background: var(--forest); color: var(--white); }
.compare-table td {
  padding: 13px 20px;
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dk);
  vertical-align: top;
  line-height: 1.6;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(odd)  td:first-child { background: #fff5f5; }
.compare-table tr:nth-child(even) td:first-child { background: var(--white); }
.compare-table tr:nth-child(odd)  td:last-child  { background: var(--sage-lt); }
.compare-table tr:nth-child(even) td:last-child  { background: var(--white); }
.compare-table td:first-child { color: var(--red); }
.compare-table td:last-child  { color: var(--forest-mid); }

/* ── ROUTINE CARDS ───────────────────────────────────────────── */
.routine-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 32px 0; }
.routine-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.routine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.routine-card__head {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--cream-dk);
}
.routine-card__head .icon { font-size: 32px; margin-bottom: 8px; }
.routine-card__head h3 {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
}
.routine-card__head .time {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.routine-card__body { padding: 18px 22px; }
.routine-card__body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.routine-card__body ul li { font-size: 14px; color: var(--slate); padding-left: 18px; position: relative; line-height: 1.6; }
.routine-card__body ul li::before { content: '→'; position: absolute; left: 0; color: var(--forest-lt); }

/* ── EAT / AVOID GRID ───────────────────────────────────────── */
.eat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.eat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.eat-card__head {
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
}
.eat-card--green .eat-card__head { background: var(--forest); color: var(--white); }
.eat-card--green .eat-card__body { background: var(--sage-lt); }
.eat-card--red   .eat-card__head { background: var(--red);    color: var(--white); }
.eat-card--red   .eat-card__body { background: #fff8f8; }
.eat-card__body { padding: 16px 22px; }
.eat-card__body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.eat-card__body ul li { font-size: 14px; color: var(--charcoal); line-height: 1.6; padding-left: 20px; position: relative; }
.eat-card--green .eat-card__body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--forest-lt); font-weight: 700; }
.eat-card--red   .eat-card__body ul li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ── PILLAR CARDS ────────────────────────────────────────────── */
.pillars-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 36px 0; }
.pillar-mini {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.pillar-mini:hover { transform: translateY(-4px); }
.pillar-mini__num {
  font-family: var(--ff-head);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  position: absolute; top: -8px; right: 16px;
  line-height: 1; pointer-events: none;
}
.pillar-mini__icon { font-size: 36px; margin-bottom: 14px; }
.pillar-mini__label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--gold-lt);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pillar-mini h3 { font-family: var(--ff-head); font-size: 22px; color: var(--white); margin-bottom: 10px; }
.pillar-mini p  { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── STAT BADGES ROW ─────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 40px 0; }
.stat-badge {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-badge .num {
  font-family: var(--ff-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
}
.stat-badge .unit { font-size: 20px; }
.stat-badge .lbl { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.page-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-card__head {
  padding: 16px 22px;
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.sidebar-card__body { padding: 20px 22px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 16px; line-height: 1.6; }
.sidebar-cta .price {
  font-family: var(--ff-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.sidebar-cta .price sub { font-size: 22px; vertical-align: middle; }
.sidebar-cta .once { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .12em; color: var(--gold-lt); text-transform: uppercase; margin-bottom: 20px; }
.sidebar-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav li a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius);
  transition: all .2s;
  border-left: 3px solid transparent;
}
.sidebar-nav li a:hover { background: var(--sage-lt); color: var(--forest); border-left-color: var(--gold); }
.sidebar-nav li a.active { background: var(--sage-lt); color: var(--forest); font-weight: 700; border-left-color: var(--forest); }

/* ── FAQ SPECIFIC ────────────────────────────────────────────── */
.faq-section { margin-bottom: 48px; }
.faq-section-title {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sage);
  margin-bottom: 20px;
}
.faq-item-block {
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
  transition: box-shadow .2s;
}
.faq-item-block:hover { box-shadow: var(--shadow-sm); }
.faq-q-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color .2s, background .2s;
}
.faq-q-btn:hover { color: var(--forest); background: var(--sage-lt); }
.faq-q-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .08em;
  flex-shrink: 0;
}
.faq-arrow-icon {
  width: 30px; height: 30px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  font-size: 16px;
  transition: transform .3s, background .3s;
}
.faq-item-block.open .faq-arrow-icon { transform: rotate(180deg); background: var(--forest); color: var(--white); }
.faq-item-block.open .faq-q-btn { color: var(--forest); background: var(--sage-lt); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--white);
}
.faq-item-block.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 6px 28px 24px;
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  border-top: 1px solid var(--cream-dk);
}

/* ── PRODUCT PAGE SPECIFIC ───────────────────────────────────── */
.product-hero {
  background: var(--forest);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 900px 700px at 75% 10%, rgba(46,125,82,.3) 0%, transparent 65%),
              radial-gradient(ellipse 500px 500px at 5% 90%, rgba(184,134,11,.1) 0%, transparent 65%);
  pointer-events: none;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.product-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  margin-bottom: 22px;
}
.product-hero h1 em { font-style: italic; color: var(--gold-lt); }
.product-hero-sub { font-size: 18px; color: rgba(255,255,255,.78); max-width: 560px; line-height: 1.7; margin-bottom: 36px; }
.product-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.product-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 40px;
}
.product-badge .dot { width: 7px; height: 7px; background: var(--gold-lt); border-radius: 50%; }

/* Pricing card on product hero */
.product-price-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
}
.ppc-top { text-align: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.13); margin-bottom: 24px; }
.ppc-was { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: line-through; margin-bottom: 4px; }
.ppc-price { font-family: var(--ff-head); font-size: 64px; font-weight: 900; color: var(--white); line-height: 1; }
.ppc-price sub { font-size: 28px; vertical-align: middle; }
.ppc-once { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; color: var(--gold-lt); text-transform: uppercase; margin-top: 6px; }
.ppc-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.ppc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5; }
.ppc-check { width: 18px; height: 18px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--white); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ppc-guar { background: rgba(184,134,11,.15); border: 1px solid rgba(184,134,11,.3); border-radius: var(--radius); padding: 11px 16px; font-size: 12px; color: var(--gold-lt); text-align: center; margin-bottom: 16px; }

/* Includes grid */
.includes-grid-inner { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 36px 0; }
.inc-card {
  display: flex; gap: 16px;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .3s;
}
.inc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.inc-icon { width: 46px; height: 46px; background: var(--sage); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.inc-card h4 { font-size: 16px; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.inc-card p  { font-size: 13px; color: var(--slate); line-height: 1.55; }
.inc-badge { display: inline-block; font-size: 10px; font-weight: 700; color: var(--gold); background: var(--gold-pale); border: 1px solid var(--gold); border-radius: 20px; padding: 2px 9px; margin-top: 6px; }

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin: 32px 0; }
.benefit-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--sage-lt);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 4px solid var(--forest-lt);
}
.benefit-item .bi-icon { font-size: 22px; flex-shrink: 0; }
.benefit-item h4 { font-size: 15px; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
.benefit-item p  { font-size: 13px; color: var(--slate); line-height: 1.5; margin: 0; }

/* Final CTA band */
.final-cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, #0e0e14 100%);
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta-band h2 { font-family: var(--ff-head); font-size: clamp(30px, 4.5vw, 52px); color: var(--white); line-height: 1.15; margin-bottom: 18px; }
.final-cta-band h2 em { color: var(--gold-lt); }
.final-cta-band p { font-size: 18px; color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto 40px; }
.secure-row { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-top: 20px; }
.secure-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }

/* Urgency bar */
.urgency-band {
  background: var(--red-lt);
  border: 1px solid rgba(192,57,43,.2);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--red); font-weight: 600;
  margin: 36px 0;
  justify-content: center;
}
.urgency-pulse { width: 10px; height: 10px; background: var(--red); border-radius: 50%; flex-shrink: 0; animation: ublink 1.2s ease-in-out infinite; }
@keyframes ublink { 0%,100%{opacity:1} 50%{opacity:.15} }

/* ── ABOUT PAGE SPECIFIC ─────────────────────────────────────── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 36px 0; }
.mission-card {
  background: var(--white); border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mission-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(180deg, var(--gold), var(--forest-lt)); }
.mission-card .mc-icon { font-size: 34px; margin-bottom: 14px; }
.mission-card h3 { font-family: var(--ff-head); font-size: 20px; color: var(--forest); margin-bottom: 10px; }
.mission-card p  { font-size: 15px; color: var(--slate); line-height: 1.65; }

/* Differentiator list */
.diff-list { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.diff-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dk);
  transition: background .2s;
}
.diff-item:last-child { border-bottom: none; }
.diff-item:hover { background: var(--sage-lt); }
.diff-icon { width: 40px; height: 40px; background: var(--sage); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.diff-item h4 { font-size: 16px; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.diff-item p  { font-size: 14px; color: var(--slate); line-height: 1.6; margin: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .page-grid { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .routine-grid, .pillars-row { grid-template-columns: 1fr; }
  .eat-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-price-card { max-width: 480px; }
  .includes-grid-inner, .benefits-grid, .mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 80px 0 60px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
