:root {
  --green: #40b190;
  --mint: #66edc6;
  --cyan: #62bbd3;
  --teal-dark: #123f45;
  --ink: #102329;
  --muted: #5c6f74;
  --soft: #eefbf7;
  --line: #d7eee9;
  --coral: #f06449;
  --amber: #f7b84b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

.notice {
  background: var(--teal-dark);
  color: var(--white);
  padding: 9px 18px;
  text-align: center;
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 63, 69, 0.08);
}

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

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  color: var(--green);
  font-family: Ubuntu, Inter, sans-serif;
  font-size: 29px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--green);
}

.nav-links a {
  text-decoration: none;
}

.nav-cta {
  color: var(--ink) !important;
  background: var(--mint);
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 12px 22px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--teal-dark);
}

.offer-strip {
  background: var(--cyan);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-weight: 800;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 48px;
  background-image: url("images/dots.webp");
  background-repeat: no-repeat;
  background-position: right 18% top 8%;
  background-size: 420px auto;
}

.hero-copy {
  padding: 72px 0 84px;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
}

.rating-line img {
  width: 132px;
}

.rating-line.center {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: Ubuntu, Inter, sans-serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  color: var(--green);
  font-size: clamp(40px, 5vw, 72px);
}

h2 {
  color: var(--green);
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  color: var(--teal-dark);
  font-size: 24px;
}

.lead,
.hero-copy > p:not(.eyebrow),
.expert-copy p,
.split-cta p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin: 28px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(18, 63, 69, 0.08);
}

.price-box span {
  font-weight: 800;
}

.price-box del {
  color: var(--coral);
  font-size: 30px;
  font-weight: 800;
}

.price-box strong {
  color: var(--green);
  font-family: Ubuntu, Inter, sans-serif;
  font-size: 62px;
  line-height: 1;
}

.price-box em {
  color: var(--white);
  background: var(--cyan);
  border-radius: 999px;
  padding: 8px 12px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 16px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(18, 63, 69, 0.16);
}

.button.primary,
.button.secondary {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--teal-dark);
}

.button.secondary {
  background: var(--cyan);
}

.button.light {
  color: var(--green);
  background: var(--white);
}

.button.wide {
  width: min(520px, 100%);
}

.secure-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 22px;
  font-weight: 800;
  color: var(--teal-dark);
}

.secure-row.center {
  justify-content: center;
}

.secure-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.secure-row span img {
  width: 18px;
}

.secure-row > img {
  width: 203px;
  height: auto;
}

.fine-print {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 48px 8px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(102, 237, 198, 0.52), rgba(98, 187, 211, 0.34));
}

.hero-visual img {
  width: min(560px, 100%);
  filter: drop-shadow(0 26px 34px rgba(18, 63, 69, 0.18));
}

section {
  scroll-margin-top: 110px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 720px;
}

.why {
  background: var(--cyan);
}

.image-panel {
  min-height: 560px;
  background: var(--teal-dark);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-panel {
  padding: clamp(44px, 8vw, 110px);
}

.content-panel.light {
  background: rgba(255, 255, 255, 0.92);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}

.check-list p {
  margin: 0;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.check-list strong {
  color: var(--green);
}

.process,
.testimonials {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  color: var(--cyan);
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.phase-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(18, 63, 69, 0.07);
}

.phase-card img,
.number-icon {
  width: 106px;
  height: 106px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.number-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--cyan);
  font-family: Ubuntu, Inter, sans-serif;
  font-size: 58px;
  font-weight: 800;
}

.phase-card span {
  display: inline-block;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 900;
}

.phase-card h3,
.testimonial-card h3 {
  margin-top: 18px;
}

.phase-card p,
.testimonial-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.expert {
  min-height: 690px;
  display: grid;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 52%, rgba(255, 255, 255, 0.58) 100%), url("images/expert-bg.avif");
  background-repeat: no-repeat;
  background-position: center, right center;
  background-size: cover, contain;
}

.expert-copy {
  width: min(720px, calc(100% - 32px));
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding: 90px 0;
}

.expert-signature {
  color: var(--teal-dark) !important;
  font-weight: 900;
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--cyan);
  color: var(--white);
}

.split-cta div {
  padding: clamp(44px, 8vw, 112px);
  display: grid;
  align-content: center;
}

.split-cta h2,
.split-cta p {
  color: var(--white);
}

.split-cta img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.testimonials {
  background-image: url("images/product.avif");
  background-repeat: no-repeat;
  background-position: right top 40px;
  background-size: 260px auto;
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.order-steps {
  background: var(--green);
  padding: 90px 16px;
  text-align: center;
}

.order-steps h2 {
  max-width: 900px;
  margin: 0 auto 44px;
  color: var(--white);
}

.steps {
  width: min(920px, 100%);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.steps div {
  color: var(--white);
  font-weight: 900;
}

.steps img {
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  border-radius: 8px;
  object-fit: cover;
}

.warning-box {
  width: min(760px, 100%);
  margin: 0 auto;
  border: 2px solid var(--white);
  border-radius: 8px;
  background: rgba(18, 63, 69, 0.28);
  padding: 34px;
  color: var(--white);
}

.warning-box h3 {
  color: var(--white);
}

.warning-box p {
  font-size: 18px;
  line-height: 1.6;
}

.final-offer {
  padding: 70px 16px;
  background: var(--cyan) url("images/dots.webp") center / 520px auto no-repeat;
}

.offer-card {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
  box-shadow: 0 28px 60px rgba(18, 63, 69, 0.22);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.trust-badges div {
  min-height: 96px;
  border: 2px solid var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  color: var(--green);
  font-weight: 900;
}

.trust-badges img {
  width: 56px;
  max-height: 56px;
  object-fit: contain;
}

.final-product {
  width: min(420px, 90%);
  margin: 0 auto 20px;
}

.discount-line {
  margin: 18px 0;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 10px 0 28px;
}

.countdown div {
  min-width: 118px;
}

.countdown strong {
  display: block;
  color: var(--coral);
  font-size: clamp(56px, 9vw, 98px);
  line-height: 1;
  font-family: Ubuntu, Inter, sans-serif;
}

.countdown span {
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.price-box.compact {
  margin: 28px auto 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 28px;
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 54px max(16px, calc((100vw - 1180px) / 2));
}

.footer h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

.footer .disclaimer {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 960px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 0 0 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .section-grid,
  .split-cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 0;
    background-image: none;
  }

  .hero-copy {
    padding: 48px 0 20px;
    text-align: center;
  }

  .rating-line,
  .secure-row {
    justify-content: center;
  }

  .price-box {
    margin-left: auto;
    margin-right: auto;
  }

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

  .cards.three,
  .steps,
  .trust-badges {
    grid-template-columns: 1fr;
  }

  .split-cta img {
    min-height: 380px;
  }

  .expert {
    background-size: cover, cover;
  }

  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .lead,
  .hero-copy > p:not(.eyebrow),
  .expert-copy p,
  .split-cta p {
    font-size: 17px;
  }

  .price-box {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .price-box strong {
    font-size: 52px;
  }

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

  .hero-visual::before {
    inset: 34px 0;
  }

  .content-panel,
  .split-cta div {
    padding: 40px 22px;
  }

  .process,
  .testimonials {
    padding: 64px 0;
  }

  .phase-card,
  .testimonial-card,
  .warning-box {
    padding: 22px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown div {
    min-width: 88px;
  }

  .countdown strong {
    font-size: 54px;
  }
}
