:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f2f2f2;
  --text: #111111;
  --muted: #2c2c2c;
  --line: #d7d7d7;
  --brand: #ffd32a;
  --brand-strong: #f3c300;
  --accent: #ffd32a;
  --radius: 16px;
  --shadow: 0 20px 44px rgba(11, 30, 54, 0.08);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  line-height: 1.56;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.bg-glow {
  position: fixed;
  z-index: -1;
  filter: blur(64px);
  pointer-events: none;
}

.bg-glow--left {
  width: 290px;
  height: 290px;
  left: -90px;
  top: -90px;
  background: rgba(255, 211, 42, 0.28);
}

.bg-glow--right {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  background: rgba(255, 211, 42, 0.24);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo__img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: #222222;
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 19px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #111111;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--brand-strong);
}

.btn--ghost {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.btn--ghost:hover {
  background: #222222;
}

.btn--small {
  min-height: 38px;
  padding: 0 14px;
}

.hero {
  padding-top: 96px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
}

h1 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin-top: 18px;
  max-width: 53ch;
  color: var(--muted);
  font-size: 19px;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__card,
.card,
.form,
.split,
.proof-card,
.economy,
.cta-bottom {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 18px 24px 24px;
  background: #f4f4f4;
}

.hero__card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111111;
}

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

.hero__card li {
  display: grid;
  gap: 2px;
}

.hero__card strong {
  font-size: 26px;
  color: #b88900;
}

.hero__card span,
.micro,
.card p,
.split__lead,
.proof-card p,
.economy__label,
.economy__note {
  color: var(--muted);
}

.hero__media {
  position: relative;
  margin-bottom: 14px;
}

.hero__media picture {
  display: block;
}

.hero__image {
  width: 100%;
  height: 242px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  filter: contrast(1.04) saturate(1.06);
  display: block;
}

.hero__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.75);
  border-left: 2px solid #ffd200;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero__caption {
  margin: -4px 0 10px;
  font-size: 12px;
  color: #6e6e6e;
}

.micro {
  margin-top: 14px;
  font-size: 14px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head--center {
  text-align: center;
}

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

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

.proof-card {
  padding: 20px;
}

.proof-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #111111;
}

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

.economy__item {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 16px;
}

.economy__item--accent {
  background: #fff6d4;
  border-color: #ffd32a;
}

.economy__price {
  margin-top: 6px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  color: #111111;
}

.economy__note {
  margin-top: 12px;
  font-size: 14px;
}

.split {
  padding: 28px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.split__lead {
  margin: 12px 0 18px;
}

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

.feature-list li {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.steps-subtitle {
  margin: 10px auto 0;
  max-width: 56ch;
  color: #2d2d2d;
  font-size: 16px;
}

.steps-grid {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 16px;
  min-height: 186px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.step-card:nth-child(odd) {
  background: #ffffff;
}

.step-card:nth-child(even) {
  background: #fefbf0;
}

.step-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-card__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffd32a;
  color: #111111;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
}

.step-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #111111;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.step-card p {
  margin: 0;
  color: #242424;
  font-size: 15px;
  line-height: 1.45;
}

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

.card {
  padding: 22px;
}

.card--icon .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #111111;
  background: #ffd32a;
  font-weight: 800;
}

.card__photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.form {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(13, 86, 201, 0.26);
  outline-offset: 1px;
}

.form__full,
.form button,
.form .micro,
.form__status {
  grid-column: 1 / -1;
}

.form__status {
  min-height: 20px;
  font-size: 14px;
  color: var(--muted);
}

.section--cta-bottom {
  padding-top: 30px;
}

.cta-bottom {
  padding: 30px;
  text-align: center;
  background: #111111;
  border-color: #111111;
}

.cta-bottom p {
  margin: 12px 0 18px;
  color: #f2f2f2;
}

.cta-bottom h2 {
  color: #ffffff;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid #d0d0d0;
  background: #fafafa;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #2b2b2b;
}

.section--alt {
  background: #f7f7f7;
}

.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-delay {
  transition-delay: 0.08s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .proof-grid,
  .economy,
  .grid--4 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .section {
    padding: 66px 0;
  }

  .hero {
    padding-top: 78px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__image {
    height: 198px;
  }

  .hero__badge {
    left: 10px;
    top: 10px;
    font-size: 11px;
  }

  .logo__img {
    height: 36px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 16px 4vw;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

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

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

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