﻿:root {
  --background: #fbf7ef;
  --foreground: #10233f;
  --navy: #10233f;
  --green: #0f4a2d;
  --green-dark: #07351f;
  --green-soft: #e9eee3;
  --gold: #d8ad32;
  --cream: #fffaf1;
  --paper: #f7f1e7;
  --line: rgba(15, 74, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(216, 173, 50, 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.inline-text-link:hover,
.inline-text-link:focus-visible {
  color: var(--green-dark);
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

h2 {
  color: var(--green);
  font-size: clamp(2.35rem, 5vw, 5rem);
}

h3 {
  color: var(--green);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 44px);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark,
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-leaf {
  width: 18px;
  height: 18px;
  border-radius: 100% 0;
  background: var(--green);
  transform: rotate(-30deg);
}

.clearshare-page {
  overflow: hidden;
  background: var(--background);
}

.clear-hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: var(--cream);
}

.clear-hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 86px);
  margin: 0;
  padding: clamp(42px, 6vh, 76px) clamp(28px, 7vw, 120px) clamp(56px, 8vh, 92px);
}

.clear-hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.96) 30%, rgba(255, 250, 241, 0.68) 50%, rgba(255, 250, 241, 0.1) 72%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.18));
}

.hero-family-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.clear-hero-copy {
  position: relative;
  z-index: 1;
  width: min(48vw, 760px);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(16, 35, 63, 0.82);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.secondary-button,
.small-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 24px;
  border: 1px solid var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-button,
.small-button,
.contact-form button {
  background: var(--green);
  color: var(--cream);
}

.secondary-button {
  background: transparent;
  color: var(--green);
}

.problem-band,
.feature-section,
.content-section,
.telemedicine-section,
.products-section,
.savvos-section,
.pricing-section,
.details-section,
.start-section,
.share-section,
.contact-section,
.clear-footer {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 76px);
}

.problem-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
  padding: clamp(70px, 9vw, 118px) clamp(28px, 6vw, 92px);
}

.problem-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 34%, rgba(255, 250, 241, 0.58) 53%, rgba(255, 250, 241, 0.08) 76%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(15, 74, 45, 0.08));
}

.problem-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.problem-copy {
  position: relative;
  z-index: 1;
  width: min(48vw, 760px);
}

.problem-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
}

.problem-copy h2 span {
  display: block;
}

.problem-copy h2 span + span {
  color: var(--green);
}

.problem-copy p {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(16, 35, 63, 0.86);
  font-size: clamp(1.24rem, 2.1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.42;
}

.problem-copy p::before {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
}

.problem-grid,
.benefit-strip,
.savvos-steps,
.product-list {
  display: grid;
  gap: 12px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  gap: 0;
}

.benefit-strip span,
.savvos-steps span,
.product-list span {
  min-height: 86px;
  border-radius: 8px;
  padding: 20px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  line-height: 1.35;
}

.problem-grid article {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 152px;
  padding: 22px 18px;
  background: rgba(233, 238, 227, 0.78);
  color: var(--green);
  text-align: center;
}

.problem-grid article:first-child {
  border-radius: 8px 0 0 8px;
}

.problem-grid article:last-child {
  border-radius: 0 8px 8px 0;
}

.problem-grid article + article {
  border-left: 1px solid rgba(15, 74, 45, 0.22);
}

.problem-grid strong {
  max-width: 170px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.25;
}

.problem-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 3px solid var(--green);
  border-radius: 999px;
}

.problem-icon::before,
.problem-icon::after {
  content: "";
  position: absolute;
}

.problem-icon::after {
  width: 3px;
  height: 78px;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-34deg);
}

.deductible-icon::before {
  width: 28px;
  height: 34px;
  border: 3px solid var(--green);
  border-radius: 4px;
  box-shadow: inset 0 10px 0 rgba(15, 74, 45, 0.1);
}

.coverage-icon::before {
  width: 34px;
  height: 34px;
  border: 3px solid var(--green);
  border-radius: 4px 4px 14px 14px;
  transform: rotate(45deg);
}

.cost-icon::before {
  content: "$";
  position: static;
  color: var(--green);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.problem-statement {
  position: absolute;
  right: clamp(28px, 6vw, 96px);
  bottom: clamp(52px, 10vw, 120px);
  z-index: 1;
  max-width: 460px;
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.7vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  text-shadow:
    0 1px 0 rgba(255, 250, 241, 0.84),
    0 18px 36px rgba(255, 250, 241, 0.72);
}

.dark-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 34px;
  background: var(--green-dark);
  color: var(--cream);
}

.dark-feature h2,
.dark-feature h3 {
  color: var(--cream);
}

.dark-feature p {
  max-width: 440px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.12rem;
  line-height: 1.7;
}

.visit-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.visit-showcase article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  padding: 28px;
  background: var(--green-dark);
  isolation: isolate;
}

.visit-showcase article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 53, 31, 0.76) 0%, rgba(7, 53, 31, 0.24) 45%, rgba(7, 53, 31, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 53, 31, 0.68), rgba(7, 53, 31, 0.12));
}

.visit-showcase img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.visit-showcase span {
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-showcase em {
  margin-top: 14px;
  color: #a8c66d;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-showcase strong {
  color: var(--cream);
  font-size: clamp(3.1rem, 6.7vw, 5.35rem);
  line-height: 1;
}

.visit-showcase small {
  color: #a8c66d;
  font-size: 1.15rem;
  font-weight: 900;
}

.content-section {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--background);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.content-section .section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.content-section .section-heading h2 {
  position: relative;
  color: var(--green);
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
}

.content-section .section-heading h2::after {
  content: "";
  display: block;
  width: 300px;
  max-width: 70vw;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 46px;
}

.provider-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 66px;
}

.provider-item span {
  flex: 0 0 auto;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(15, 74, 45, 0.3);
  border-radius: 999px;
  background: rgba(233, 238, 227, 0.55);
  color: var(--green);
}

.provider-item span::before,
.provider-item span::after {
  content: "";
  position: absolute;
}

.provider-item span:has(img)::before,
.provider-item span:has(img)::after {
  content: none;
}

.provider-item span img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.provider-doctor span img,
.provider-naturopath span img,
.provider-chiropractic span img,
.provider-therapy span img,
.provider-dietitian span img,
.provider-iv span img,
.provider-addon span img {
  width: 28px;
  height: 28px;
}

.provider-acupuncture span img {
  width: 30px;
  height: 30px;
}

.provider-massage span img {
  width: 30px;
  height: 30px;
}

.provider-item p {
  min-width: 0;
  margin: 0;
  color: rgba(16, 35, 63, 0.82);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
}

.provider-item p em {
  display: block;
  margin-top: 2px;
  color: rgba(16, 35, 63, 0.74);
  font-weight: 600;
}

.provider-naturopath span::before,
.provider-nurse span::before {
  width: 10px;
  height: 10px;
  top: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow:
    0 13px 0 4px var(--green),
    -9px 18px 0 -1px var(--green),
    9px 18px 0 -1px var(--green);
}

.provider-naturopath span::after,
.provider-nurse span::after {
  width: 24px;
  height: 16px;
  bottom: 7px;
  border: 3px solid var(--green);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.provider-doctor span::before {
  width: 22px;
  height: 27px;
  top: 8px;
  border: solid var(--green);
  border-width: 0 3px 3px;
  border-radius: 0 0 14px 14px;
}

.provider-doctor span::after {
  width: 9px;
  height: 9px;
  bottom: 8px;
  border: 3px solid var(--green);
  border-radius: 999px;
}

.provider-acupuncture span::before {
  width: 31px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 9px 0 var(--green), 0 -9px 0 var(--green);
  transform: rotate(-34deg);
}

.provider-acupuncture span::after {
  width: 3px;
  height: 3px;
  left: 12px;
  top: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 8px -4px 0 var(--green), 16px -8px 0 var(--green);
}

.provider-chiropractic span::before {
  width: 9px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 6%, var(--green) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 26%, var(--green) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 46%, var(--green) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 66%, var(--green) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 86%, var(--green) 0 4px, transparent 5px);
  transform: rotate(9deg);
}

.provider-chiropractic span::after {
  width: 3px;
  height: 36px;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(9deg);
}

.provider-therapy span::before {
  width: 9px;
  height: 9px;
  top: 9px;
  left: 21px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 11px 0 3px var(--green);
}

.provider-therapy span::after {
  width: 25px;
  height: 18px;
  left: 12px;
  bottom: 9px;
  border-left: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  transform: skewX(-22deg) rotate(-12deg);
}

.provider-nutrition span::before {
  width: 22px;
  height: 24px;
  bottom: 10px;
  border-radius: 50% 50% 54% 54%;
  background: var(--green);
}

.provider-nutrition span::after {
  width: 10px;
  height: 12px;
  top: 9px;
  right: 14px;
  border-radius: 90% 0 90% 0;
  background: var(--green);
  transform: rotate(-18deg);
}

.provider-massage span::before {
  width: 19px;
  height: 13px;
  bottom: 12px;
  border-radius: 8px 8px 3px 3px;
  background: var(--green);
  box-shadow:
    -9px -4px 0 -3px var(--green),
    9px -4px 0 -3px var(--green),
    -12px 6px 0 -2px var(--green),
    12px 6px 0 -2px var(--green);
}

.provider-massage span::after {
  width: 12px;
  height: 12px;
  top: 10px;
  border-radius: 999px 999px 3px 3px;
  background: var(--green);
}

.provider-dietitian span::before {
  width: 19px;
  height: 28px;
  border-radius: 90% 0 90% 0;
  background: var(--green);
  transform: rotate(42deg);
}

.provider-dietitian span::after {
  width: 2px;
  height: 26px;
  background: rgba(255, 250, 241, 0.72);
  transform: rotate(42deg);
}

.provider-injection span::before {
  width: 23px;
  height: 13px;
  border: 3px solid var(--green);
  border-radius: 3px;
  transform: rotate(-45deg);
}

.provider-injection span::after {
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: rotate(-45deg) translate(10px, 3px);
}

.provider-iv span::before {
  width: 22px;
  height: 30px;
  border-radius: 70% 70% 70% 0;
  background: var(--green);
  transform: rotate(-45deg);
}

.provider-iv span::after {
  width: 10px;
  height: 14px;
  top: 18px;
  left: 23px;
  border-radius: 70% 70% 70% 0;
  background: rgba(255, 250, 241, 0.72);
  transform: rotate(-45deg);
}

.provider-addon span::before {
  width: 25px;
  height: 22px;
  background: var(--green);
  transform: rotate(45deg);
  border-radius: 2px 2px 0 2px;
}

.provider-addon span::after {
  width: 18px;
  height: 18px;
  top: 11px;
  left: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 13px 0 0 var(--green);
}

.coverage-disclaimer {
  max-width: 980px;
  margin: 34px 0 0;
  color: rgba(16, 35, 63, 0.62);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.products-section,
.savvos-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--cream);
}

.telemedicine-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}

.telemedicine-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 35%, rgba(255, 250, 241, 0.56) 55%, rgba(255, 250, 241, 0.1) 78%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0%, rgba(233, 238, 227, 0.28) 100%);
}

.tele-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.tele-copy {
  width: min(45vw, 650px);
  padding-bottom: 180px;
}

.tele-price span,
.products-section h2 {
  color: var(--navy);
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.tele-price p,
.products-section p,
.savvos-section p {
  max-width: 540px;
  color: rgba(16, 35, 63, 0.78);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.6;
}

.tele-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
  gap: 0;
  margin-top: 36px;
}

.tele-benefits article,
.tele-visit-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.tele-benefits article + article,
.tele-visit-grid article + article {
  border-left: 1px solid rgba(15, 74, 45, 0.2);
}

.tele-benefits span,
.tele-card-copy span,
.tele-visit-grid span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(15, 74, 45, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.58);
}

.tele-benefits img,
.tele-card-copy img,
.tele-visit-grid img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.tele-benefits strong,
.tele-visit-grid strong {
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.25;
}

.tele-card {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: clamp(42px, 6vw, 76px);
  left: clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(233, 238, 227, 0.92);
  box-shadow: 0 22px 50px rgba(16, 35, 63, 0.1);
}

.tele-card-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-right: clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(15, 74, 45, 0.28);
}

.tele-card-copy p {
  margin: 0;
  color: rgba(16, 35, 63, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 900;
  line-height: 1.45;
}

.tele-visits h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.tele-visit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.prescription-caveat {
  margin: 18px 0 0;
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.products-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.92) 34%, rgba(255, 250, 241, 0.48) 58%, rgba(255, 250, 241, 0.08) 82%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.06) 0%, rgba(233, 238, 227, 0.24) 100%);
}

.product-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.product-copy {
  position: relative;
  z-index: 1;
  width: min(43vw, 620px);
  padding-bottom: 190px;
}

.products-section h2 {
  display: grid;
  gap: 0.03em;
  color: var(--navy);
  font-size: clamp(4.4rem, 9vw, 8.5rem);
  font-weight: 900;
  line-height: 0.9;
}

.products-section h2 em {
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.56em;
  font-style: normal;
  font-weight: 900;
  line-height: 0.9;
}

.products-section h2 small {
  max-width: 440px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.28em;
  font-weight: 900;
  line-height: 1.08;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 520px;
  margin-top: 34px;
}

.product-benefits article {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 120px;
  padding: 0 20px;
  text-align: center;
  color: var(--green);
  border-right: 1px solid rgba(16, 35, 63, 0.16);
}

.product-benefits article:last-child {
  border-right: 0;
}

.product-benefits strong {
  font-size: 0.98rem;
  line-height: 1.3;
}

.product-mini-icon,
.product-icon,
.product-giveback-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(221, 213, 190, 0.62);
}


.product-mini-icon.image-benefit-icon::before,
.product-mini-icon.image-benefit-icon::after,
.product-giveback-icon.image-giveback-icon::before,
.product-giveback-icon.image-giveback-icon::after {
  display: none;
}

.image-benefit-icon img,
.image-giveback-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.image-giveback-icon img {
  width: 42px;
  height: 42px;
}

.product-mini-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(221, 213, 190, 0.52);
}

.product-mini-icon::before,
.product-mini-icon::after,
.product-icon::before,
.product-icon::after,
.product-giveback-icon::before,
.product-giveback-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.cart-icon::before {
  width: 30px;
  height: 22px;
  border: 3px solid currentColor;
  border-top: 0;
  transform: skewX(-8deg);
}

.cart-icon::after {
  bottom: 13px;
  width: 34px;
  height: 17px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(8deg);
}

.badge-icon::before {
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.badge-icon::after {
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.leaf-icon::before,
.more-icon::before {
  width: 34px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-35deg);
}

.leaf-icon::after,
.more-icon::after {
  width: 32px;
  height: 3px;
  background: currentColor;
  transform: rotate(-35deg) translateY(9px);
}

.product-card {
  position: absolute;
  left: clamp(24px, 5vw, 76px);
  right: clamp(24px, 5vw, 76px);
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: 8px;
  background: rgba(244, 247, 240, 0.94);
  box-shadow: 0 20px 70px rgba(16, 35, 63, 0.12);
  backdrop-filter: blur(8px);
}

.product-card h3 {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 900;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.product-list article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  min-height: 112px;
  padding: 0 10px;
  text-align: center;
  color: var(--green);
  border-right: 1px solid rgba(16, 35, 63, 0.14);
}

.product-list article:last-child {
  border-right: 0;
}

.product-list strong {
  color: var(--green);
  font-size: 0.95rem;
  line-height: 1.25;
}

.product-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
}
.product-icon.image-product-icon::before,
.product-icon.image-product-icon::after {
  display: none;
}

.image-product-icon {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: var(--green-soft);
}

.image-product-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.oil-product-icon img {
  transform: translate(-4px, 1px);
}

.supplement-product-icon img {
  transform: translate(-8px, 1px);
}

.personal-product-icon img {
  transform: translate(-7px, 1px);
}

.homecare-product-icon img {
  transform: translate(-7px, 1px);
}

.diffuser-product-icon img {
  transform: translate(-8px, 1px);
}


.oil-icon::before {
  width: 20px;
  height: 34px;
  bottom: 6px;
  border: 3px solid currentColor;
  border-radius: 4px 4px 7px 7px;
}

.oil-icon::after {
  top: 3px;
  width: 10px;
  height: 18px;
  border: 3px solid currentColor;
  border-bottom: 0;
}

.supplement-icon::before {
  width: 26px;
  height: 40px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.supplement-icon::after {
  width: 14px;
  height: 12px;
  border: 3px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.personal-icon::before {
  width: 25px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 3px 3px 12px 12px;
  transform: perspective(20px) rotateX(8deg);
}

.personal-icon::after {
  top: 7px;
  width: 28px;
  height: 3px;
  background: currentColor;
}

.homecare-icon::before {
  width: 26px;
  height: 34px;
  bottom: 6px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.homecare-icon::after {
  top: 4px;
  width: 22px;
  height: 16px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.diffuser-icon::before {
  bottom: 6px;
  width: 38px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 42% 42%;
}

.diffuser-icon::after {
  top: 2px;
  width: 20px;
  height: 24px;
  border-top: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 10px 7px 0 -7px currentColor, -10px 7px 0 -7px currentColor;
}

.product-giveback {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding-left: clamp(20px, 4vw, 44px);
  border-left: 2px solid rgba(16, 35, 63, 0.18);
}

.product-giveback-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(221, 213, 190, 0.62);
}

.product-giveback-icon::before {
  width: 36px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.product-giveback-icon::after {
  content: "$";
  position: static;
  color: currentColor;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.product-giveback h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.products-section .product-giveback p {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.45;
}

.savvos-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.62)),
    linear-gradient(135deg, #fffaf1, #d7e2cf);
}

.savvos-steps {
  grid-template-columns: repeat(3, 1fr);
}


.savvos-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}

.savvos-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.9) 32%, rgba(255, 250, 241, 0.4) 56%, rgba(255, 250, 241, 0.04) 82%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.03) 0%, rgba(233, 238, 227, 0.18) 100%);
}

.savvos-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.savvos-copy {
  position: relative;
  z-index: 1;
  width: min(44vw, 680px);
  padding-bottom: 130px;
}

.savvos-section h2 {
  max-width: 700px;
  color: var(--green);
  font-size: clamp(4rem, 7.6vw, 7.6rem);
  font-weight: 900;
  line-height: 0.92;
}

.savvos-copy-lines {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 34px;
}

.savvos-copy-lines p,
.savvos-card p {
  margin: 0;
  color: rgba(16, 35, 63, 0.82);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
}

.savvos-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin-top: 34px;
}

.savvos-steps article {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 130px;
  padding: 0 18px;
  text-align: center;
  color: var(--green);
  border-right: 1px solid rgba(16, 35, 63, 0.16);
}

.savvos-steps article:last-child {
  border-right: 0;
}

.savvos-steps span,
.savvos-card span {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: var(--green);
}

.savvos-steps img,
.savvos-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: invert(78%) sepia(22%) saturate(775%) hue-rotate(4deg) brightness(93%) contrast(91%);
}

.savvos-steps strong {
  font-size: 1rem;
  line-height: 1.28;
}

.savvos-card {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 46px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(620px, 48vw);
  padding: 28px 34px;
  border-radius: 8px;
  background: rgba(244, 247, 240, 0.94);
  box-shadow: 0 20px 70px rgba(16, 35, 63, 0.12);
  backdrop-filter: blur(8px);
}

.savvos-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}
.pricing-section {
  background: var(--cream);
}

.pricing-section .section-heading {
  max-width: 920px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: clamp(34px, 5vw, 58px) 20px clamp(38px, 5vw, 62px);
  text-align: center;
}

.price-card + .price-card {
  border-left: 1px solid var(--line);
}

.price-icon {
  display: inline-grid;
  width: clamp(62px, 7vw, 86px);
  height: clamp(62px, 7vw, 86px);
  place-items: center;
  margin-bottom: 8px;
}

.price-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.price-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--navy);
  font-size: clamp(4.8rem, 7.6vw, 8.7rem);
  font-weight: 900;
  line-height: 0.92;
  white-space: nowrap;
}

.price-card p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 900;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: 42px auto 0;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 8px;
  background: var(--green-soft);
}

.benefit-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 0 clamp(20px, 3vw, 34px);
}

.benefit-strip article + article {
  border-left: 1px solid rgba(15, 74, 45, 0.24);
}

.benefit-strip span {
  display: inline-grid;
  width: clamp(68px, 6vw, 88px);
  height: clamp(68px, 6vw, 88px);
  min-height: 0;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  background: rgba(221, 213, 190, 0.62);
}

.benefit-strip img {
  display: block;
  width: 52%;
  height: 52%;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.benefit-strip strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.12;
}

.benefit-strip p {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 650;
  line-height: 1.32;
}

.details-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 34px);
  background: var(--green-dark);
}

.details-section aside {
  color: var(--cream);
}

.details-section aside h2 {
  color: var(--cream);
}

.details-section aside p {
  color: rgba(255, 250, 241, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.quick-facts {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.quick-facts article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(255, 250, 241, 0.9);
  color: var(--green);
}

.quick-facts span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid rgba(15, 74, 45, 0.32);
  border-radius: 999px;
}

.quick-facts img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.quick-facts strong {
  color: var(--green);
  line-height: 1.3;
}

.quick-facts em {
  display: inline-block;
  margin-right: 4px;
  color: var(--green);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-table {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.table-row {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.45fr;
  border-bottom: 1px solid var(--line);
}

.table-row span {
  padding: 18px;
  color: rgba(16, 35, 63, 0.82);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.45;
}

.table-row span strong {
  color: var(--green);
  font-weight: 950;
}

.table-row ul {
  display: grid;
  gap: 5px;
  margin: 12px 0;
  padding-left: 18px;
}

.table-row li {
  color: rgba(16, 35, 63, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.table-row a {
  color: var(--green);
  font-weight: 950;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.table-row a:hover,
.table-row a:focus-visible {
  color: var(--navy);
  text-decoration-style: solid;
}

.table-row span + span {
  border-left: 1px solid var(--line);
}

.service-label {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0;
}

.detail-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  min-height: 0;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(15, 74, 45, 0.3);
  border-radius: 999px;
  background: rgba(233, 238, 227, 0.72);
}

.detail-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.detail-icon-doctor img {
  transform: translate(-12px, -12px);
}

.detail-icon-iv img {
  transform: translate(-12px, -10px);
}

.detail-icon-breast img {
  transform: translate(-12px, -10px);
}

.detail-icon-prescription img {
  transform: translate(-10px, -8px);
}

.yl-detail-icon {
  width: 74px;
  height: 54px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.yl-detail-icon img {
  width: 66px;
  height: auto;
  filter: none;
  transform: translate(-15px, -2px);
}

.table-head {
  background: var(--green);
}

.table-head span {
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.start-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.78)),
    linear-gradient(135deg, #fffaf1, #dfe8d7);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.start-card {
  display: grid;
  gap: 16px;
  justify-items: center;
  min-height: 380px;
  border-right: 1px solid var(--line);
  padding: 10px 26px 26px;
  text-align: center;
}

.start-card:last-child {
  border-right: 0;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  font-size: 2.2rem;
  font-weight: 900;
}

.start-card p {
  color: rgba(16, 35, 63, 0.72);
  font-size: 1.05rem;
  line-height: 1.6;
}

.share-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  background: var(--green-dark);
  color: var(--cream);
}

.share-section h2 {
  color: var(--cream);
}

.audience-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.audience-list article {
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.93);
}

.audience-list strong {
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-list p {
  margin: 6px 0 0;
  color: rgba(16, 35, 63, 0.82);
  line-height: 1.45;
}

.share-callout {
  align-self: end;
  display: block;
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--cream);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.share-callout:hover,
.share-callout:focus-visible {
  border-color: var(--green);
  box-shadow: 0 18px 48px rgba(16, 35, 63, 0.12);
  transform: translateY(-2px);
}

.share-callout strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
}

.share-callout p {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.86fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  background: var(--paper);
}

.contact-copy p {
  max-width: 560px;
  color: rgba(16, 35, 63, 0.72);
  line-height: 1.7;
}

.referral-card {
  display: grid;
  gap: 8px;
  width: min(100%, 430px);
  margin-top: 28px;
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(16, 35, 63, 0.08);
}

.referral-card strong {
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.1;
}

.referral-card span,
.referral-card a {
  color: var(--navy);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
}

.referral-card a {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.referral-card a:hover,
.referral-card a:focus-visible {
  color: var(--green);
  text-decoration-style: solid;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(16, 35, 63, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--foreground);
  padding: 14px 16px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 74, 45, 0.16);
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

.clear-footer {
  display: grid;
  gap: 12px;
  background: var(--green-dark);
  color: var(--cream);
}

.clear-footer strong {
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clear-footer p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-page {
  background: var(--cream);
}

.faq-hero {
  min-height: 66vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 173, 50, 0.14), transparent 32%),
    linear-gradient(135deg, var(--cream) 0%, #f8f2e8 58%, var(--green-soft) 100%);
}

.faq-hero-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 5vw, 76px) clamp(82px, 10vw, 140px);
}

.faq-hero-copy h1 {
  max-width: 960px;
  color: var(--green);
  font-size: clamp(4rem, 9vw, 8.4rem);
}

.faq-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(16, 35, 63, 0.8);
  font-size: clamp(1.15rem, 1.9vw, 1.42rem);
  font-weight: 700;
  line-height: 1.65;
}

.faq-section {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 5vw, 76px);
  background: var(--paper);
}

.faq-section .section-heading {
  max-width: 1060px;
  margin: 0 auto 42px;
  text-align: left;
}

.faq-section .section-heading h2 {
  max-width: 840px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1060px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 46px rgba(16, 35, 63, 0.05);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 22px clamp(20px, 4vw, 30px);
  color: var(--green);
  cursor: pointer;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(216, 173, 50, 0.7);
  outline-offset: -3px;
}

.faq-answer {
  max-width: 920px;
  padding: 0 clamp(20px, 4vw, 30px) 26px;
  color: rgba(16, 35, 63, 0.82);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.72;
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(216, 173, 50, 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  max-width: 1060px;
  margin: 44px auto 0;
  padding: clamp(30px, 5vw, 48px);
  border-radius: 8px;
  background: var(--green);
  color: var(--cream);
}

.faq-cta h2 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.faq-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.82);
  font-weight: 700;
  line-height: 1.7;
}

.faq-cta .primary-button {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--green);
}

@media (max-width: 940px) {
  .problem-band,
  .dark-feature,
  .telemedicine-section,
  .products-section,
  .savvos-section,
  .details-section,
  .share-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .clear-hero-grid {
    min-height: calc(100vh - 86px);
    padding-top: clamp(42px, 8vh, 76px);
    padding-bottom: clamp(54px, 9vh, 88px);
  }

  .clear-hero-grid::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 52%, rgba(255, 250, 241, 0.36) 86%, rgba(255, 250, 241, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.1), rgba(255, 250, 241, 0.28));
  }

  .clear-hero-copy {
    width: min(68vw, 650px);
  }

  .problem-band {
    align-items: flex-start;
    min-height: 820px;
  }

  .problem-band::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 54%, rgba(255, 250, 241, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(15, 74, 45, 0.1));
  }

  .problem-copy {
    width: min(72vw, 650px);
  }

  .problem-statement {
    right: auto;
    left: clamp(28px, 6vw, 76px);
    bottom: clamp(42px, 8vw, 80px);
    max-width: 390px;
  }

  .telemedicine-section {
    min-height: 1040px;
    align-items: start;
  }

  .telemedicine-section::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 55%, rgba(255, 250, 241, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0%, rgba(233, 238, 227, 0.36) 100%);
  }

  .tele-copy {
    width: min(72vw, 620px);
    padding-bottom: 390px;
  }

  .tele-card {
    grid-template-columns: 1fr;
  }

  .tele-card-copy {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 74, 45, 0.28);
  }

  .visit-showcase,
  .pricing-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

  .price-card + .price-card,
  .start-card {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .benefit-strip article {
    padding: 22px 0;
  }

  .benefit-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(15, 74, 45, 0.24);
  }

  .provider-grid,
  .product-list,
  .benefit-strip,
  .savvos-steps,
  .problem-grid,
  .tele-card {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .small-button,
  .contact-form button {
    width: 100%;
  }

  .clear-hero-grid {
    min-height: calc(100vh - 112px);
    padding: 44px 24px 58px;
  }

  .clear-hero-grid::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 62%, rgba(255, 250, 241, 0.3) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.42));
  }

  .hero-family-image {
    object-position: 72% center;
  }

  .clear-hero-copy {
    width: 100%;
  }

  .problem-band {
    min-height: 960px;
    padding: 58px 24px 300px;
  }

  .problem-band::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 72%, rgba(255, 250, 241, 0.38) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.02) 0%, rgba(255, 250, 241, 0.44) 62%, rgba(15, 74, 45, 0.06) 100%);
  }

  .problem-image {
    object-position: 68% center;
  }

  .problem-copy {
    width: 100%;
  }

  .problem-copy h2 {
    font-size: clamp(3rem, 15vw, 4.65rem);
  }

  .problem-copy p {
    font-size: 1.18rem;
  }

  .problem-grid article:first-child {
    border-radius: 8px 8px 0 0;
  }

  .problem-grid article:last-child {
    border-radius: 0 0 8px 8px;
  }

  .problem-grid article + article {
    border-top: 1px solid rgba(15, 74, 45, 0.22);
    border-left: 0;
  }

  .problem-statement {
    bottom: 56px;
    left: 24px;
    max-width: 300px;
    color: var(--green);
  }

  .telemedicine-section {
    min-height: 1350px;
    padding: 58px 24px 520px;
  }

  .telemedicine-section::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.93) 68%, rgba(255, 250, 241, 0.3) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0%, rgba(233, 238, 227, 0.42) 100%);
  }

  .tele-image {
    object-position: 70% center;
  }

  .tele-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .tele-benefits {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 14px;
  }

  .tele-benefits article {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .tele-benefits article + article {
    border-left: 0;
  }

  .tele-card {
    right: 24px;
    bottom: 58px;
    left: 24px;
  }

  .tele-card-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .tele-visit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tele-visit-grid article {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .tele-visit-grid article + article {
    border-left: 0;
  }
}


@media (max-width: 940px) {
  .products-section {
    min-height: 1080px;
    align-items: start;
  }

  .products-section::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.95) 52%, rgba(255, 250, 241, 0.34) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0%, rgba(233, 238, 227, 0.36) 100%);
  }

  .product-copy {
    width: min(74vw, 620px);
    padding-bottom: 370px;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 24px;
  }

  .product-list article:nth-child(3) {
    border-right: 0;
  }

  .product-giveback {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 2px solid rgba(16, 35, 63, 0.14);
  }
}

@media (max-width: 620px) {
  .products-section {
    min-height: 1260px;
    padding: 58px 24px 560px;
  }

  .products-section::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.93) 66%, rgba(255, 250, 241, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0%, rgba(233, 238, 227, 0.4) 100%);
  }

  .product-image {
    object-position: 69% center;
  }

  .product-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .products-section h2 {
    font-size: clamp(3.9rem, 20vw, 5.4rem);
  }

  .product-benefits {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-top: 26px;
  }

  .product-benefits article {
    grid-template-columns: 54px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 66px;
    padding: 0;
    text-align: left;
    border-right: 0;
  }

  
.product-mini-icon.image-benefit-icon::before,
.product-mini-icon.image-benefit-icon::after,
.product-giveback-icon.image-giveback-icon::before,
.product-giveback-icon.image-giveback-icon::after {
  display: none;
}

.image-benefit-icon img,
.image-giveback-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: invert(20%) sepia(47%) saturate(897%) hue-rotate(102deg) brightness(87%) contrast(95%);
}

.image-giveback-icon img {
  width: 42px;
  height: 42px;
}

.product-mini-icon {
    width: 50px;
    height: 50px;
  }

  .product-card {
    left: 24px;
    right: 24px;
    bottom: 52px;
    padding: 24px;
  }

  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .product-list article,
  .product-list article:nth-child(3) {
    border-right: 0;
  }

  .product-giveback {
    grid-template-columns: 1fr;
    text-align: left;
  }
}













/* Savvos responsive layout and icon cleanup */
.savvos-steps span,
.savvos-card span {
  min-height: 0;
  padding: 0;
}

@media (max-width: 940px) {
  .savvos-section {
    min-height: 1060px;
    align-items: start;
  }

  .savvos-section::before {
    background:
      linear-gradient(90deg, rgba(255, 250, 241, 0.99) 0%, rgba(255, 250, 241, 0.94) 55%, rgba(255, 250, 241, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 250, 241, 0.08) 0%, rgba(233, 238, 227, 0.36) 100%);
  }

  .savvos-copy {
    width: min(76vw, 650px);
    padding-bottom: 300px;
  }

  .savvos-card {
    left: clamp(24px, 5vw, 76px);
    right: clamp(24px, 5vw, 76px);
    width: auto;
  }
}

@media (max-width: 620px) {
  .savvos-section {
    min-height: 1280px;
    padding: 58px 24px 360px;
  }

  .savvos-image {
    object-position: 68% center;
  }

  .savvos-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .savvos-section h2 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .savvos-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .savvos-steps article {
    grid-template-columns: 64px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 76px;
    padding: 0;
    text-align: left;
    border-right: 0;
  }

  .savvos-steps span,
  .savvos-card span {
    width: 62px;
    height: 62px;
  }

  .savvos-steps img,
  .savvos-card img {
    width: 34px;
    height: 34px;
  }

  .savvos-card {
    left: 24px;
    right: 24px;
    bottom: 52px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .faq-hero {
    min-height: auto;
  }

  .faq-hero-copy {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .faq-hero-copy h1 {
    font-size: clamp(3.35rem, 17vw, 5.6rem);
  }

  .faq-section .section-heading {
    margin-bottom: 30px;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    min-height: 70px;
    padding: 18px;
  }

  .faq-item summary::after {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding: 0 18px 22px;
  }

  .faq-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Mobile polish for the dense plan sections */
@media (max-width: 620px) {
  .savvos-section {
    display: block;
    min-height: 0;
    padding: 0 0 34px;
    background: var(--cream);
  }

  .savvos-section::before {
    display: none;
  }

  .savvos-image {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: 58% center;
    opacity: 0.92;
  }

  .savvos-copy {
    width: auto;
    margin: -38px 18px 0;
    padding: 28px 22px 24px;
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: 0 18px 50px rgba(16, 35, 63, 0.1);
  }

  .savvos-section h2 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
    line-height: 0.96;
  }

  .savvos-copy-lines {
    gap: 8px;
    margin-top: 22px;
  }

  .savvos-copy-lines p,
  .savvos-card p {
    font-size: 1rem;
    line-height: 1.42;
  }

  .savvos-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    margin-top: 24px;
  }

  .savvos-steps article {
    grid-template-columns: 54px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    min-height: 0;
    padding: 0;
    text-align: left;
    border-right: 0;
  }

  .savvos-steps span,
  .savvos-card span {
    width: 52px;
    height: 52px;
  }

  .savvos-steps img,
  .savvos-card img {
    width: 29px;
    height: 29px;
  }

  .savvos-card {
    position: static;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    width: auto;
    margin: 18px 18px 0;
    padding: 20px;
    border: 1px solid var(--line);
    box-shadow: none;
  }

  .savvos-card h3 {
    font-size: 1.35rem;
  }

  .pricing-section {
    padding: 58px 18px;
  }

  .pricing-section .section-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .pricing-section .section-heading h2 {
    font-size: clamp(2.85rem, 14vw, 4.35rem);
  }

  .pricing-grid {
    gap: 14px;
    border: 0;
  }

  .price-card {
    grid-template-columns: 56px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 14px 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.78);
    text-align: left;
  }

  .price-card + .price-card {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .price-icon {
    grid-row: span 3;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .price-card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .price-card strong {
    font-size: clamp(3.35rem, 16vw, 4.75rem);
    line-height: 0.9;
  }

  .price-card p {
    font-size: 1rem;
  }

  .benefit-strip {
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    background: transparent;
  }

  .benefit-strip article {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--green-soft);
  }

  .benefit-strip article + article {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .benefit-strip span {
    width: 54px;
    height: 54px;
  }

  .benefit-strip strong {
    font-size: 1.12rem;
  }

  .benefit-strip p {
    font-size: 0.98rem;
  }

  .details-section {
    display: block;
    padding: 58px 18px;
  }

  .details-section aside {
    margin-bottom: 24px;
  }

  .details-section aside h2 {
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }

  .details-section aside p {
    font-size: 1rem;
  }

  .quick-facts {
    gap: 10px;
    margin-top: 22px;
  }

  .quick-facts article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .quick-facts span {
    width: 44px;
    height: 44px;
  }

  .quick-facts img {
    width: 26px;
    height: 26px;
  }

  .detail-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
  }

  .table-head {
    display: none;
  }

  .table-row {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 250, 241, 0.14);
    border-radius: 8px;
    background: var(--cream);
  }

  .table-row span {
    display: block;
    padding: 16px 18px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .table-row span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .table-row span:nth-child(2)::before,
  .table-row span:nth-child(3)::before {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .table-row span:nth-child(2)::before {
    content: "Included";
  }

  .table-row span:nth-child(3)::before {
    content: "Limits / details";
  }

  .service-label {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .detail-icon {
    width: 50px;
    height: 50px;
  }

  .detail-icon img {
    width: 38px;
    height: 38px;
  }

  .yl-detail-icon {
    width: 54px;
    height: 42px;
  }

  .yl-detail-icon img {
    width: 48px;
  }

  .table-row ul {
    gap: 4px;
    margin: 10px 0;
    padding-left: 17px;
  }

  .table-row li {
    font-size: 0.9rem;
  }
}

@media (max-width: 620px) {
  .savvos-image {
    height: 260px;
    object-position: 54% center;
  }

  .savvos-copy {
    margin: -28px 16px 0;
    padding: 22px 18px 18px;
  }

  .savvos-section h2 {
    max-width: 100%;
    font-size: clamp(2.28rem, 11.3vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .savvos-copy-lines {
    margin-top: 18px;
  }

  .savvos-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .savvos-steps article {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .savvos-steps span,
  .savvos-card span {
    width: 44px;
    height: 44px;
  }

  .savvos-steps img,
  .savvos-card img {
    width: 25px;
    height: 25px;
  }

  .savvos-steps strong {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .savvos-card {
    grid-template-columns: 44px minmax(0, 1fr);
    margin: 14px 16px 0;
    padding: 16px;
  }

  .savvos-card h3 {
    margin-bottom: 6px;
    font-size: 1.16rem;
    line-height: 1.12;
  }

  .savvos-card p {
    font-size: 0.92rem;
  }

  .pricing-section {
    padding: 48px 16px;
  }

  .pricing-section .section-heading {
    margin-bottom: 22px;
  }

  .pricing-section .section-heading h2 {
    font-size: clamp(2.62rem, 12.8vw, 3.8rem);
    overflow-wrap: break-word;
  }

  .price-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 14px;
  }

  .price-icon {
    width: 46px;
    height: 46px;
  }

  .price-card h3 {
    font-size: 0.88rem;
  }

  .price-card strong {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .price-card p {
    font-size: 0.9rem;
  }

  .benefit-strip article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .benefit-strip span {
    width: 46px;
    height: 46px;
  }

  .benefit-strip strong {
    font-size: 1rem;
  }

  .benefit-strip p {
    margin-top: 4px;
    font-size: 0.9rem;
  }

  .details-section {
    padding: 48px 16px;
  }

  .details-section aside {
    margin-bottom: 18px;
  }

  .details-section aside h2 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
    overflow-wrap: break-word;
  }

  .table-row span {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .table-row span:nth-child(3) {
    max-height: 285px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .service-label {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
  }

  .service-label strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .detail-icon {
    width: 46px;
    height: 46px;
  }

  .detail-icon img {
    width: 34px;
    height: 34px;
  }

  .table-row ul {
    gap: 3px;
    margin: 8px 0;
  }

  .table-row li {
    font-size: 0.82rem;
    line-height: 1.28;
  }
}
