:root {
  --bg: #fbfaf5;
  --paper: #ffffff;
  --ink: #15201b;
  --muted: #63706a;
  --line: #e2e7e1;
  --green: #15935b;
  --green-dark: #0f5d3d;
  --yellow: #f6c343;
  --soft: #eef8f0;
  --soft-yellow: #fff5d6;
  --shadow: 0 18px 50px rgba(21, 32, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

.narrow {
  width: min(820px, calc(100% - 40px));
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(226, 231, 225, 0.86);
  backdrop-filter: blur(12px);
}

.logo img,
.footer img {
  width: 138px;
}

.header nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header nav a:hover {
  color: var(--green-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  padding: 78px 0 86px;
  background:
    linear-gradient(135deg, rgba(238, 248, 240, 0.95), rgba(255, 245, 214, 0.9)),
    var(--bg);
}

.hero-grid,
.offer-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

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

.hero-copy {
  max-width: 820px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero-copy p {
  max-width: 640px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.problem .section-action {
  margin-top: 28px;
}

.dashboard-action {
  grid-column: 1 / -1;
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.primary {
  color: #161308;
  background: var(--yellow);
  box-shadow: 0 14px 32px rgba(246, 195, 67, 0.28);
}

.primary:hover {
  background: #ffd56b;
}

.secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-proof span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.risk-panel {
  padding: 22px;
  border: 1px solid rgba(15, 93, 61, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.risk-label {
  display: block;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.risk-question {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
  line-height: 1.4;
}

.risk-question + .risk-question {
  margin-top: 10px;
}

.risk-question.strong {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  font-size: 20px;
}

.risk-panel p {
  margin: 16px 0 0;
  padding: 14px;
  border-radius: 8px;
  color: #5f4200;
  background: var(--soft-yellow);
  font-weight: 800;
}

.section {
  padding: 82px 0;
}

.problem {
  color: #fff;
  background: var(--ink);
}

.problem h2,
.problem p {
  color: #fff;
}

.problem p {
  color: rgba(255, 255, 255, 0.76);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.problem-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
  line-height: 1.45;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.benefit-grid,
.steps,
.proof-grid {
  display: grid;
  gap: 16px;
}

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

.benefit-grid article,
.steps article,
.proof-grid article,
.price-card,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.benefit-grid article,
.proof-grid article {
  padding: 22px;
}

.benefit-grid b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.benefit-grid p,
.proof-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.how {
  background: #fff;
}

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

.steps article {
  position: relative;
  padding: 28px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.social-proof {
  background: var(--soft);
}

.note {
  max-width: 640px;
}

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

.stars {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.proof-grid b,
.proof-grid span {
  display: block;
}

.proof-grid b {
  margin-top: 18px;
}

.proof-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.offer {
  background: linear-gradient(135deg, var(--soft-yellow), var(--soft));
}

.offer-box {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.included {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.included li {
  display: flex;
  gap: 10px;
  font-weight: 800;
}

.included li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.price-card {
  padding: 28px;
  box-shadow: 0 12px 34px rgba(21, 32, 27, 0.08);
}

.price-card > span {
  display: block;
  color: var(--green-dark);
  font-weight: 900;
}

.price-card strong {
  display: block;
  margin: 14px 0 22px;
  font-size: 46px;
  line-height: 1;
}

.price-card small {
  color: var(--muted);
  font-size: 16px;
}

.price-card em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
  text-align: center;
}

.dashboard-after-price {
  background: #fff;
}

.dashboard-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.dashboard-preview {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dashboard-preview img {
  width: 100%;
  border-radius: 8px;
}

.preview-top {
  height: 54px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--ink), var(--green-dark));
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.preview-cards span {
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.preview-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.preview-chart i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green), #91d87a);
}

.faq {
  background: #fff;
}

details + details {
  margin-top: 12px;
}

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

details p {
  margin-bottom: 0;
  padding: 0 20px 20px;
}

.final-cta {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  background: var(--ink);
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.76);
}

.footer {
  padding: 26px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .header nav {
    display: none;
  }

  .hero-grid,
  .offer-box,
  .dashboard-box {
    grid-template-columns: 1fr;
  }

  .problem-list,
  .benefit-grid,
  .steps,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .header {
    padding: 10px 14px;
  }

  .logo img,
  .footer img {
    width: 124px;
  }

  .hero,
  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .quick-proof {
    display: grid;
  }

  .problem-list,
  .benefit-grid,
  .steps,
  .proof-grid,
  .preview-cards {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 22px;
  }

  .money-card.main strong,
  .price-card strong {
    font-size: 36px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
