:root {
  --bg: #f7f4ef;
  --bg-strong: #efe5d8;
  --text: #17120f;
  --muted: #70665d;
  --card: #fffaf3;
  --accent: #ec6a35;
  --accent-dark: #be4920;
  --green: #2f8f5b;
  --line: rgba(23, 18, 15, 0.12);
  --shadow: 0 24px 80px rgba(65, 44, 25, 0.16);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(236, 106, 53, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(47, 143, 91, 0.13), transparent 28rem),
    var(--bg);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px;
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--text);
  box-shadow: 0 10px 24px rgba(23, 18, 15, 0.18);
}

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

.nav a:hover,
.footer a:hover {
  color: var(--accent-dark);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 20px;
}

.section--compact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p,
.section--compact p,
.lead__content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding-top: 74px;
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.trial-note {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

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

.hero__proof span,
.status-pill,
.popular {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.76);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero__proof span {
  padding: 10px 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(236, 106, 53, 0.28);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 42px rgba(190, 73, 32, 0.32);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
}

.button--ghost {
  color: var(--text);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: none;
}

.button--secondary {
  color: var(--text);
  background: var(--bg-strong);
  box-shadow: none;
}

.button--ghost:hover,
.button--secondary:hover {
  color: #fff;
}

.report-card,
.price-card,
.step-card,
.benefits article,
.lead,
.pain,
.offer,
.objection {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--shadow);
}

.report-card {
  padding: 28px;
  transform: rotate(1.5deg);
}

.report-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.report-card__label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.report-card h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.status-pill {
  padding: 8px 12px;
  color: var(--green);
  background: rgba(47, 143, 91, 0.1);
}

.progress {
  overflow: hidden;
  height: 16px;
  border-radius: 999px;
  background: #eadfce;
}

.progress__bar {
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #f4a85d);
}

.progress__caption {
  margin: 10px 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.report-grid div {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
}

.metric {
  display: block;
  margin-bottom: 4px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.report-grid p,
.report-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.report-list {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
}

.steps,
.benefits,
.pricing {
  display: grid;
  gap: 20px;
}

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

.step-card,
.benefits article,
.price-card {
  padding: 28px;
}

.step-card__number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--text);
  font-weight: 800;
}

.step-card p,
.benefits p,
.price-card li,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

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

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

.price-card {
  position: relative;
}

.price-card--accent {
  border-color: rgba(236, 106, 53, 0.38);
  background: #fff;
}

.popular {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  color: var(--accent-dark);
  background: rgba(236, 106, 53, 0.1);
}

.price {
  margin-bottom: 24px;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.price span {
  color: var(--muted);
  font-size: 17px;
  letter-spacing: 0;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: center;
  padding: 48px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
}

.lead-form--button-only {
  align-content: center;
}

.lead-form--button-only .button {
  width: 100%;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf3;
  color: var(--text);
  font: inherit;
}

.lead-form input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(236, 106, 53, 0.16);
}

.form-note,
.form-message {
  margin: 0;
  font-size: 14px;
}

.form-message {
  min-height: 22px;
  color: var(--accent-dark);
  font-weight: 700;
}

.form-message.is-success {
  color: var(--green);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 20px 42px;
  color: var(--muted);
  font-weight: 700;
}

.footer p {
  margin: 0;
}

.cookie-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(560px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 18px 60px rgba(23, 18, 15, 0.2);
  backdrop-filter: blur(18px);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice h2 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-notice__button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease;
}

.cookie-notice__button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .hero,
  .lead,
  .section--compact {
    grid-template-columns: 1fr;
  }

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

  .report-card {
    transform: none;
  }

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

@media (max-width: 680px) {
  .section {
    padding: 58px 16px;
  }

  .site-header,
  .footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav {
    gap: 14px;
    overflow-x: auto;
  }

  .site-header .button {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .pricing,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .lead {
    padding: 28px;
  }

  .cookie-notice {
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
  }
}
