:root {
  --bg: #ffffff;
  --ink: #101010;
  --muted: #646464;
  --line: #e8e3dd;
  --soft: #f7f4ef;
  --orange: #f26a21;
  --orange-dark: #c94d0d;
  --black: #050505;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.section {
  padding: 56px 20px;
}

.hero {
  display: grid;
  gap: 22px;
  min-height: auto;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 239, 0.96)),
    var(--soft);
}

.brand-line,
.product-kicker,
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-line {
  color: rgba(16, 16, 16, 0.48);
}

.product-kicker,
.eyebrow {
  color: var(--orange-dark);
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 12vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 8vw, 4rem);
}

p {
  margin: 0;
}

.hero-subheadline,
.section-heading p,
.final-inner p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-subheadline {
  margin-top: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 24px;
  padding: 15px 22px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(242, 106, 33, 0.25);
}

.cta-helper {
  margin-top: 10px;
  color: var(--orange-dark);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.cta-button.dark {
  border-color: var(--black);
  background: var(--black);
  box-shadow: none;
}

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

.trust-points li {
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.hero-media img {
  aspect-ratio: 16 / 10;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

.proof-section,
.order-section,
.order-trust-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-card img,
.proof-card video {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.video-card video {
  background: #111;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.audience-section,
.benefits-section,
.faq-section {
  background: var(--soft);
}

.point-list {
  display: grid;
  gap: 10px;
}

.point-list div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 16px 16px 44px;
  background: #fff;
  font-weight: 900;
}

.point-list div::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.trust-list div {
  border-color: rgba(242, 106, 33, 0.22);
  background: #fffaf6;
}

.benefit-list {
  display: grid;
  gap: 10px;
}

.benefit-list div {
  border-left: 4px solid var(--orange);
  padding: 16px;
  background: #fff;
  font-weight: 900;
}

.pricing-section {
  background: var(--black);
}

.pricing-panel {
  display: grid;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 26px;
  background: #fff;
}

.price-list {
  display: grid;
  gap: 8px;
}

.price-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 12px;
  font-size: 1.05rem;
}

.price-list strong {
  text-align: right;
  white-space: nowrap;
}

.pricing-note {
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff2ea;
  color: var(--orange-dark);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: order;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font-weight: 900;
}

.steps li::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  content: counter(order);
  counter-increment: order;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
}

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

.final-cta {
  background: var(--black);
  color: #fff;
  text-align: center;
}

.final-inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-inner p {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
}

.final-inner h2 + p {
  margin-top: 14px;
}

.final-cta .brand-line {
  color: rgba(255, 255, 255, 0.42);
}

@media (min-width: 720px) {
  .section {
    padding: 76px 42px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    gap: 42px;
    min-height: 100svh;
    align-items: center;
  }

  .hero-media img {
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  .cta-button {
    width: auto;
  }

  .cta-helper {
    text-align: left;
  }

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

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

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

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

@media (min-width: 1040px) {
  .section {
    padding-right: max(56px, calc((100vw - 1180px) / 2));
    padding-left: max(56px, calc((100vw - 1180px) / 2));
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-card.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .proof-card.large img {
    aspect-ratio: 1 / 1;
  }

  .benefit-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .point-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
