:root {
  --emerald: #0f6b4b;
  --emerald-2: #14865d;
  --forest: #062d24;
  --ink: #121712;
  --muted: #66756b;
  --beige: #f5efe3;
  --beige-2: #fffaf0;
  --gold: #d8b865;
  --gold-2: #f1d98c;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.74);
  --line: rgba(15, 107, 75, 0.16);
  --shadow: 0 24px 70px rgba(6, 45, 36, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, #f7f2e8 38%, #ffffff 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(6, 45, 36, 0.94);
  box-shadow: 0 18px 50px rgba(4, 28, 22, 0.18);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  min-width: 140px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(6, 45, 36, 0.96), rgba(15, 107, 75, 0.86));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand img {
  width: 134px;
  height: auto;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 700;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.lang-switch a,
.lang-switch span {
  padding: 7px 8px;
  border-radius: 6px;
}

.lang-switch .active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #132318;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 32px rgba(216, 184, 101, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-outline {
  color: var(--forest);
  border-color: rgba(15, 107, 75, 0.26);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 0 54px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(216, 184, 101, 0.22), transparent 30%),
    linear-gradient(135deg, #062d24 0%, #0f6b4b 58%, #151715 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 227, 0.98));
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-ctas,
.badges,
.trust-row,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-ctas {
  margin: 30px 0 24px;
}

.badges {
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.badge.dark {
  border-color: rgba(15, 107, 75, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(440px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-visual img {
  position: relative;
  width: min(500px, 94%);
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.36));
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(260px, 72vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-card strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.7rem;
  line-height: 1;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--beige);
}

.section.dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #101713);
}

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

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

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

.section-kicker {
  color: var(--emerald);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section.dark .section-kicker {
  color: var(--gold-2);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.00rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.section.dark .lead {
  color: rgba(255, 255, 255, 0.76);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.product-frame {
  min-height: 460px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 107, 75, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 107, 75, 0.12), rgba(216, 184, 101, 0.12)),
    rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.product-frame img {
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(6, 45, 36, 0.22));
}

.glass-card {
  border: 1px solid rgba(15, 107, 75, 0.15);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-copy {
  padding: clamp(24px, 4vw, 44px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--forest);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: var(--emerald);
  font-weight: 900;
}

.icon-grid,
.ingredient-grid,
.pricing-grid,
.reviews-grid,
.step-grid,
.benefit-grid {
  display: grid;
  gap: 18px;
}

.icon-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.mini-card,
.ingredient-card,
.step-card,
.benefit-card,
.price-card,
.review-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(6, 45, 36, 0.08);
  backdrop-filter: blur(14px);
}

.mini-card,
.ingredient-card,
.step-card,
.benefit-card {
  padding: 22px;
}

.mini-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 7px;
  color: var(--forest);
  background: linear-gradient(135deg, var(--gold-2), #fff7cf);
  font-size: 1.2rem;
}

.ingredient-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ingredient-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -32px auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(15, 107, 75, 0.08);
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.ingredient-card p,
.benefit-card p,
.step-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

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

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--forest), var(--emerald));
  border-color: rgba(216, 184, 101, 0.48);
  transform: translateY(-12px);
  box-shadow: 0 28px 80px rgba(6, 45, 36, 0.24);
}

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
}

.price-card img {
  height: 174px;
  object-fit: contain;
  margin: 10px auto 14px;
  filter: drop-shadow(0 16px 20px rgba(6, 45, 36, 0.16));
}

.price-card.featured img {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.package-label {
  color: var(--emerald);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured .package-label,
.featured .muted,
.featured .save {
  color: rgba(255, 255, 255, 0.82);
}

.muted {
  color: var(--muted);
}

.save {
  color: var(--emerald);
  font-weight: 900;
}

.was {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.was del {
  margin-left: 8px;
}

.now {
  margin: 2px 0 8px;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 950;
}

.total {
  margin: auto 0 18px;
  padding-top: 12px;
  font-weight: 900;
}

.review-wrap {
  position: relative;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px;
}

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

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), #7157d8);
  font-weight: 900;
}

.stars {
  color: #d39d23;
  letter-spacing: 0.06em;
}

.verified {
  display: inline-flex;
  margin-top: 12px;
  color: var(--emerald);
  font-size: 0.83rem;
  font-weight: 900;
}

.review-controls {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.round-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
  cursor: pointer;
}

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

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: var(--forest);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.35rem;
  color: var(--emerald);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.guarantee {
  padding: 42px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--forest));
}

.guarantee-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.countdown {
  display: flex;
  gap: 10px;
  align-items: center;
}

.count-box {
  min-width: 66px;
  padding: 8px 10px;
  border-radius: 7px;
  text-align: center;
  color: var(--forest);
  background: var(--gold-2);
  font-weight: 900;
}

.count-box small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #071713;
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #0c2d24;
}

.footer-brand img {
  width: 132px;
}

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

.footer-links button,
.footer-links a {
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
}

.legal {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.modal,
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 16, 13, 0.64);
}

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

.modal-card,
.exit-card {
  width: min(620px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.modal-close {
  float: right;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(15, 107, 75, 0.1);
  cursor: pointer;
}

.exit-card {
  text-align: center;
}

.exit-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 45, 36, 0.94);
  box-shadow: 0 18px 46px rgba(6, 45, 36, 0.24);
  backdrop-filter: blur(16px);
}

.mobile-cta .btn {
  flex: 1;
  min-height: 46px;
  padding: 0 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav-menu,
  .site-header.menu-open .nav-actions {
    display: flex;
  }

  .site-header.menu-open .nav-wrap {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 16px 0;
  }

  .site-header.menu-open .nav-menu {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 8px;
  }

  .site-header.menu-open .nav-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .icon-grid,
  .benefit-grid,
  .step-grid,
  .ingredient-grid,
  .pricing-grid,
  .review-track {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .nav-wrap,
  .container,
  .hero-grid {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand img {
    width: 118px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 3.7rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card {
    left: 0;
    right: auto;
    bottom: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .icon-grid,
  .benefit-grid,
  .step-grid,
  .ingredient-grid,
  .pricing-grid,
  .review-track {
    grid-template-columns: 1fr;
  }

  .review-track .review-card {
    display: none;
  }

  .review-track .review-card.active {
    display: block;
  }

  .review-controls,
  .mobile-cta {
    display: flex;
  }

  .guarantee-card,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .countdown {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
