:root {
  --brown: #12452a;
  --brown-2: #2f6941;
  --coral: #d6530b;
  --green: #2f6941;
  --green-dark: #236f3d;
  --sand: #f4e5d3;
  --cream: #faf0e4;
  --soft: #faf0e4;
  --light: #fff8ef;
  --bg-main: #fff8ef;
  --bg-secondary: #faf0e4;
  --bg-highlight: #f6dfb9;
  --bg-dark-secondary: #f6dfb9;
  --bg-soft-highlight: #f4e5d3;
  --ink: #16251d;
  --muted: #47544c;
  --white: #ffffff;
  --orange-highlight: #ee6a16;
  --button: #2d8a4e;
  --button-hover: #236f3d;
  --card: #faf0e4;
  --card-border: #e8d9c8;
  --card-hover: #faf0e4;
  --radius: 16px;
  --button-radius: 12px;
  --shadow: 0 8px 24px rgba(18, 69, 42, 0.08);
  --shadow-hover: 0 14px 32px rgba(18, 69, 42, 0.14);
  --content-gap: 24px;
  --section-heading-gap: 48px;
  --card-padding: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-main);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--brown);
  font-family: Nunito, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

h1 span,
h2 span {
  color: var(--coral);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section--brown {
  color: var(--white);
  background: var(--bg-highlight);
}

.section--brown h1,
.section--brown h2,
.section--brown h3,
.section--coral h1,
.section--coral h2,
.section--coral h3 {
  color: var(--white);
}

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

.section--cream {
  background: var(--bg-secondary);
}

.section--light {
  background: var(--bg-main);
}

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

.section--coral {
  color: var(--white);
  background: var(--bg-dark-secondary);
}

.announcement {
  display: flex;
  position: relative;
  z-index: 20;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--bg-highlight);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.announcement__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
  }
}

.hero {
  min-height: calc(100vh - 54px);
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: none;
  background-size: 18px 18px;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  position: relative;
  grid-template-columns: 1.05fr 0.95fr;
  gap: calc(var(--content-gap) * 2);
  align-items: center;
}

.hero__content h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.hero__content > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

.hero__visual > img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(18, 69, 42, 0.16));
}

.hero__glow {
  position: absolute;
  z-index: 1;
  inset: 12%;
  border-radius: 50%;
  background: var(--bg-highlight);
  filter: blur(70px);
  opacity: 0.3;
}

.hero__badge {
  display: flex;
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 24px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--brown);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.hero__badge strong {
  color: var(--coral);
  font-size: 2rem;
  line-height: 1;
}

.hero__badge span {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
}

.eyebrow--light {
  color: var(--white);
}

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

.check-list li {
  position: relative;
  padding-left: 31px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 21px;
  text-align: center;
}

.check-list--light {
  color: rgba(255, 255, 255, 0.92);
}

.check-list--compact {
  gap: 9px;
  margin: 18px 0 24px;
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: var(--button-radius);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--button);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.button--primary {
  background: var(--button);
}

.button--primary:hover {
  color: var(--white);
  background: var(--button-hover);
  box-shadow: var(--shadow-hover);
}

.button--dark {
  background: var(--button);
  box-shadow: var(--shadow);
}

.button--full {
  width: 100%;
}

.microcopy {
  margin: 14px 0 0;
  font-size: 0.8rem !important;
}

.section-heading {
  max-width: 830px;
  margin: 0 auto var(--section-heading-gap);
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.wide-showcase {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  gap: var(--content-gap);
}

.gallery--six {
  grid-template-columns: repeat(6, 1fr);
}

.gallery img {
  width: 100%;
  aspect-ratio: 0.8;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--content-gap);
}

.feature-card,
.benefit-card {
  padding: var(--card-padding);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feature-card:hover,
.benefit-card:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-card img,
.benefit-card img,
.steps img,
.investment-note img {
  width: 52px;
  height: 52px;
  padding: 8px;
  border: 1px solid var(--card-border);
  border-radius: var(--button-radius);
  background: var(--bg-main);
  box-shadow: none;
  filter: brightness(0) saturate(100%) invert(21%) sepia(23%) saturate(1248%) hue-rotate(93deg) brightness(88%) contrast(96%);
  object-fit: contain;
}

.feature-card img {
  margin-bottom: 20px;
}

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

.centered-cta {
  margin-top: 44px;
  text-align: center;
}

.centered-cta > p {
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: calc(var(--content-gap) * 2);
  align-items: center;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--content-gap);
}

.mosaic img {
  width: 100%;
  aspect-ratio: 1.3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mosaic__large {
  grid-column: span 2;
  aspect-ratio: 2.1 !important;
}

.urgency {
  padding: 54px 0;
}

.urgency__inner {
  display: grid;
  grid-template-columns: 1.25fr auto auto;
  gap: var(--content-gap);
  align-items: center;
}

.urgency h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: var(--content-gap);
}

.countdown div {
  min-width: 90px;
  text-align: center;
}

.countdown strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown b {
  font-size: 2.2rem;
  line-height: 1;
}

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

.benefit-card img {
  margin-bottom: 18px;
}

.main-product {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: calc(var(--content-gap) * 2);
  align-items: center;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--bg-dark-secondary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.main-product__image img {
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(18, 69, 42, 0.16));
}

.main-product__content > p {
  color: rgba(255, 255, 255, 0.75);
}

.pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--coral);
  background: var(--orange-highlight);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-heading {
  margin: 72px auto 36px;
  text-align: center;
}

.bonus-heading > span {
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-heading h2 strong {
  display: block;
  color: var(--coral);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--content-gap);
}

.bonus-card {
  display: grid;
  position: relative;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  overflow: hidden;
  padding: var(--card-padding);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bonus-card:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.bonus-card > img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: var(--button-radius);
  object-fit: cover;
}

.bonus-card__number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--coral);
  color: var(--white);
  background: var(--orange-highlight);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-card > div {
  align-self: center;
}

.bonus-card p {
  color: var(--muted);
}

.free {
  color: var(--coral);
  font-size: 0.9rem;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(238, 106, 22, 0.1), transparent 28%),
    var(--bg-main);
}

.last-chance {
  width: fit-content;
  margin: -112px auto 60px;
  padding: 16px 26px;
  border: 1px solid var(--coral);
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-highlight);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 470px));
  gap: var(--content-gap);
  justify-content: center;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: var(--card-padding);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.price-card--featured {
  border: 1px solid var(--card-border);
}

.price-card > img:not(.payment-icons) {
  width: 260px;
  height: 220px;
  margin: 10px auto 24px;
  object-fit: contain;
}

.price-card__label {
  display: block;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.price-card h3 {
  text-align: center;
}

.best-seller {
  position: absolute;
  top: -20px;
  left: 50%;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1px solid var(--coral);
  color: var(--white);
  background: var(--orange-highlight);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.old-price {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
  text-decoration: line-through;
}

.price {
  color: var(--brown);
  font-size: 4.5rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
  text-align: center;
}

.price small,
.price sup {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.price-card .price + p {
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.payment-icons {
  width: 190px;
  margin: 16px auto 0;
}

.economy {
  margin-top: 18px;
  padding: 9px;
  border: 1px solid rgba(47, 105, 65, 0.18);
  border-radius: var(--button-radius);
  color: var(--green-dark);
  background: rgba(47, 105, 65, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.investment-note {
  display: flex;
  width: fit-content;
  margin: 42px auto 0;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.price-card:hover,
.investment-note:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.investment-note img {
  flex: 0 0 52px;
}

.investment-note span {
  display: block;
  color: var(--muted);
}

.testimonials {
  background: var(--bg-main);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--content-gap);
}

blockquote {
  margin: 0;
  padding: var(--card-padding);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

blockquote:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

blockquote > p {
  min-height: 154px;
  font-size: 1.02rem;
}

blockquote footer {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
}

blockquote footer span {
  color: var(--muted);
  font-size: 0.8rem;
}

.stars {
  margin-bottom: 14px;
  color: var(--orange-highlight);
  letter-spacing: 0.12em;
}

.guarantee {
  background: var(--bg-secondary);
}

.guarantee__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: calc(var(--content-gap) * 2);
  align-items: center;
}

.guarantee__grid > img {
  width: min(360px, 100%);
  margin: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--content-gap);
}

.steps article {
  position: relative;
  padding: var(--card-padding);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.steps article:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.steps article > span {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(18, 69, 42, 0.12);
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1;
}

.steps img {
  margin-bottom: 24px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.faq {
  background: var(--bg-main);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: calc(var(--content-gap) * 2);
  align-items: start;
}

.faq__grid > div:first-child {
  position: sticky;
  top: 30px;
}

.faq__grid > div:first-child p {
  color: var(--muted);
}

.faq__list {
  display: grid;
  gap: var(--content-gap);
}

details {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

details:hover {
  background: var(--card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--coral);
  color: var(--white);
  background: var(--orange-highlight);
  font-size: 1.1rem;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

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

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

.footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--bg-highlight);
  font-size: 0.78rem;
  text-align: center;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer p {
  max-width: 760px;
  margin: 0 auto 12px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .hero__grid,
  .split,
  .main-product,
  .guarantee__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: min(620px, 100%);
    margin: auto;
  }

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

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

  .urgency__inner {
    grid-template-columns: 1fr auto;
  }

  .urgency__inner .button {
    grid-column: span 2;
  }

  .faq__grid {
    gap: 30px;
  }

  .faq__grid > div:first-child {
    position: static;
    text-align: center;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .announcement {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero__grid {
    gap: 36px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .check-list {
    text-align: left;
  }

  .hero__badge {
    right: 0;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .gallery--six {
    display: flex;
    overflow-x: auto;
    padding: 4px 2px 16px;
    scroll-snap-type: x mandatory;
  }

  .gallery--six img {
    flex: 0 0 72%;
    scroll-snap-align: center;
  }

  .feature-grid,
  .benefit-grid,
  .bonus-grid,
  .pricing-grid,
  .testimonial-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .benefit-card {
    padding: 24px;
  }

  .split {
    gap: 40px;
  }

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

  .urgency__inner .button {
    grid-column: auto;
  }

  .countdown {
    justify-content: center;
  }

  .main-product {
    gap: 24px;
    padding: 24px;
  }

  .bonus-heading {
    margin-top: 58px;
  }

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

  .bonus-card > img {
    height: 230px;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price-card--featured {
    margin-top: 24px;
    transform: none;
  }

  blockquote > p {
    min-height: 0;
  }

  .guarantee__grid {
    gap: 32px;
    text-align: center;
  }

  .steps article {
    text-align: center;
  }

  .steps img {
    margin-inline: auto;
  }

  .mobile-cta {
    display: flex;
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 10px;
    left: 12px;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: var(--button-radius);
    color: var(--white);
    background: var(--button);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: var(--shadow);
  }

  .mobile-cta:hover {
    color: var(--white);
    background: var(--button-hover);
  }
}

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