:root {
  color-scheme: light;
  --ink: #15242b;
  --muted: #53656d;
  --teal: #0b6f72;
  --teal-dark: #073f45;
  --mint: #eaf7f4;
  --gold: #f3b84f;
  --gold-dark: #b87516;
  --paper: #ffffff;
  --line: #d7e5e4;
  --shadow: 0 20px 48px rgba(10, 35, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: #f7fbfa;
}

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

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.wrap {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.logo {
  width: 185px;
  height: auto;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  background:
    linear-gradient(90deg, rgba(7, 63, 69, 0.96), rgba(11, 111, 114, 0.82)),
    url("assets/villager.jpg") center/cover;
  color: #fff;
  padding: 64px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.section-label {
  margin: 0 0 10px;
  color: #ffd77b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.9vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  color: #edfafa;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 14px 22px;
  background: #fff;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.button.primary {
  background: linear-gradient(180deg, #ffdc78, var(--gold));
  color: #241700;
  border-color: #f7c45e;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.button.plain {
  background: #fff;
  color: var(--teal-dark);
  border-color: var(--line);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-list li {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-media img {
  width: min(520px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.24));
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-grid div {
  display: grid;
  gap: 2px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.quick-grid div:last-child {
  border-right: 0;
}

.quick-grid strong {
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 1.05;
}

.quick-grid span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.split,
.product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.overview p,
.product-section p,
.doctor-card p {
  color: var(--muted);
}

.media-card,
.product-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 35, 42, 0.08);
}

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

.benefits,
.doctor-section {
  background: #fff;
}

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

.benefit-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbffff;
  box-shadow: 0 9px 24px rgba(10, 35, 42, 0.06);
}

.benefit-grid span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.product-section {
  background: var(--mint);
}

.product-image img {
  max-height: 360px;
  margin: 0 auto;
  object-fit: contain;
}

.bonus-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 540px;
  margin: 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.bonus-row img {
  max-height: 96px;
  object-fit: contain;
}

.bonus-row p {
  margin: 0;
}

.doctor-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fbffff;
  box-shadow: var(--shadow);
}

.doctor-card img {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.footer {
  padding: 34px 0;
  background: #0f2d33;
  color: #dff0f1;
  font-size: 0.9rem;
}

.footer p {
  max-width: 980px;
}

.cookie-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: min(420px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(7, 63, 69, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 42px rgba(10, 35, 42, 0.18);
}

.cookie-copy h2 {
  margin: 0 0 3px;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.38;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button.accept {
  border-color: #f3bd54;
  background: var(--gold);
  color: #251600;
}

.cookie-button.decline {
  background: #fff;
  color: var(--teal-dark);
}

@media (max-width: 900px) {
  .hero-grid,
  .quick-grid,
  .split,
  .benefit-grid,
  .product-grid,
  .doctor-card {
    grid-template-columns: 1fr;
  }

  .quick-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid div:last-child {
    border-bottom: 0;
  }

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

  .doctor-card img {
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .wrap {
    width: min(100% - 24px, 1140px);
  }

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

  .logo {
    width: 146px;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.88rem;
  }

  .hero {
    padding: 44px 0 48px;
  }

  h1 {
    font-size: 2.15rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .proof-list {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    margin-top: 0;
  }

  .section {
    padding: 46px 0;
  }

  .bonus-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-row img {
    margin: 0 auto;
  }

  .cookie-popup {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
