:root {
  color-scheme: light;
  --navy: #15192b;
  --ink: #171826;
  --muted: #555a66;
  --cream: #fff8df;
  --soft: #f7f7fb;
  --gold: #f0c75d;
  --orange: #ff7a22;
  --burgundy: #760a3a;
  --red: #e71317;
  --green: #5c9f29;
  --line: #e9e9ee;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 24, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(24px, 8vw, 160px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(240, 199, 93, 0.72);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
}

.site-header nav a {
  color: var(--white);
  text-decoration: none;
}

.nav-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff9e22);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 122, 34, 0.26);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta {
  justify-self: end;
  min-width: 160px;
  padding: 0 26px;
  font-size: 15px;
}

.primary-btn {
  width: fit-content;
  padding: 0 30px;
  font-size: 15px;
}

.primary-btn.large {
  min-height: 56px;
  margin: 28px auto 0;
  padding: 0 42px;
  font-size: 16px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  gap: 56px;
  align-items: center;
  padding: 86px clamp(28px, 9vw, 170px);
  background:
    radial-gradient(circle at right center, rgba(255, 248, 223, 0.78), rgba(255, 255, 255, 0.28) 42%, transparent 66%),
    linear-gradient(120deg, rgba(245, 247, 252, 0.95), rgba(239, 242, 249, 0.85)),
    url("assets/hero-product.png");
  background-size: auto, auto, 720px auto;
  background-position: center, center, right 12% center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--burgundy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #2f3038;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.subtitle {
  margin: 24px 0 0;
  color: var(--burgundy);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.3;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  color: var(--ink);
}

.stars {
  color: #ffa31b;
  font-size: 28px;
  letter-spacing: 2px;
}

.bottom-line,
.callout {
  margin-top: 30px;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 34px rgba(18, 22, 39, 0.06);
}

.hero .primary-btn {
  margin-top: 28px;
}

.hero-media {
  min-width: 0;
  text-align: center;
}

.hero-media img {
  width: min(520px, 100%);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-media p {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--ink);
  font-size: 18px;
}

.section {
  padding: 82px clamp(28px, 9vw, 170px);
}

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

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

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

.section-heading h2 {
  margin: 0;
  color: #071231;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.12;
}

.section-heading h2 span {
  color: #ff5b3d;
}

.section-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.two-col,
.content-grid,
.buyer-grid,
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
}

.rounded-img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.prose p,
.card p,
.panel p,
.verdict-card p,
.buyer-grid p,
.faq-list p {
  color: #222431;
}

.prose h3,
.card h3,
.panel h3,
.buyer-grid h3 {
  margin: 0 0 14px;
  color: #070f28;
  font-size: 24px;
  line-height: 1.2;
}

.content-grid {
  grid-template-columns: 1.35fr 0.8fr 0.9fr;
  align-items: stretch;
}

.card,
.panel,
.result-card,
.pros,
.cons {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 24, 43, 0.06);
}

.card.wide {
  grid-row: span 2;
}

.check-list,
.pros-cons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.pros-cons li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before,
.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.cons li::before {
  content: "!";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffe8e8;
  color: #c32727;
  font-size: 13px;
  font-weight: 900;
}

.check-list.compact {
  margin: 22px 0;
}

.note {
  padding: 16px 18px;
  border-radius: 4px;
  background: #fff8df;
  color: #4b3a06 !important;
}

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

.steps article {
  padding: 32px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.steps span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), #b84a72);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.steps h3,
.result-card h3 {
  margin: 0 0 12px;
  color: #071231;
  line-height: 1.22;
}

.results-grid,
.split-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.result-card {
  border-top: 5px solid var(--gold);
}

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

.testimonials-section {
  background:
    radial-gradient(circle at top left, rgba(255, 248, 223, 0.8), transparent 34%),
    linear-gradient(180deg, #ffffff, #fffaf0);
}

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

.testimonial-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid #efe5cf;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(90, 61, 16, 0.1);
}

.testimonial-card.featured {
  border-top: 5px solid var(--gold);
}

.review-person {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.review-person img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff4cf;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.review-person h3 {
  margin: 0;
  color: #071231;
  font-size: 21px;
  line-height: 1.1;
}

.review-person p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.review-stars {
  margin-bottom: 12px;
  color: #ffa31b;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  margin: 0;
  color: #252836;
  font-size: 16px;
  line-height: 1.62;
}

.testimonial-card > span {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4cf;
  color: #6c4c04;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-cta {
  max-width: 760px;
  margin: 38px auto 0;
  padding: 28px;
  border-radius: 10px;
  background: #111522;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-cta p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.35;
}

.pros h3 {
  color: #157229;
}

.cons h3 {
  color: #a81c1c;
}

.buy-section {
  text-align: center;
}

.packages {
  width: min(1000px, 100%);
  margin: 0 auto 38px;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.buyer-grid {
  text-align: left;
  align-items: stretch;
}

.buyer-grid article {
  padding: 30px;
  border-radius: 6px;
  background: #fff8df;
}

.buyer-grid ol {
  margin: 0;
  padding-left: 22px;
}

.buyer-grid li {
  margin: 10px 0;
}

.verdict {
  background:
    linear-gradient(120deg, rgba(21, 25, 43, 0.92), rgba(118, 10, 58, 0.9)),
    url("assets/natural.png") center / cover no-repeat;
}

.verdict-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.verdict-card h2 {
  margin: 0 0 18px;
  color: #071231;
  font-size: clamp(36px, 3vw, 48px);
}

.verdict-card h3 {
  margin: 28px 0 12px;
}

.faq-section {
  background: #ffffff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  color: #071231;
  font-size: 21px;
  font-weight: 800;
}

.site-footer {
  padding: 46px clamp(28px, 9vw, 170px);
  background: #111522;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.site-footer img {
  width: 150px;
  margin-bottom: 18px;
  border-radius: 6px;
}

.site-footer p {
  max-width: 980px;
  margin: 10px auto;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .two-col,
  .two-col.reverse,
  .content-grid,
  .buyer-grid,
  .pros-cons,
  .steps,
  .results-grid,
  .testimonial-grid,
  .split-panels {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background-size: auto, auto, 480px auto;
    background-position: center, center, right top 90px;
  }

  .hero-media {
    order: -1;
  }

  .card.wide {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 0 16px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    font-size: 11px;
  }

  .brand span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .nav-cta {
    min-width: auto;
    min-height: 40px;
    max-width: 126px;
    padding: 0 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero {
    width: 100%;
    overflow: hidden;
    padding: 44px 18px;
    gap: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 38px);
    overflow-wrap: anywhere;
  }

  .subtitle {
    max-width: 100%;
    font-size: 21px;
  }

  .hero-media p,
  .bottom-line,
  .rating-row,
  .hero-copy {
    max-width: 100%;
  }

  .bottom-line {
    padding: 22px 20px;
  }

  .section {
    padding: 56px 18px;
  }

  .card,
  .panel,
  .result-card,
  .pros,
  .cons,
  .steps article,
  .verdict-card {
    padding: 22px;
  }

  .primary-btn,
  .primary-btn.large {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }
}
