:root {
  --navy: #182944;
  --navy-dark: #122038;
  --green: #21863d;
  --green-dark: #176c30;
  --green-light: #eaf5ec;
  --cream: #f7f5f1;
  --white: #ffffff;
  --text: #3f4650;
  --muted: #69717a;
  --border: #dfe4e6;
  --soft: #f1f4f3;
  --shadow: 0 10px 30px rgba(24, 41, 68, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

.page {
  width: 100%;
  overflow: hidden;
}

/* =========================
       HERO
    ========================== */
.hero {
  position: relative;
  padding: 50px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(33, 134, 61, 0.1), transparent 30%),
    linear-gradient(135deg, #f8f7f4 0%, #f5f3ef 55%, #eef3ed 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(33, 134, 61, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 480px;
  height: 480px;
  right: -170px;
  top: -220px;
}
.hero::after {
  width: 330px;
  height: 330px;
  right: -70px;
  top: -150px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--green);
}
.hero h1 {
  color: var(--navy);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -3px;
  font-weight: 500;
  margin-bottom: 30px;
}
.hero h1 span {
  color: var(--green);
}
.hero-description {
  font-size: 19px;
  color: #59616b;
  line-height: 1.8;
}

/* =========================
       GENERAL SECTION
    ========================== */
.section {
  padding: 50px 0;
  position: relative;
}
.section.alt {
  background: #fff;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 55px;
}
.section-number {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 15px;
}
h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  font-weight: 500;
  margin-bottom: 22px;
}
h3 {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
p {
  margin-bottom: 22px;
}
strong {
  color: var(--navy);
  font-weight: 700;
}
em {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

/* =========================
       INTRO BLOCK
    ========================== */
.intro-title {
  position: sticky;
  top: 40px;
}
.intro-title h2 {
  margin-bottom: 0;
}
.intro-copy {
  font-size: 17px;
  color: #555e68;
}
.question {
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
  margin: 25px 0;
}

/* =========================
       FUNCTIONAL DOSE CARDS
    ========================== */
.principle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.principle-card img {
  border-radius: 18px !important;
}

.principle-card h3 {
  position: relative;
  max-width: 420px;
}
.principle-card p {
  position: relative;
  color: #59616b;
  font-size: 15.5px;
}

/* =========================
       FIVE QUESTIONS
    ========================== */
.five-section {
  background: var(--navy);
  color: #dce3e9;
}
.five-section h2 {
  color: #fff;
}
.five-section .section-number {
  color: #75c48a;
}
.five-intro {
  max-width: 720px;
  margin-bottom: 55px;
  color: #bfc9d3;
  font-size: 17px;
}

.question-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  transition: 0.25s ease;
}
.question-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(117, 196, 138, 0.45);
}
.question-number {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}
.question-card h3 {
  color: #fff;
  font-size: 18px;
}
.question-card p {
  color: #b8c2cc;
  font-size: 14px;
  line-height: 1.7;
}
.pass-line {
  margin-top: 45px;
  padding: 23px 28px;
  border-left: 3px solid #5ab872;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* =========================
       LABEL / TRANSPARENCY
    ========================== */
.large-statement {
  color: var(--green);
  font-size: 25px;
  line-height: 1.35;
  font-weight: 700;
}
.body-large {
  font-size: 17px;
  color: #555e68;
}

/* =========================
       FEATURE CARDS
    ========================== */
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 21px;
  height: 100%;
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 25px;
}
.feature-card p {
  color: #606872;
  font-size: 15px;
  margin-bottom: 0;
}

/* =========================
       CTA STRIP
    ========================== */
.statement {
  padding: 70px 0;
  background: var(--green);
  color: white;
  text-align: center;
}
.statement h2 {
  color: white;
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 46px);
}

/* =========================
       WHY TRUST
    ========================== */
.trust-header p {
  max-width: 520px;
  color: #616a74;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  box-shadow: var(--shadow);
  height: 100%;
}
.trust-card p {
  color: #59616b;
  font-size: 15.5px;
}
.trust-card .accent {
  color: var(--green);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* =========================
       BULLET LIST
    ========================== */
.check-list {
  list-style: none;
  margin: 28px 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  color: #555e68;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  margin-top: 3px;
}

/* =========================
       QUALITY
    ========================== */
.quality-intro {
  max-width: 820px;
  margin-bottom: 65px;
}
.quality-intro p {
  font-size: 17px;
  color: #59616b;
}
.quality-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  box-shadow: var(--shadow);
  height: 100%;
}
.quality-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 30px;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* =========================
       CERTIFICATIONS
    ========================== */
.cert-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  height: 100%;
}
.cert-card .cert-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.cert-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.cert-card p {
  font-size: 13px;
  color: #68717a;
  margin: 0;
}

/* =========================
       FINAL
    ========================== */
.final {
  padding: 40px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 134, 61, 0.12), transparent 45%),
    var(--cream);
}
.final h2 {
  max-width: 800px;
  margin: 0 auto 25px;
}
.final p {
  max-width: 620px;
  margin: 0 auto;
  color: #68717a;
  font-size: 17px;
}
.final-mark {
  margin-top: 45px;
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 13px;
}

/* Mobile overrides */
@media (max-width: 720px) {
  .hero,
  .section {
    padding: 30px 0;
  }
  .principle-card,
  .trust-card,
  .quality-card {
    padding: 28px;
  }
}


