:root {
  --white: #ffffff;
  --mist: #f5f8f6;
  --grey: #e8eeec;
  --soft-teal: #42c7bf;
  --teal-dark: #0c8078;
  --green: #0f5b42;
  --green-deep: #083629;
  --charcoal: #18201e;
  --muted: #60706b;
  --gold: #c99a2e;
  --gold-soft: #fff5d7;
  --shadow: 0 22px 60px rgba(8, 54, 41, 0.13);
  --shadow-soft: 0 14px 36px rgba(24, 32, 30, 0.09);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 91, 66, 0.1);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--soft-teal));
  box-shadow: 0 10px 24px rgba(12, 128, 120, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #32433d;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  padding: 10px 0;
}

.nav-menu a:hover {
  color: var(--teal-dark);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--teal-dark));
  box-shadow: 0 14px 26px rgba(15, 91, 66, 0.24);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 91, 66, 0.28);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(15, 91, 66, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--green);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
  background:
    radial-gradient(circle at 78% 22%, rgba(66, 199, 191, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3fbf8 52%, #eef8f4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 7vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 24px;
  color: #40514c;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-row span,
.verified-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 91, 66, 0.14);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 24px;
}

.price-card,
.timer-card,
.caution-box {
  padding: 20px;
  border: 1px solid rgba(15, 91, 66, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.price-card p,
.price-card strong,
.price-card span,
.timer-card span,
.timer-card strong {
  display: block;
}

.price-card p {
  margin: 0 0 4px;
  color: var(--muted);
}

.price-card strong {
  color: var(--green);
  font-size: 1.35rem;
}

.price-card span {
  color: var(--gold);
  font-weight: 800;
}

.timer-card strong,
.offer-timer strong,
.exit-modal .countdown {
  color: var(--green-deep);
  font-size: 1.02rem;
  line-height: 1.35;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.hero-product {
  display: flex;
  justify-content: center;
}

.product-card {
  position: relative;
  border: 1px solid rgba(15, 91, 66, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-bottle {
  width: min(100%, 430px);
  padding: 30px;
}

.hero-bottle::after {
  content: "";
  position: absolute;
  inset: auto 26px 22px;
  height: 30px;
  border-radius: 50%;
  background: rgba(15, 91, 66, 0.12);
  filter: blur(10px);
  z-index: 0;
}

.hero-bottle img {
  position: relative;
  z-index: 1;
}

.sale-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  color: #442f05;
  background: linear-gradient(135deg, #fff1b8, var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(201, 154, 46, 0.26);
}

.section {
  padding: 86px 0;
}

.soft-section {
  background: var(--mist);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.concern-grid,
.benefit-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust-card,
.review-card,
.deal-card,
.package-card {
  border: 1px solid rgba(15, 91, 66, 0.11);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  padding: 24px;
}

.trust-card img {
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(66, 199, 191, 0.16);
}

.trust-card p,
.deal-card p,
.review-card p,
.split-section p,
.caution-box p,
.footer-grid p,
.final-inner p {
  color: var(--muted);
}

.section-note {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 48px;
}

.split-section p {
  font-size: 1.04rem;
}

.formula-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 22px;
}

.formula-card img {
  max-height: 310px;
  margin: 0 auto;
  object-fit: contain;
}

.formula-card strong,
.formula-card span {
  display: block;
}

.formula-card strong {
  color: var(--green-deep);
  font-size: 1.25rem;
}

.formula-card span {
  color: var(--muted);
}

.deep-section {
  background: linear-gradient(135deg, var(--green-deep), #0d5f4a);
}

.deep-section h2,
.deep-section .eyebrow {
  color: var(--white);
}

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

.deal-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
}

.deal-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--gold-soft);
  font-weight: 900;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.premium-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.premium-list li,
.mini-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(15, 91, 66, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  color: #33443f;
  font-weight: 700;
}

.premium-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 17px;
  width: 9px;
  height: 14px;
  border-right: 3px solid var(--teal-dark);
  border-bottom: 3px solid var(--teal-dark);
  transform: rotate(45deg);
}

.offer-band {
  padding: 42px 0;
  background: linear-gradient(135deg, var(--green), var(--teal-dark));
  color: var(--white);
}

.offer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 34px;
}

.offer-band h2,
.offer-band p {
  color: var(--white);
}

.offer-band .eyebrow {
  color: var(--gold-soft);
}

.offer-price,
.offer-timer {
  display: grid;
  gap: 8px;
}

.offer-price strong {
  color: var(--gold-soft);
  font-size: 1.6rem;
}

.offer-timer strong {
  color: var(--white);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 24px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-head img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--grey);
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.verified-badge {
  margin-bottom: 14px;
  background: var(--gold-soft);
  color: #73520a;
  border-color: rgba(201, 154, 46, 0.22);
}

.use-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
}

.caution-box {
  border-left: 5px solid var(--gold);
}

.caution-box strong {
  display: block;
  color: var(--green-deep);
  font-size: 1.2rem;
}

.package-wrap {
  display: flex;
  justify-content: center;
}

.package-card {
  position: relative;
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  padding: 30px;
  overflow: hidden;
}

.package-media {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #eff9f7);
}

.package-media img {
  max-height: 360px;
  object-fit: contain;
}

.package-content h3 {
  font-size: 1.5rem;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.mini-list li {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mini-list li::before {
  top: 14px;
}

.package-price {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.package-price strong {
  color: var(--green);
  font-size: 2.3rem;
  line-height: 1;
}

.package-price span {
  color: var(--muted);
  font-weight: 700;
}

.compact-badges {
  margin-top: 18px;
}

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

.faq-item {
  border: 1px solid rgba(15, 91, 66, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 18px 54px 18px 20px;
  border: 0;
  color: var(--green-deep);
  background: var(--white);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-dark);
  font-size: 1.4rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 20px;
}

.final-cta {
  padding: 78px 0;
  background:
    linear-gradient(rgba(8, 54, 41, 0.88), rgba(8, 54, 41, 0.88)),
    linear-gradient(135deg, var(--green-deep), var(--teal-dark));
  color: var(--white);
  text-align: center;
}

.final-inner {
  max-width: 820px;
}

.final-inner h2,
.final-inner p {
  color: var(--white);
}

.final-inner p {
  margin: 18px auto 24px;
  font-size: 1.08rem;
}

.final-inner span {
  display: block;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 800;
}

.site-footer {
  padding: 58px 0 90px;
  color: rgba(255, 255, 255, 0.78);
  background: #091f19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small,
.footer-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-grid a,
.footer-link {
  display: block;
  width: fit-content;
  margin: 8px 0;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer-grid a:hover,
.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(15, 91, 66, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -16px 34px rgba(8, 54, 41, 0.14);
}

.mobile-order-bar strong,
.mobile-order-bar span {
  display: block;
}

.mobile-order-bar strong {
  color: var(--green);
  font-size: 1.1rem;
}

.mobile-order-bar span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 20, 16, 0.62);
}

.modal-backdrop.show {
  display: flex;
}

.footer-modal,
.exit-modal {
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.footer-modal h2,
.exit-modal h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.footer-modal p,
.exit-modal p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--mist);
  cursor: pointer;
  font-weight: 900;
}

.exit-modal {
  width: min(100%, 760px);
}

.exit-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.exit-grid img {
  max-height: 300px;
  object-fit: contain;
}

.exit-modal .countdown {
  display: block;
  margin: 14px 0 18px;
}

.plain-btn {
  display: inline-flex;
  margin-left: 12px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(15, 91, 66, 0.18);
  border-radius: 999px;
  color: var(--green);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(15, 91, 66, 0.12);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .nav-menu a:hover {
    background: var(--mist);
  }

  .hero-grid,
  .split-section,
  .choose-grid,
  .offer-inner,
  .package-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-product {
    order: -1;
  }

  .hero-bottle {
    width: min(100%, 360px);
  }

  .concern-grid,
  .benefit-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-inner {
    text-align: center;
  }

  .offer-timer {
    justify-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero-section {
    padding-bottom: 52px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-action-row,
  .concern-grid,
  .benefit-grid,
  .review-grid,
  .three-grid,
  .premium-list,
  .mini-list,
  .footer-grid,
  .exit-grid {
    grid-template-columns: 1fr;
  }

  .formula-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-row {
    align-items: stretch;
  }

  .cta-row .primary-btn,
  .package-card .primary-btn,
  .final-inner .primary-btn {
    width: 100%;
  }

  .mobile-order-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 116px;
  }

  .footer-modal,
  .exit-modal {
    padding: 26px 18px;
  }

  .plain-btn {
    width: 100%;
    margin: 12px 0 0;
  }

  .exit-modal .primary-btn {
    width: 100%;
  }
}
