*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --green: #2B74AA;
  --green-dark: #2B74AA;
  --green-light: #edf7ff;
  --green-mid: #5faa84;
  --amber: #e8a020;
  --amber-light: #fdf3e0;
  --cream: #faf8f3;
  --cream2: #f5f1e8;
  --text: #1c1c1c;
  --muted: #555;
  --light: #888;
  --border: #e0ddd4;
  --white: #fff;
  --red: #d94040;
  --radius: 10px;
  --radius-lg: 18px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}


/* NAV */
nav {
  background: #2B74AA;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 5px 5vw
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 20px
}

.nav-logo {
  font-size: 35px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 7px
}

.nav-logo i {
  color: var(--green-mid);
  font-size: 20px
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none
}

.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  transition: color .2s
}

.nav-links a:hover {
  color: var(--white)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-right a {
  font-size: 18px;
  color: var(--white);
  transition: color .2s
}

.nav-right a:hover {
  color: var(--green)
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--white)
}

/* HERO */
.hero {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 5vw 50px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  align-items: flex-start
}

.hero-img-wrap {
  position: sticky;
  top: 80px;
  /* distance from top while scrolling */
  align-self: start;
}

.hero-img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(4px)
}

.hero-img-badge i {
  color: #f5c842
}

.hero-img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--green-light);
  /* min-height: 420px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.hero-img-placeholder p {
  font-size: 16px;
  color: var(--green);
  font-weight: 700
}

.hero h1 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text)
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.75
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: var(--muted)
}

.hero-bullets i {
  color: var(--green);
  font-size: 19px;
  margin-top: 2px;
  flex-shrink: 0
}

/* PRICING BUNDLES */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: #fff;
  padding: 17px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: 'Nunito', sans-serif;
  transition: background .2s, transform .15s;
  letter-spacing: .2px
}

.cta-btn:hover {
  background: #d08f18;
  transform: translateY(-1px)
}

.cta-sub {
  text-align: center;
  font-size: 15px;
  color: var(--light);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.cta-sub i {
  color: var(--green)
}

/* PRESS */
.press-strip {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 5vw
}

.press-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap
}

.press-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light)
}

.press-item {
  font-size: 17px;
  font-weight: 900;
  color: var(--light);
  letter-spacing: -0.5px;
  font-style: italic;
  opacity: .7
}

/* SECTION COMMONS */
.section {
  padding: 70px 5vw
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto
}

.s-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px
}

.s-heading {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: -0.7px;
  line-height: 1.2;
  margin-bottom: 12px
}

.s-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 1000px;
  line-height: 1.75;
  margin: 0px auto 40px auto;
}

.center {
  text-align: center
}

.center .s-sub {
  margin-left: auto;
  margin-right: auto
}

/* DOCTOR SECTION */
.doctor-section {
  background: var(--cream)
}

.doctor-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center
}

.what-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center
}

.doctor-img-placeholder {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #c5e0d3
}

.doctor-img-placeholder i {
  font-size: 72px;
  color: var(--green-mid)
}

.doctor-img-placeholder img {
  border-radius: 20px;
}

.doctor-img-placeholder p {
  font-size: 16px;
  color: var(--green);
  font-weight: 700
}

.quote-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  position: relative
}

.quote-block::before {
  content: '\201C';
  font-size: 60px;
  color: var(--green-light);
  line-height: 0;
  position: absolute;
  top: 28px;
  left: 20px;
  font-family: Georgia, serif
}

.quote-block p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 28px;
  font-style: italic;
  margin-bottom: 16px;
}
.what-para p {
  font-style: normal;
  padding-left: 0px;
}
.what-para{
  padding: 20px !important;
}
.what-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 1000px;
    line-height: 1.75;
}
.what-para::before {
  content: '';
  font-size: 60px;
  color: var(--green-light);
  line-height: 0;
  position: absolute;
  top: 28px;
  left: 20px;
  font-family: Georgia, serif
}

.quote-block .attribution {
  font-size: 17px;
  font-weight: 800;
  color: var(--green-dark);
  padding-left: 28px;
  margin-top: 12px;
  font-style: normal
}

.doctor-bio-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px
}

.doctor-bio-row i {
  font-size: 22px;
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0
}

.doctor-bio-text h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 3px
}

.doctor-bio-text p {
  font-size: 16px;
  color: var(--muted)
}

/* BENEFITS */

.ben-root {
  font-family: 'Nunito', sans-serif;
  background: #f5f1e8;
  padding: 72px 24px;
  width: 100%
}

.ben-inner {
  max-width: 1100px;
  margin: 0 auto
}

.ben-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #272727;
  margin-bottom: 12px
}

.ben-tag i {
  font-size: 16px
}

.ben-head {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin-bottom: 14px
}

.ben-head span {
  color: #2B74AA
}

.ben-sub {
  font-size: 18px;
  color: #555;
  max-width: 1000px;
  line-height: 1.8;
  margin-bottom: 36px
}

.ben-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #d4e8da;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 15px;
  font-weight: 700;
  color: #272727
}

.pill i {
  font-size: 16px
}

.ben-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start
}

/* LEFT — Benefit Cards */
.ben-left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ben-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid #e0ddd4;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
  cursor: default
}

.ben-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .09)
}

.ben-card.active {
  border-left: 4px solid #2B74AA;
  background: var(--green-light);
  border-radius: 0 16px 16px 0
}

.ben-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ic-green {
  background: #e8f5ef
}

.ic-green i {
  color: #272727
}

.ic-amber {
  background: #fdf3e0
}

.ic-amber i {
  color: #b07a10
}

.ic-blue {
  background: #e8f0fb
}

.ic-blue i {
  color: #1a56c4
}

.ic-rose {
  background: #fdeef2
}

.ic-rose i {
  color: #b94060
}

.ic-purple {
  background: #f0eeff
}

.ic-purple i {
  color: #5340c4
}

.ic-teal {
  background: #e4f7f2
}

.ic-teal i {
  color: #0a7060
}

.ben-icon-wrap i {
  font-size: 24px
}

.ben-text-h {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px
}

.ben-text-p {
  font-size: 16px;
  color: #666;
  line-height: 1.65
}

/* RIGHT — Stats + Quotes */
.ben-right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ben-stat-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.ben-stat-box::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
  bottom: -40px;
  right: -40px
}

.ben-stat-box h3 {
  font-size: 14px;
  font-weight: 800;
  color: #000000;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 22px
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px
}

.stat-row:last-of-type {
  margin-bottom: 0
}

.stat-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700
}

.stat-label-row span:first-child {
  color: #000000
}

.stat-label-row span:last-child {
  color: #000000
}

.stat-bar-bg {
  background: #ffffff26;
  border-radius: 50px;
  height: 7px
}
.user-reviews-banner{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.user-reviews-banner img{
  border-radius: 10px;
  width: 100%;
}
.stat-bar-fill {
  background: var(--green-dark);
  border-radius: 50px;
  height: 7px;
  width: 0;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1)
}

.ben-quote-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  border: 1px solid #e0ddd4
}

.ben-quote-box .qstars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px
}

.ben-quote-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 12px
}

.ben-quote-meta {
  display: flex;
  align-items: center;
  gap: 10px
}

.qavatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e8f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #272727;
  flex-shrink: 0
}

.qname {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a
}

.qdate {
  font-size: 15px;
  color: #999
}

.verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  color: #2B74AA;
  font-weight: 700;
  margin-top: 4px
}

.verified i {
  font-size: 15px
}

/* CTA Row */
.ben-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap
}

.bcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #e8a020;
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s
}

.bcta-btn:hover {
  background: #c8880f;
  transform: translateY(-1px)
}

.bcta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #272727;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #5faa84;
  text-decoration: none;
  transition: background .2s
}

.bcta-ghost:hover {
  background: #e8f5ef
}


.rev-root {
  background: var(--cream2);
  padding: 72px 5vw;
}

.rev-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rev-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
  text-align: center;
}

/* Summary bar */
.rev-summary {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rev-big-score {
  text-align: center;
  flex-shrink: 0;
}

.rev-big-num {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -2px;
}

.rev-big-stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 2px;
  margin: 6px 0 4px;
}

.rev-big-count {
  font-size: 15px;
  color: var(--light);
  font-weight: 700;
}

.rev-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}

.rev-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 180px;
}

.rev-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-bar-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  min-width: 26px;
}

.rev-bar-bg {
  flex: 1;
  background: var(--cream2);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}

.rev-bar-fill {
  background: var(--green);
  border-radius: 50px;
  height: 8px;
  width: 0;
  transition: width 1.3s cubic-bezier(.4, 0, .2, 1);
}

.rev-bar-pct {
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
  min-width: 30px;
  text-align: right;
}

.rev-verified-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-shrink: 0;
}

.rev-vstat-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.rev-vstat-label {
  font-size: 15px;
  color: var(--light);
  font-weight: 600;
  margin-top: 3px;
}

/* Filters */
.rev-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.rev-filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #c5e0d3;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  transition: all .18s;
}

.rev-filter-btn:hover {
  background: var(--green-light);
  border-color: var(--green);
}

.rev-filter-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Cards grid */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.rev-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}

.rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
}

.rev-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rev-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--green-light);
}

.rev-avatar-fallback {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  border: 2.5px solid var(--green-light);
}

.rev-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rev-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.rev-date {
  font-size: 15px;
  color: var(--light);
  margin-top: 1px;
}

.rev-card-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: 3px;
}

.rev-verified-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  border-radius: 50px;
  padding: 4px 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.rev-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 7px;
}

.rev-card-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
}

.rev-card-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rev-tag-pill {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #c5e0d3;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
}

.rev-helpful {
  font-size: 11px;
  color: var(--light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-helpful-count {
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
  transition: color .15s;
}

.rev-helpful-count:hover {
  color: var(--green);
}

/* Load more */
.rev-load-row {
  text-align: center;
  margin-top: 36px;
}

.rev-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-dark);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.rev-load-btn:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* Write a review */
.rev-write-box {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 40px;
}

.rev-write-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 5px;
}

.rev-write-sub {
  font-size: 16px;
  color: var(--light);
  margin-bottom: 18px;
}

.rev-write-stars {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.rev-write-stars i {
  font-size: 30px;
  color: #ddd;
  cursor: pointer;
  transition: color .15s, transform .1s;
}

.rev-write-stars i:hover {
  color: #f5a623;
  transform: scale(1.15);
}

.rev-write-stars i.rev-star-lit {
  color: #f5a623;
}

.rev-write-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 17px;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  resize: vertical;
  outline: none;
  transition: border-color .2s;
  line-height: 1.6;
}

.rev-write-input:focus {
  border-color: var(--green);
}

.rev-write-submit {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.rev-write-submit:hover {
  background: #d08f18;
  transform: translateY(-1px);
}

.aeo-answer-block {
  background: #fffbf0;
  border: 2px solid #2B74AA;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  position: relative;
}
.aeo-answer-block::before {
  content: "Quick Answer";
  position: absolute;
  top: -12px;
  left: 16px;
  background: #2B74AA;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
}
.aeo-answer-block p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin: 0;
}

/* FIX #2: Author bio box */
.author-bio-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e0ddd4;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 28px 0 8px;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2B74AA, #e8a020);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.author-bio-text {
  flex: 1;
}
.author-name {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}
.author-title {
  font-size: 14px;
  color: #777;
  margin-top: 2px;
}
.author-updated {
  font-size: 13px;
  color: #aaa;
  margin-top: 3px;
}
.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #2B74AA;
  background: #fff6e6;
  border: 1px solid #e0c070;
  border-radius: 50px;
  padding: 3px 10px;
  margin-top: 5px;
}

/* Ingredient science citation links */
.ingr-study-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #1a56c4;
  margin-top: 8px;
  text-decoration: underline;
  transition: color .2s;
}
.ingr-study-link:hover {
  color: #0a3ea0;
}
.ingr-study-link i {
  font-size: 11px;
}

/* Trust badge strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 5px 13px;
}
.trust-badge i {
  color: #2B74AA;
}

/* Responsive */
@media (max-width: 1000px) {
  .rev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .rev-summary {
    flex-direction: column;
    gap: 24px;
    padding: 24px 22px;
  }

  .rev-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .rev-verified-box {
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .rev-root {
    padding: 52px 4vw;
  }

  .rev-grid {
    grid-template-columns: 1fr;
  }

  .rev-write-box {
    padding: 22px 18px;
  }

  .rev-filter-btn {
    font-size: 15px;
    padding: 7px 14px;
  }
}


/* Responsive */
@media(max-width:820px) {
  .ben-layout {
    grid-template-columns: 1fr
  }

  .ben-root {
    padding: 52px 18px
  }
}

@media(max-width:480px) {
  .ben-head {
    font-size: 26px
  }

  .ben-cta-row {
    flex-direction: column;
    align-items: stretch
  }

  .bcta-btn,
  .bcta-ghost {
    justify-content: center
  }
}

/* ROOT CAUSE */
.root-section {
  background: #fff
}

.root-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px
}

.root-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative
}

.root-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

.root-icon {
  font-size: 42px;
  color: var(--green-mid);
  margin-bottom: 14px
}

.root-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px
}

.root-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7
}

.root-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green-mid);
  padding-top: 60px
}

/* SOCIAL PROOF BANNER */
.proof-banner {
  position: relative;
  background-color: var(--green-dark);
  padding: 50px 5vw;
  text-align: center;
}

/* .proof-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
} */

.proof-banner>* {
  position: relative;
  z-index: 1;
}

.proof-quote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 20px;
  font-style: italic;
  line-height: 1.5
}

.proof-meta {
  font-size: 17px;
  color: var(--green-light);
  margin-bottom: 24px
}

.proof-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  transition: background .2s
}

.proof-btn:hover {
  background: #d08f18
}

.proof-quote,
.proof-meta,
.proof-meta strong {
  color: #fff !important;
}

/* HOW EMMA WORKS */
.how-section {
  background: var(--cream)
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px
}

.how-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08)
}

.how-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px
}

.how-icon-wrap i {
  font-size: 28px;
}

.how-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px
}

.how-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7
}

/* GUT DIAGRAM */
.gut-section {
  background: #fff
}

.gut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start
}

.gut-side {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--border)
}

.gut-side.healthy {
  border-color: #b8ddc9;
  background: var(--green-light)
}

.gut-side.leaky {
  border-color: #f5b8b8;
  background: #fef5f5
}

.gut-side-title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border)
}

.healthy .gut-side-title {
  color: #000;
}

.leaky .gut-side-title {
  color: var(--red)
}

.gut-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px
}

.gut-row i {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0
}

.healthy .gut-row i {
  color: var(--green)
}

.leaky .gut-row i {
  color: var(--red)
}

.gut-row p {
  font-size: 16px;
  color: var(--muted)
}

.gut-row strong {
  font-weight: 700;
  color: var(--text)
}

/* INGREDIENTS */
.ingr-section {
  background: var(--cream)
}

.ingr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px
}

.ingr-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .2s
}

.ingr-card:hover {
  transform: translateY(-2px)
}

.ingr-icon {
  width: 200px;
  height: auto;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border)
}

.ingr-icon i {
  font-size: 26px;
  color: var(--green)
}

.ingr-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 3px
}

.ingr-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px
}

.ingr-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 30px auto 0;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  border: 1.5px solid var(--green-mid);
  transition: background .2s
}

.see-all-btn:hover {
  background: #d0eddf
}

/* WHY EMMA */
.why-section {
  background: #fff
}

.why-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px
}

.why-table th {
  font-size: 16px;
  font-weight: 900;
  padding: 16px 14px;
  text-align: left;
  border-bottom: 2px solid var(--border)
}

.why-table th:first-child {
  width: 30%
}

.why-table th.emma-col {
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  text-align: center
}

.why-table th.other-col {
  color: var(--light);
  text-align: center
}

.why-table td {
  padding: 13px 14px;
  font-size: 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle
}

.why-table td.emma-col {
  background: var(--green-light);
  text-align: center
}

.why-table td.other-col {
  text-align: center
}

.why-table tr:last-child td {
  border-bottom: none
}

.check-yes {
  color: var(--green);
  font-size: 18px
}

.check-no {
  color: #ccc;
  font-size: 18px
}



.ps-root {
  font-family: 'Nunito', sans-serif;
  background: var(--green-light);
  padding: 60px 20px 50px;
  width: 100%
}

.ps-headline {
  text-align: center;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  color: #0d2340;
  line-height: 1.25;
  margin-bottom: 10px
}

.ps-headline span {
  color: #e63232
}

.ps-arrow {
  text-align: center;
  margin-bottom: 32px
}

.ps-arrow svg {
  display: block;
  margin: 0 auto;
  width: 36px;
  height: 48px
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 36px;
  align-items: start
}

.ps-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px
}

.ps-card-inner {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%
}

.ps-card-featured {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(13, 35, 64, .18)
}

.ps-card-header {
  width: 100%;
  text-align: center;
  padding: 18px 16px 14px;
  background: #f4f4f4
}

.ps-card-header-gold {
  background: linear-gradient(135deg, #2B74AA 0%, #7a581a 100%);
}

.ps-card-header h3 {
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 900;
  color: #0d2340;
  letter-spacing: .5px
}

.ps-card-header-gold h3{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.3)}
.ps-card-header p {
  font-size: 20px;
  color: #555;
  margin-top: 2px
}

.ps-card-header-gold p{color:#fff3cc}

.ps-card:first-child .pc-img {
  max-width: 140px
}

.ps-card:last-child .pc-img {
  max-width: 170px
}

.ps-best-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #c9271e;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 14px 6px 10px;
  border-radius: 0 0 14px 0;
  letter-spacing: .5px;
  text-transform: uppercase
}

.ps-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px 10px
}

.ps-img-wrap img {
  max-width: 100%;
  object-fit: contain
}

.ps-price {
  text-align: center;
  margin: 10px 0 6px
}

.ps-price-big {
  font-size: clamp(65px, 5vw, 68px);
  font-weight: 900;
  color: #0d2340
}

.ps-price-big sup {
  font-size: 60%;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block
}

.ps-price-big sub {
  font-size: 40%;
  font-weight: 700;
  color: #555
}

.ps-shipping {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px
}

.ps-perks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px
}

.ps-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff
}

.ps-perk-red {
  background: #c9271e
}

.ps-perk-teal {
  background: #0d6e5a
}

.ps-perk svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  flex-shrink: 0
}

.ps-btn {
  width: 100%;
  background: linear-gradient(135deg, #d4960a, #f5c518, #c98a07);
  color: #0d2340;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 900;
  border: none;
  border-radius: 50px;
  padding: 14px 10px;
  cursor: pointer;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.ps-btn:hover {
  filter: brightness(1.07)
}

.ps-guarantee {
  width: 40px;
  height: 40px;
  flex-shrink: 0
}

.ps-total {
  font-size: 20px;
  color: #555;
  margin-top: 12px;
  font-weight: 700
}

.ps-payments {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  max-width: 250px;
}

.ps-payments span {
  background: #f0f0f0;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  color: #444;
  letter-spacing: .5px
}

.ps-footer {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px
}

.ps-footer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e8f0fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.ps-footer-icon svg {
  width: 24px;
  height: 24px;
  stroke: #1a56c4;
  fill: none;
  stroke-width: 1.8
}

.ps-footer p {
  font-size: 14px;
  color: #444;
  line-height: 1.7
}

@media(max-width:680px) {
  .ps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto
  }

  .ps-card-featured {
    transform: none;
    order: -1
  }
}

/* FAQ */
.faq-section {
  background: var(--cream)
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  gap: 16px;
  text-align: left
}

.faq-btn i {
  font-size: 18px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform .3s
}

.faq-btn.open i {
  transform: rotate(45deg)
}

.faq-answer {
  font-size: 17px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 22px;
  line-height: 1.75
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 18px
}

/* BOTTOM CTA */
.bottom-cta {
  background: var(--green-dark);
  padding: 20px 5vw;
  text-align: center
}

.bottom-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px
}

.bottom-cta p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 32px
}

.bottom-cta .cta-btn {
  max-width: 380px;
  margin: 0 auto
}

.bottom-guarantee {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap
}

.b-g-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  color: var(--white)
}

.b-g-item i {
  font-size: 20px;
  color: #a8d8c0
}

/* FOOTER */
footer {
  background: #000000;
  padding: 50px 5vw 28px
}

.foot-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px
}

.foot-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.foot-logo i {
  color: var(--green-mid)
}

.foot-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 14px
}

.foot-disc {
  font-size: 11px;
  color: #ffffff;
  line-height: 1.6
}

.foot-col h5 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.foot-col ul li a {
  font-size: 16px;
  color: #ffffff;
  transition: color .2s
}

.foot-col ul li a:hover {
  color: #fff
}

.foot-bottom {
  max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.foot-bottom p {
  font-size: 15px;
  color: #ffffff
}

.foot-socials {
  display: flex;
  gap: 14px
}

.foot-socials a {
  color: #ffffff;
  font-size: 20px;
  transition: color .2s
}

.foot-socials a:hover {
  color: #fff
}

/* MOBILE */
@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .hero-img-wrap {
    position: relative;
    top: 0px;
    /* distance from top while scrolling */
    align-self: start;
  }

  .doctor-wrap {
    grid-template-columns: 1fr
  }

  .what-wrap {
    grid-template-columns: 1fr
  }

  .root-steps {
    grid-template-columns: 1fr
  }

  .root-arrow {
    display: none
  }

  .how-grid {
    grid-template-columns: 1fr
  }

  .gut-grid {
    grid-template-columns: 1fr
  }

  .ingr-grid {
    grid-template-columns: 1fr 1fr
  }

  .foot-inner {
    grid-template-columns: 1fr 1fr
  }

  .why-table {
    font-size: 15px
  }
}

@media(max-width:600px) {
  .nav-links {
    display: none
  }

  .nav-links a {
    color: var(--text);
}

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 5vw;
    gap: 16px;
    z-index: 300
  }

  .nav-burger {
    display: block
  }

  .ingr-grid {
    grid-template-columns: 1fr
  }

  .press-inner {
    gap: 18px
  }

  .foot-inner {
    grid-template-columns: 1fr
  }

  .bottom-guarantee {
    gap: 14px
  }

  .ingr-card {
    flex-direction: column;
  }
}