:root {
  --bg: #f4f1e8;
  --bg2: #eae5d6;
  --bg3: #fdfaf3;
  --ink: #18221f;
  --ink2: #4a5750;
  --ink3: #8a978f;
  --green: #0b3a30;
  --green2: #165c4c;
  --green3: #2a8a74;
  --green4: #a8ddd0;
  --amber: #c06b2a;
  --amber2: #e8a06a;
  --amber3: #fbe6d4;
  --line: #d6e0d8;
  --white: #fffef9;
  --fs: "Fraunces", serif;
  --fb: "Inter", sans-serif;
  --fm: "IBM Plex Mono", monospace;
  --r: 6px;
  --shadow: 0 4px 24px -8px rgba(11, 58, 48, 0.18);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fb);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--fs);
  font-weight: 600;
  color: var(--green);
  line-height: 1.15;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}
.eyebrow {
  font-family: var(--fm);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--amber);
}
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 232, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 36px;
}
.logo-block {
  display: flex;
  flex-direction: column;
}
.logo-block .brand {
  font-family: var(--fs);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}
.logo-block .mfr {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink2);
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  align-items: center;
}
.nav-links a {
  color: var(--ink2);
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  border-bottom-color: var(--amber);
}
.btn-nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--green2);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  width: 40px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    max-height: 400px;
    padding: 10px 0;
  }
  .nav-links a {
    padding: 12px 36px;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle {
    display: flex;
  }
}

/* ===== PAGE BANNER (sub-pages) ===== */
.page-banner {
  background: var(--green);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(42, 138, 116, 0.25);
}
.page-banner .wrap {
  position: relative;
  z-index: 2;
}
.page-banner .crumb {
  font-family: var(--fm);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.page-banner .crumb a {
  color: rgba(255, 255, 255, 0.8);
}
.page-banner .crumb a:hover {
  color: var(--amber2);
}
.page-banner h1 {
  color: #fff;
  font-size: 38px;
  max-width: 680px;
  margin-bottom: 14px;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 560px;
}

/* ===== HERO SLIDER (home only) ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green);
  min-height: 640px;
}
.hero-slides {
  position: relative;
  height: 640px;
  z-index: 2;
}
.hslide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 64px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transform: translateX(24px);
}
.hslide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.hslide-text {
  flex: 1 1 auto;
  max-width: 540px;
}
.hslide-text .eyebrow {
  color: var(--amber2);
}
.hslide-text .eyebrow::before {
  background: var(--amber2);
}
.hslide-text h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.hslide-text h1 em {
  font-style: normal;
  color: var(--amber2);
}
.hslide-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 28px;
}
.hero-product-card {
  flex: 0 0 320px;
  height: 400px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 35px 80px -25px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  border-top: 7px solid var(--amber2);
}
.hero-product-card .photo-real.contain {
  height: 100%;
  background: #fff;
}
.hero-product-card .photo-real.contain img {
  padding: 30px;
}
.hero-ctrl {
  position: absolute;
  bottom: 32px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.hero-dots {
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    width 0.3s;
}
.hero-dot.active {
  background: var(--amber2);
  width: 44px;
}
.hero-arrows {
  display: flex;
  gap: 8px;
}
.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--amber2);
  transition: width 0.1s linear;
  z-index: 10;
}
@media (max-width: 900px) {
  .hero-slides {
    height: auto;
    min-height: 680px;
  }
  .hslide {
    flex-direction: column-reverse;
    padding: 24px;
    gap: 24px;
    justify-content: center;
  }
  .hslide-text {
    max-width: none;
    text-align: center;
  }
  .hslide-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hslide-text h1 {
    font-size: 28px;
  }
  .hero-product-card {
    flex: 0 0 auto;
    width: 220px;
    height: 280px;
  }
  .hero-ctrl {
    left: 24px;
    bottom: 18px;
  }
}

/* ===== TRUST STRIP ===== */
.trust {
  background: var(--amber);
  color: #fff;
}
.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.trust-item {
  padding: 18px 16px;
  background: var(--amber);
  text-align: center;
}
.trust-item .tn {
  font-family: var(--fm);
  font-size: 20px;
  font-weight: 600;
}
.trust-item .tl {
  font-size: 11.5px;
  opacity: 0.85;
  margin-top: 3px;
}
@media (max-width: 780px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:last-child {
    display: none;
  }
}

/* ===== SECTION BASICS ===== */
section {
  padding: 96px 0;
}
.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: 36px;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink2);
  font-size: 16.5px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== INTRO / ABOUT ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.intro-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.intro-card p {
  color: var(--ink2);
  font-size: 15px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  font-family: var(--fm);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1.5px solid var(--green3);
  color: var(--green2);
  background: var(--bg);
}
.intro-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.istat {
  background: var(--green);
  color: #fff;
  border-radius: var(--r);
  padding: 22px 20px;
  text-align: center;
}
.istat .num {
  font-family: var(--fm);
  font-size: 26px;
  font-weight: 600;
  color: var(--amber2);
}
.istat .lab {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
}
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== LINK CARD (cross-page teasers) ===== */
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.link-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: block;
}
.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.link-card .lc-icon {
  width: 44px;
  height: 44px;
  background: var(--amber3);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.link-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.link-card p {
  color: var(--ink2);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.link-card .lc-more {
  font-family: var(--fm);
  font-size: 12.5px;
  color: var(--amber);
}
@media (max-width: 900px) {
  .link-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BENEFITS SLIDER ===== */
.benefits-section {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bslider-wrap {
  position: relative;
  overflow: hidden;
}
.bslider {
  display: flex;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bslide-card {
  flex: 0 0 33.333%;
  background: var(--white);
  border-radius: 10px;
  padding: 36px;
  border: 1px solid var(--line);
  margin: 0 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.bslide-card:hover {
  transform: translateY(-4px);
}
.bslide-card .b-icon {
  width: 48px;
  height: 48px;
  background: var(--amber3);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bslide-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.bslide-card p {
  color: var(--ink2);
  font-size: 15px;
  line-height: 1.65;
}
.bslide-card .b-stat {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--fm);
  font-size: 13px;
  color: var(--amber);
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.sdot.active {
  background: var(--amber);
  transform: scale(1.3);
}
.slider-arrows {
  display: flex;
  gap: 10px;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--green);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.slider-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
@media (max-width: 900px) {
  .bslide-card {
    flex: 0 0 85%;
  }
}
@media (max-width: 600px) {
  .bslide-card {
    flex: 0 0 92%;
  }
}

/* ===== WEIGHT LOSS ===== */
.weight-section {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.weight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(42, 138, 116, 0.3) 0%,
    transparent 70%
  );
}
.weight-section .wrap {
  position: relative;
}
.weight-section .section-head h2 {
  color: #fff;
}
.weight-section .section-head p {
  color: rgba(255, 255, 255, 0.75);
}
.weight-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}
.chart-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 36px;
}
.chart-block h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 28px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.bar-label {
  font-family: var(--fm);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  width: 72px;
  flex-shrink: 0;
  text-align: right;
}
.bar-track {
  flex: 1;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-family: var(--fm);
  font-size: 13px;
  font-weight: 600;
  transition: width 1.2s ease;
}
.bar-fill.placebo {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.bar-fill.d5 {
  background: var(--green3);
}
.bar-fill.d10 {
  background: #3aad97;
}
.bar-fill.d15 {
  background: var(--amber);
  color: var(--green);
}
.chart-note-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
  line-height: 1.7;
}
.weight-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.wstat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r);
  padding: 24px;
}
.wstat .wnum {
  font-family: var(--fm);
  font-size: 32px;
  font-weight: 600;
  color: var(--amber2);
}
.wstat .wlabel {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .weight-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tl-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
}
.tl-card .tl-wk {
  font-family: var(--fm);
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 10px;
}
.tl-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 13.5px;
  color: var(--ink2);
}
@media (max-width: 900px) {
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MECHANISM ===== */
.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mech-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.mech-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green3);
}
.mech-card.amber::after {
  background: var(--amber);
}
.mech-card h3 {
  font-size: 20px;
  margin: 14px 0 12px;
}
.mech-card p {
  color: var(--ink2);
  font-size: 15px;
}
.mech-num {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--green3);
  font-weight: 600;
}
.mech-card.amber .mech-num {
  color: var(--amber);
}
.steps-list {
  margin-top: 56px;
}
.step-row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.step-row:last-child {
  border-bottom: none;
}
.step-n {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--white);
  background: var(--green);
  padding: 4px 8px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 3px;
}
.step-row h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.step-row p {
  color: var(--ink2);
  font-size: 14.5px;
}
@media (max-width: 900px) {
  .mechanism-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DOSAGE ===== */
.dosage-section {
  background: var(--bg2);
}
.dose-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.dose-header-row h2 {
  font-size: 36px;
  max-width: 520px;
}
.dose-header-row p {
  color: var(--ink2);
  font-size: 14.5px;
  max-width: 360px;
  text-align: right;
}
.dose-stair {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
}
.dcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-align: center;
  padding: 20px 10px;
  position: relative;
}
.dcard.start {
  border-color: var(--green3);
}
.dcard.peak {
  border-color: var(--amber);
  background: var(--amber3);
}
.dcard .mg {
  font-family: var(--fm);
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
}
.dcard.peak .mg {
  color: var(--amber);
}
.dcard .ph {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 6px;
}
.dcard .badge {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--white);
  background: var(--green3);
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 8px;
  display: inline-block;
}
.dcard.peak .badge {
  background: var(--amber);
}
.dose-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 14.5px;
}
.dose-table th {
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.dose-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink2);
}
.dose-table tr:nth-child(even) td {
  background: var(--white);
}
.dose-table .tag {
  display: inline-block;
  font-family: var(--fm);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--bg2);
  color: var(--green2);
  border: 1px solid var(--line);
}
.dose-table .tag.starting {
  background: rgba(42, 138, 116, 0.12);
  color: var(--green2);
  border-color: var(--green3);
}
.dose-table .tag.maintenance {
  background: var(--amber3);
  color: var(--amber);
  border-color: var(--amber2);
}
.doc-note {
  background: var(--white);
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  border-radius: 0 var(--r) var(--r) 0;
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink2);
}
.doc-note strong {
  color: var(--ink);
}
@media (max-width: 900px) {
  .dose-stair {
    grid-template-columns: repeat(3, 1fr);
  }
  .dose-header-row p {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .dose-stair {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== TESTIMONIALS ===== */
.testi-section {
  background: var(--bg3);
}
.tslider-wrap {
  position: relative;
  overflow: hidden;
}
.tslider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tcard {
  flex: 0 0 50%;
  padding: 0 12px;
}
.tcard-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
  height: 100%;
  box-shadow: var(--shadow);
  position: relative;
}
.tcard-inner::before {
  content: "\201C";
  font-family: var(--fs);
  font-size: 72px;
  color: var(--amber3);
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}
.tcard-inner .quote {
  padding-top: 36px;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fm);
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.tcard-meta .name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.tcard-meta .detail {
  font-size: 13px;
  color: var(--ink3);
}
.stars {
  color: var(--amber);
  font-size: 14px;
  margin-top: 4px;
}
@media (max-width: 780px) {
  .tcard {
    flex: 0 0 92%;
  }
}

/* ===== SAFETY ===== */
.safety-section {
  background: var(--white);
}
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.safety-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
}
.safety-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.slist {
  list-style: none;
}
.slist li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink2);
}
.slist li:last-child {
  border-bottom: none;
}
.slist .icon {
  flex-shrink: 0;
  font-size: 16px;
}
.rx-box {
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 32px;
}
.rx-box h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}
.rx-box p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}
.rx-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  padding: 8px 16px;
  border-radius: 3px;
  font-family: var(--fm);
  font-size: 13px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .safety-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg2);
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fb);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  gap: 12px;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green2);
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
@media (max-width: 780px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ORDER / CTA ===== */
.order-section {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42, 138, 116, 0.25);
}
.order-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(11, 58, 48, 0.4);
}
.order-section .wrap {
  position: relative;
  z-index: 2;
}
.order-section .section-head h2 {
  color: #fff;
}
.order-section .section-head p {
  color: rgba(255, 255, 255, 0.75);
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.ostep {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r);
  padding: 28px;
}
.ostep .on {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--amber2);
  margin-bottom: 12px;
}
.ostep h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}
.ostep p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.order-bottom {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.order-bottom h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}
.order-bottom p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  max-width: 440px;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.wa-btn svg {
  flex-shrink: 0;
}
.req-note {
  margin-top: 16px;
  font-family: var(--fm);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.req-note::before {
  content: "⚠";
  font-style: normal;
}
.mini-cta {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.mini-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mini-cta-row h3 {
  font-size: 22px;
}
.mini-cta-row p {
  color: var(--ink2);
  font-size: 14.5px;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .order-steps {
    grid-template-columns: 1fr;
  }
  .order-bottom {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

/* ===== PHOTO GALLERY SLIDER (placeholder-ready) ===== */
.photo-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.photo-gallery-slides {
  position: relative;
  height: 460px;
}
.gslide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
}
.gslide.active {
  opacity: 1;
  visibility: visible;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}
.photo-placeholder .ph-icon {
  opacity: 0.55;
}
.photo-placeholder .ph-label {
  font-family: var(--fm);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  padding: 7px 16px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-align: center;
}
.gslide-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 32px 36px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}
.gslide-caption .eyebrow {
  color: var(--amber2);
  margin-bottom: 8px;
}
.gslide-caption .eyebrow::before {
  background: var(--amber2);
}
.gslide-caption h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
}
.gslide-caption p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  max-width: 460px;
}
.gallery-ctrl {
  position: absolute;
  bottom: 22px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}
@media (max-width: 780px) {
  .photo-gallery-slides {
    height: 340px;
  }
  .gslide-caption {
    padding: 22px;
  }
  .gslide-caption h3 {
    font-size: 18px;
  }
  .gallery-ctrl {
    right: 18px;
    bottom: 16px;
  }
}

/* small variant used for dosage pen gallery (shorter, lighter) */
.photo-gallery.compact .photo-gallery-slides {
  height: 320px;
}
.photo-gallery.compact .photo-placeholder {
  border-radius: 0;
}
@media (max-width: 780px) {
  .photo-gallery.compact .photo-gallery-slides {
    height: 260px;
  }
}

/* ===== DOSE COLOUR CODING (sampled from real Tizaro packaging) ===== */
:root {
  --dc-25: #0d3e8c;
  --dc-5: #5a2d8c;
  --dc-75: #ea514c;
  --dc-10: #237e38;
  --dc-15: #1c8fc4;
}
.dose-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.dl-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 14px 7px 8px;
  font-family: var(--fm);
  font-size: 12.5px;
  color: var(--ink2);
}
.dl-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
}
.dcard .dswatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: 0 auto 8px;
}
.dose-table .dswatch {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== REAL PHOTO HANDLING (proper alignment / no distortion) ===== */
.photo-real {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
}
.photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-real.contain {
  background: #f4f1e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-real.contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 28px;
}
.gslide-caption.on-real {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1px) brightness(0.55) saturate(1.05);
  transform: scale(1.08);
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(11, 58, 48, 0.82) 0%,
    rgba(14, 59, 54, 0.62) 45%,
    rgba(11, 58, 48, 0.38) 100%
  );
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 28px;
  font-size: 13.5px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.flogos {
  font-family: var(--fs);
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}
footer h4 {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--fb);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 600;
}
footer p,
footer li {
  line-height: 1.75;
  margin-bottom: 4px;
}
footer ul {
  list-style: none;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
footer ul li a:hover {
  color: #fff;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float{
  position:fixed;bottom:28px;right:28px;z-index:200;
  display:inline-flex;align-items:center;gap:10px;
  background:#25D366;color:#fff;text-decoration:none;
  padding:16px 24px;border-radius:50px;
  font-family:Arial,Helvetica,sans-serif;font-weight:700;font-size:16px;
  box-shadow:0 14px 34px -8px rgba(0,0,0,.45);
  animation:wa-shake 4.5s ease-in-out infinite;
}
.whatsapp-float:hover{background:#1ebd5a;}
.whatsapp-float .wa-ico{flex-shrink:0;width:30px;height:30px;}
.whatsapp-float .wa-ring{
  position:absolute;inset:-6px;border-radius:50px;
  border:2px solid rgba(37,211,102,.55);
  animation:wa-ping 2.2s ease-out infinite;
}
@keyframes wa-shake{
  0%,100%{transform:rotate(0deg) scale(1);}
  2%{transform:rotate(-9deg) scale(1.04);}
  4%{transform:rotate(8deg) scale(1.04);}
  6%{transform:rotate(-7deg) scale(1.03);}
  8%{transform:rotate(7deg) scale(1.03);}
  10%{transform:rotate(-4deg);}
  12%{transform:rotate(4deg);}
  14%{transform:rotate(0deg);}
}
@keyframes wa-ping{
  0%{transform:scale(.92);opacity:.9;}
  70%{transform:scale(1.35);opacity:0;}
  100%{transform:scale(1.35);opacity:0;}
}
@media(max-width:600px){
  .whatsapp-float{padding:15px;border-radius:50%;}
  .whatsapp-float .wa-label{display:none;}
  .whatsapp-float .wa-ring{border-radius:50%;}
}
@media(prefers-reduced-motion: reduce){
  .whatsapp-float{animation:none;}
  .whatsapp-float .wa-ring{animation:none;display:none;}
}