:root {
  --bg: #f7f4ee;
  --ink: #1e1c18;
  --muted: #5f5a52;
  --card: #fffcf6;
  --line: #e4dbcd;
  --accent: #106f4f;
  --cta: #f97316;
  --cta-2: #ea580c;
  --accent-2: #d19a3a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 15% -10%, #f7d9a3 0%, transparent 40%),
              radial-gradient(circle at 90% 0%, #d1f0df 0%, transparent 35%),
              var(--bg);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(50px);
}

.bg-shape-a {
  width: 300px;
  height: 300px;
  background: rgba(209, 154, 58, 0.22);
  top: -80px;
  right: -70px;
}

.bg-shape-b {
  width: 360px;
  height: 360px;
  background: rgba(16, 111, 79, 0.16);
  bottom: -120px;
  left: -90px;
}

.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 18px 52px;
}

.page > section:not(.hero) {
  margin-top: 42px;
}

.hero {
  text-align: center;
  padding: 14px 0 6px;
}

.kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
}

.sub {
  margin: 14px auto 0;
  max-width: 700px;
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--muted);
}

.video-wrap {
  margin: 26px auto 16px;
  max-width: 860px;
}

.video-head {
  display: inline-block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.video-box {
  position: relative;
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.video-box::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 15px 28px;
  background: linear-gradient(90deg, var(--cta) 0%, var(--cta-2) 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.34);
}

.cta:hover {
  transform: translateY(-1px);
}

.micro {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.trust-strip {
  margin: 14px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.trust-strip span {
  font-size: 12px;
  color: #1f2937;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
}

.proof-strip {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fffdf9;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.proof-stars {
  color: var(--accent-2);
  letter-spacing: 0.06em;
  font-weight: 700;
}

.dot {
  opacity: 0.6;
}

.cards {
  margin-top: 42px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
}

.flow h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 34px);
}

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

.flow-step {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fffdfa;
}

.flow-n {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
}

.flow-step h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.showcase-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.showcase-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.15;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.showcase-phone {
  margin: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #0d1117;
  padding: 10px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.showcase-phone img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  padding: 18px 16px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.5;
  color: var(--muted);
}

.highlight {
  background: linear-gradient(180deg, #fff6e6 0%, #fffef9 100%);
}

.price {
  margin: 4px 0 6px;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  color: var(--accent);
}

.cta-small {
  font-size: 16px;
  padding: 12px 18px;
}

.story {
  margin-top: 42px;
}

.story-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffef9 0%, #fefaf2 100%);
  padding: 22px 18px;
}

.story-box h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.15;
}

.story-box p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.benefits {
  margin-top: 42px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fffdfa;
}

.benefit h3 {
  margin: 0 0 6px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.social-proof {
  margin-top: 42px;
}

.social-proof h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 34px);
}

.social-sub {
  margin: 8px 0 0;
  color: var(--muted);
}

.testimonials {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.testimonial {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ea 100%);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
}

.testimonial-main h3 {
  font-size: 22px;
}

.testimonial-mini p {
  line-height: 1.4;
}

.t-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.t-stars {
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.t-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  background: #edf8f3;
  border: 1px solid #c8eadb;
  padding: 3px 8px;
  border-radius: 999px;
}

.testimonial h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.testimonial p {
  margin: 0;
  color: #2a2722;
  line-height: 1.5;
}

.t-author {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.faq {
  margin-top: 42px;
}

.faq h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.5vw, 34px);
}

.faq-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fffdfa;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.closing {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(120deg, #fff7ea 0%, #ecf8f2 100%);
  padding: 24px 18px;
  text-align: center;
}

.closing-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.closing h2 {
  margin: 8px auto 0;
  max-width: 840px;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.2;
}

.closing-offer {
  margin: 12px 0 0;
  font-size: 18px;
  color: #2a2722;
}

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

@media (max-width: 920px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }
}
