:root {
  --black: #10233f;
  --charcoal: #233044;
  --burgundy: #0f766e;
  --burgundy-2: #0b5f73;
  --cream: #f7fbff;
  --cream-2: #f4f8fb;
  --gold: #d6a747;
  --amber: #b7791f;
  --muted: #64748b;
  --line: rgba(15, 118, 110, 0.16);
  --shadow: 0 20px 55px rgba(15, 35, 63, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-user-select: none;
  user-select: none;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: linear-gradient(180deg, #f8fbff 0%, #eef6f8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 35, 63, 0.08);
  box-shadow: 0 8px 28px rgba(15, 35, 63, 0.06);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img { width: 30px; height: 30px; }

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #405169;
  font-size: 0.93rem;
  font-weight: 650;
}

.menu a:hover, .lang a:hover { color: var(--burgundy); }

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.86rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: linear-gradient(180deg, #12a89c, var(--burgundy));
  color: #fff;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22);
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn.dark { background: var(--black); color: #fff; border-color: rgba(16, 35, 63, 0.18); box-shadow: none; }
.btn.outline { background: #fff; color: var(--black); border-color: rgba(15, 118, 110, 0.28); box-shadow: none; }

.hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(15, 118, 110, 0.18), transparent 30%),
    linear-gradient(135deg, #f9fcff 0%, #e7f4f3 48%, #f6fbff 100%);
  color: var(--black);
  overflow: hidden;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 40px;
  align-items: center;
  padding: 76px 0 58px;
}

.eyebrow {
  display: inline-flex;
  color: var(--burgundy);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.45rem, 6vw, 3.2rem);
  max-width: 820px;
}

h2 { font-size: clamp(2rem, 4vw, 2.3rem); color: var(--black); }
h3 { font-size: 0.85rem; color: var(--black); }

.hero p {
  max-width: 720px;
  color: #4b5f75;
  font-size: 1.14rem;
  margin: 20px 0 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  border: 1px solid rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: #315063;
  padding: 9px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-art {
  position: relative;
  padding: 18px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 3% 4%;
  background: linear-gradient(180deg, rgba(21, 184, 173, 0.14), rgba(214, 167, 71, 0.12));
  border: 1px solid rgba(15, 118, 110, 0.18);
  transform: skewY(-3deg);
}

.hero-art img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 28px 45px rgba(15, 35, 63, 0.2));
}

.urgency {
  background: linear-gradient(90deg, #0f766e, #0b5f73);
  color: #fff;
  text-align: center;
  padding: 13px 16px;
  font-weight: 850;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(15, 35, 63, 0.08);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

.benefits { grid-template-columns: repeat(6, 1fr); }
.card {
  background: #fff;
  border: 1px solid rgba(15, 35, 63, 0.08);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(15, 35, 63, 0.07);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(180deg, #17b6aa, var(--burgundy));
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.about-box {
  background: linear-gradient(135deg, #10233f, #0b5f73);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-box h2 { color: #fff; }
.about-box p { color: rgba(247, 251, 255, 0.84); }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.fact {
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 6px;
}

.fact strong { display: block; color: #f2c76b; font-size: 1.35rem; }

.ingredients { grid-template-columns: repeat(5, 1fr); }
.ingredient h3 { margin-bottom: 8px; }
.ingredient p, .card p { color: var(--muted); margin: 0; }

.works {
  background: linear-gradient(135deg, #e8f6f5, #f8fbff);
  color: var(--black);
}
.works .section { padding: 64px 0; }
.works h2 { color: var(--black); }
.works p { color: #4b5f75; max-width: 850px; }

.pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--burgundy);
  box-shadow: var(--shadow);
}
.ribbon {
  position: absolute;
  top: 14px;
  right: -42px;
  rotate: 35deg;
  width: 170px;
  background: var(--gold);
  color: var(--black);
  padding: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-card img { height: 210px; object-fit: contain; margin: 8px auto 18px; }
.price-card .pack { color: var(--burgundy); font-weight: 950; letter-spacing: 0.04em; text-transform: uppercase; }
.price-card ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.price-card li { padding: 4px 0; }
.retail { color: var(--muted); text-decoration: line-through; }
.now { font-size: 1.65rem; color: var(--black); font-weight: 950; margin: 8px 0 16px; }

.reviews { grid-template-columns: repeat(4, 1fr); }
.review-card { text-align: center; }
.review-photo {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.28), 0 12px 28px rgba(15, 35, 63, 0.14);
}
.stars { color: var(--amber); font-weight: 950; margin-bottom: 10px; }
.reviewer { margin: 0 0 12px; color: var(--burgundy); font-weight: 900; }
.reviewer span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.faq { display: grid; gap: 10px; }
details {
  background: #fff;
  border: 1px solid rgba(15, 35, 63, 0.08);
  border-radius: 8px;
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--black);
}
details p { color: var(--muted); margin: 12px 0 0; }

.disclaimer {
  background: #f0f7fb;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
}
.disclaimer .section { padding: 34px 0; color: #4b5f75; font-size: 0.95rem; }

footer {
  background: #10233f;
  color: rgba(247, 251, 255, 0.8);
  padding: 36px 0 92px;
}
footer .foot {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 12px; }
.foot button, .foot a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  border-radius: 4px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-sticky {
  display: none;
  position: fixed;
  z-index: 55;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(15, 35, 63, 0.08);
  box-shadow: 0 -10px 30px rgba(15, 35, 63, 0.1);
}
.mobile-sticky .btn { width: 100%; }

.modal, .exit-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 35, 63, 0.54);
}
.modal.active, .exit-popup.active { display: flex; }
.modal-card {
  width: min(560px, 100%);
  background: var(--cream-2);
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.modal-card p { color: var(--muted); }
.close {
  float: right;
  border: 0;
  background: var(--black);
  color: #fff;
  border-radius: 4px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.exit-card {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px) {
  .menu { display: none; }
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 48px; }
  .benefits, .ingredients, .reviews { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { min-height: 66px; }
  .nav .btn { display: none; }
  .lang { font-size: 0.78rem; }
  .hero-inner, .section { width: min(100% - 24px, 1160px); }
  .hero-ctas .btn { width: 100%; }
  .section-head { display: block; }
  .benefits, .ingredients, .reviews, .facts { grid-template-columns: 1fr; }
  .exit-card { grid-template-columns: 1fr; text-align: center; }
  .exit-card img { max-height: 210px; margin: auto; object-fit: contain; }
  footer .foot { display: block; }
  .foot-links { margin-top: 18px; }
  .mobile-sticky { display: block; }
}
