:root {
  --lavender-50: #fbf8ff;
  --lavender-100: #f3eafe;
  --lavender-200: #ead9fb;
  --lavender-300: #d8b8f0;
  --purple: #8c4bb7;
  --purple-deep: #4a1d5f;
  --plum: #2f153b;
  --rose: #fff5f1;
  --white: #ffffff;
  --ink: #332b38;
  --muted: #6f6475;
  --line: #eadff0;
  --shadow: 0 22px 65px rgba(74, 29, 95, 0.13);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--lavender-50), #fff 18%, var(--rose) 58%, #fff 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

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

.section-pad {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.83);
  border-bottom: 1px solid rgba(234, 223, 240, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--purple-deep);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender-100);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #57465e;
}

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

.main-nav a:hover {
  color: var(--purple);
}

.btn-primary,
.hero-btn,
.cta-btn,
.order-btn,
.buy-btn,
.package-btn,
.btn-soft {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.hero-btn,
.cta-btn,
.order-btn,
.buy-btn,
.package-btn {
  color: var(--white);
  background: linear-gradient(135deg, #7c36a8, #a765cf);
  box-shadow: 0 14px 30px rgba(124, 54, 168, 0.28);
}

.btn-primary:hover,
.hero-btn:hover,
.cta-btn:hover,
.order-btn:hover,
.buy-btn:hover,
.package-btn:hover,
.btn-soft:hover {
  transform: translateY(-2px);
}

.btn-soft {
  color: var(--purple-deep);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--purple-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 15%, rgba(216, 184, 240, 0.55), transparent 32%),
    linear-gradient(135deg, rgba(255, 245, 241, 0.95), rgba(251, 248, 255, 0.6) 50%, rgba(255,255,255,0.96));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--plum);
  line-height: 1.05;
  letter-spacing: 0;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(46px, 7vw, 52px);
  hyphens: auto;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 5vw, 38px);
}

h3 {
  font-size: 20px;
  line-height: 1.22;
}

p {
  margin: 0;
}

.hero-sub {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-highlights span {
  padding: 9px 13px;
  border: 1px solid rgba(140, 75, 183, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #55415f;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.product-frame {
  width: min(100%, 510px);
  padding: 18px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.product-frame img {
  border-radius: 28px;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 42px rgba(74, 29, 95, 0.14);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--plum);
}

.floating-note span {
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  padding: 22px 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5e5263;
  font-size: 14px;
  font-weight: 700;
}

.trust-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--purple);
  font-size: 12px;
}

.two-col,
.nutrition-grid,
.usage-grid,
.lifestyle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.text-block {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.feature-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(243,234,254,0.55));
}

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

.feature-card,
.benefit-grid article,
.ingredient-grid article,
.price-card,
.review-grid article,
.faq-cta,
.nutrition-card,
.stats-grid article {
  border: 1px solid rgba(234, 223, 240, 0.92);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 16px 44px rgba(74, 29, 95, 0.08);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 24px;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.icon-dot {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: -23px 0 16px 18px;
  position: relative;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  box-shadow: 0 10px 26px rgba(124,54,168,0.22);
}

.feature-card h3,
.feature-card p {
  padding-inline: 6px;
}

.feature-card p,
.benefit-grid p,
.ingredient-grid p,
.stats-grid p,
.review-grid p,
.faq-cta p,
.lifestyle-copy p,
.usage-copy p,
.muted,
.small-note,
.guarantee p,
.site-footer p {
  color: var(--muted);
}

.feature-card p {
  margin-top: 10px;
}

.benefit-grid,
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-grid article,
.ingredient-grid article {
  padding: 24px;
}

.benefit-grid span {
  width: 38px;
  height: 38px;
  display: block;
  margin-bottom: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 28%, var(--lavender-200) 30%, var(--purple) 68%);
}

.benefit-grid p,
.ingredient-grid p {
  margin-top: 10px;
  font-size: 15px;
}

.lifestyle {
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose), var(--lavender-100));
}

.lifestyle-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.lifestyle-image img,
.usage-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.lifestyle-copy p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 18px;
}

.lifestyle-copy .cta-btn {
  margin-top: 28px;
}

.nutrition {
  background: var(--white);
}

.nutrition-grid {
  align-items: start;
}

.small-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  background: var(--lavender-50);
  font-size: 14px;
}

.nutrition-card {
  overflow: hidden;
  padding: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--plum);
  font-weight: 800;
}

td {
  text-align: right;
  color: var(--purple-deep);
  font-weight: 800;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.stats {
  background: linear-gradient(180deg, var(--lavender-50), var(--white));
}

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

.stats-grid article {
  padding: 28px;
}

.stats-grid strong {
  display: block;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
}

.stats-grid p {
  margin-top: 10px;
}

.stats-grid article > span {
  display: block;
  height: 8px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple) var(--value), var(--lavender-100) var(--value));
}

.usage {
  background: linear-gradient(135deg, #fff, var(--rose));
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
}

.steps span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-weight: 900;
}

.steps p {
  margin-top: 6px;
}

.pricing {
  background: linear-gradient(180deg, var(--white), var(--lavender-50));
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
}

.price-card.popular,
.price-card.bestseller {
  border-color: rgba(140, 75, 183, 0.42);
}

.price-card.bestseller {
  background: linear-gradient(180deg, #fff, #fbf7ff);
  box-shadow: 0 26px 78px rgba(74, 29, 95, 0.16);
  transform: translateY(-12px);
}

.ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple);
  font-size: 12px;
  font-weight: 900;
}

.plan-duration {
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.price-card h3 {
  margin-top: 8px;
  padding-right: 80px;
}

.bundle {
  position: relative;
  height: 205px;
  margin: 22px 0 12px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.bundle::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 72%;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 29, 95, 0.14);
  filter: blur(7px);
}

.bundle img {
  position: relative;
  z-index: 1;
  width: 128px;
  height: 178px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(74,29,95,0.16);
}

.bundle-one img {
  width: 150px;
  height: 190px;
}

.bundle-two img:first-child {
  transform: translateX(18px) rotate(-3deg);
}

.bundle-two img:last-child {
  transform: translateX(-18px) rotate(3deg);
}

.bundle-three img {
  width: 116px;
}

.bundle-three img:first-child {
  transform: translateX(34px) scale(0.92) rotate(-4deg);
}

.bundle-three img:nth-child(2) {
  z-index: 2;
  transform: scale(1.08);
}

.bundle-three img:last-child {
  transform: translateX(-34px) scale(0.92) rotate(4deg);
}

.bottles {
  color: var(--muted);
  font-weight: 800;
}

.price {
  margin-top: 8px;
  color: var(--plum);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}

.old-price {
  margin-top: 8px;
  color: #9b91a0;
  text-decoration: line-through;
}

.saving {
  margin-top: 4px;
  color: var(--purple);
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li {
  padding-left: 24px;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 900;
}

.package-btn {
  width: 100%;
  margin-top: auto;
}

.guarantee {
  padding: 42px 0;
  background: var(--plum);
  color: var(--white);
}

.guarantee-box {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: center;
}

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

.guarantee p {
  max-width: 920px;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
}

.guarantee-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.review-grid article {
  padding: 22px;
}

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--lavender-300));
  font-weight: 900;
}

.place {
  margin-top: 3px;
  font-size: 14px;
}

.stars {
  margin: 12px 0 8px;
  color: #a765cf;
  letter-spacing: 0.08em;
}

.review-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--plum);
}

.review-note {
  margin-top: 18px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.faq-section {
  background: linear-gradient(135deg, var(--lavender-50), var(--white));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.faq-second {
  margin-top: 44px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--plum);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--purple);
}

details[open] summary::after {
  content: "–";
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-cta {
  position: sticky;
  top: 96px;
  padding: 24px;
  text-align: center;
}

.faq-cta img {
  width: 210px;
  aspect-ratio: 1;
  margin: 20px auto;
  object-fit: cover;
  border-radius: 28px;
}

.faq-cta .order-btn {
  width: 100%;
  margin-top: 18px;
}

.site-footer {
  padding: 56px 0 26px;
  background: #24112d;
  color: var(--white);
}

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

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

.site-footer p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255,255,255,0.72);
}

.medical-note {
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links button {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.06);
}

.footer-links button:hover {
  background: rgba(255,255,255,0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.58);
  font-size: 13px;
}

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

.modal-backdrop.is-open,
.exit-popup.is-open {
  display: flex;
}

.modal-box,
.exit-card {
  position: relative;
  width: min(100%, 620px);
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,0.22);
}

.modal-box {
  padding: 32px;
}

.modal-box h2,
.exit-card h2 {
  font-size: 36px;
}

.modal-box p,
.modal-box li {
  color: var(--muted);
}

.modal-box ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.modal-close,
.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  color: var(--plum);
  background: var(--lavender-100);
  font-size: 26px;
  line-height: 1;
}

.exit-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  padding: 24px;
  align-items: center;
}

.exit-card img {
  width: 210px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

.exit-card p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.exit-card .buy-btn {
  margin-top: 20px;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
}

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

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

@media (max-width: 920px) {
  .section-pad {
    padding: 64px 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .nutrition-grid,
  .usage-grid,
  .lifestyle-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .trust-grid,
  .feature-cards,
  .benefit-grid,
  .ingredient-grid,
  .stats-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.bestseller {
    transform: none;
  }

  .faq-cta {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .section-pad {
    padding: 52px 0;
  }

  .brand {
    font-size: 28px;
  }

  h1 {
    font-size: 39px;
    line-height: 1.08;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-sub,
  .text-block,
  .lifestyle-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-btn,
  .btn-soft {
    width: 100%;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .trust-grid,
  .feature-cards,
  .benefit-grid,
  .ingredient-grid,
  .stats-grid,
  .price-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .steps article,
  .guarantee-box {
    grid-template-columns: 1fr;
  }

  .bundle {
    height: 185px;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

  .exit-card img {
    width: 100%;
    max-height: 220px;
  }
}
