:root {
  --ink: #0a1722;
  --ink-soft: #132634;
  --green: #35d07f;
  --green-dark: #1aaa65;
  --yellow: #f7ca4d;
  --cream: #f6f8f5;
  --white: #ffffff;
  --muted: #66737d;
  --line: #dfe6e1;
  --radius: 26px;
  --shadow: 0 22px 70px rgba(10, 23, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  background: rgba(7, 19, 28, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header__inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.logo__accent {
  color: var(--green);
}

.logo__mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.header__phone {
  transition: color 0.2s ease;
}

.nav a:hover,
.header__phone:hover {
  color: var(--green);
}

.header__phone {
  font-size: 15px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 16, 24, 0.97), rgba(9, 30, 40, 0.92)),
    radial-gradient(circle at 70% 40%, #174d3a, #081722 60%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, transparent, black 55%, transparent);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
}

.hero__glow--one {
  top: 120px;
  right: 5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(53, 208, 127, .18), transparent 68%);
}

.hero__glow--two {
  bottom: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 202, 77, .08), transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 840px;
  padding-top: 140px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(53, 208, 127, .3);
  border-radius: 100px;
  color: #cfeadd;
  background: rgba(53, 208, 127, .09);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(53, 208, 127, .12);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -3.6px;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero h1 strong {
  color: var(--yellow);
  font-weight: 900;
}

.hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #bbc9d0;
  font-size: 18px;
}

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

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #06150e;
  background: linear-gradient(135deg, #55e49a, var(--green));
  box-shadow: 0 14px 35px rgba(53, 208, 127, .22);
}

.button--primary:hover {
  box-shadow: 0 18px 45px rgba(53, 208, 127, .32);
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(4, 31, 18, .16);
}

.button--full {
  width: 100%;
}

.hero__facts {
  margin-top: 44px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero__facts div {
  padding-right: 18px;
}

.hero__facts div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.hero__facts strong {
  display: block;
  color: var(--white);
  font-size: 27px;
  line-height: 1.1;
}

.hero__facts span {
  margin-top: 6px;
  display: block;
  color: #8da0aa;
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: 18%;
  left: 4%;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(247,202,77,.7);
}

.orbit--outer {
  width: 470px;
  height: 470px;
  animation: spin 22s linear infinite;
}

.orbit--inner {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation: spin 30s linear infinite reverse;
}

.hero__symbol {
  position: relative;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53,208,127,.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.1), transparent 40%),
    linear-gradient(145deg, rgba(53,208,127,.18), rgba(5,20,27,.75));
  box-shadow: 0 30px 100px rgba(0,0,0,.4), inset 0 0 60px rgba(53,208,127,.08);
}

.hero__symbol-line {
  position: absolute;
  width: 270px;
  height: 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #f48751, var(--yellow));
  transform: rotate(-35deg);
  box-shadow: 0 8px 25px rgba(247,202,77,.25);
}

.hero__symbol-text {
  z-index: 1;
  color: var(--white);
  text-align: center;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
}

.float-card {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  color: #dce6e9;
  background: rgba(11,29,39,.82);
  box-shadow: 0 14px 45px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.float-card span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
}

.float-card--top {
  top: 60px;
  right: -6px;
  animation: float 4s ease-in-out infinite;
}

.float-card--bottom {
  bottom: 60px;
  left: -8px;
  animation: float 4.5s ease-in-out infinite reverse;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #728892;
  font-size: 11px;
  transform: translateX(-50%);
}

.scroll-hint span {
  color: var(--green);
  font-size: 17px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-tag {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 7px 12px;
  display: block;
  border-radius: 100px;
  color: var(--green-dark);
  background: #e9f9f0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-tag--dark {
  margin-left: 0;
  color: #d7f5e4;
  background: rgba(8, 45, 28, .32);
}

.section-heading h2,
.package h2,
.fit h2,
.faq h2,
.lead h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -2.4px;
}

.section-heading p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.gradient-text {
  color: var(--green-dark);
  background: linear-gradient(90deg, var(--green-dark), #61c95a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.economics {
  background: var(--cream);
}

.economics__top {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 1px solid #e4e9e5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 150px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  background: #f4f7f5;
}

.metric--accent {
  color: var(--white);
  background: linear-gradient(145deg, #183d2c, #0e251a);
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric--accent span,
.metric--accent small {
  color: #a9c8b6;
}

.metric strong {
  margin: 5px 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.metric--accent strong {
  color: var(--green);
}

.metric small {
  color: #8b9890;
  font-size: 11px;
}

.scenario-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scenario {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid #e1e8e3;
  border-radius: var(--radius);
  background: var(--white);
}

.scenario--featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, #122c20, #071912);
  box-shadow: 0 24px 70px rgba(15, 48, 31, .22);
}

.scenario--featured::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,208,127,.2), transparent 68%);
}

.scenario__number {
  position: absolute;
  top: 26px;
  right: 32px;
  color: #e7ece8;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.scenario--featured .scenario__number {
  color: rgba(255,255,255,.05);
}

.scenario__label {
  position: relative;
  z-index: 1;
  padding: 6px 10px;
  display: inline-block;
  border-radius: 100px;
  color: #177647;
  background: #e8f8ef;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.scenario--featured .scenario__label {
  color: var(--green);
  background: rgba(53,208,127,.1);
}

.scenario h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 24px 0 30px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.8px;
}

.scenario__profit {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scenario--featured .scenario__profit {
  border-color: rgba(255,255,255,.1);
}

.scenario__profit span,
.scenario__profit small {
  color: var(--muted);
  font-size: 11px;
}

.scenario--featured .scenario__profit span,
.scenario--featured .scenario__profit small {
  color: #8eb2a0;
}

.scenario__profit strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.scenario--featured .scenario__profit strong {
  color: var(--green);
}

.data-list {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.data-list li {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-bottom: 1px solid #edf1ee;
  font-size: 13px;
}

.scenario--featured .data-list li {
  color: #8eb2a0;
  border-color: rgba(255,255,255,.08);
}

.data-list b {
  color: var(--ink);
  text-align: right;
}

.scenario--featured .data-list b {
  color: var(--white);
}

.economics__note {
  margin-top: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 16px;
  color: #5f7065;
  background: #edf1ee;
  font-size: 11px;
}

.economics__note span {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #b9c5bd;
  border-radius: 50%;
  font-weight: 800;
}

.economics__note p {
  margin: 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(53,208,127,.42);
  box-shadow: 0 18px 55px rgba(19, 63, 40, .1);
}

.feature__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-dark);
  background: #e9f9f0;
  font-size: 13px;
  font-weight: 900;
}

.feature h3 {
  margin: 30px 0 12px;
  font-size: 20px;
  letter-spacing: -.5px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.package {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 30%, rgba(53,208,127,.17), transparent 35%),
    linear-gradient(145deg, #143727, #06140e);
}

.package::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .08;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 24px 24px;
}

.package__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.package__intro .section-tag {
  margin-bottom: 18px;
}

.package h2 span {
  color: var(--green);
}

.package__intro p {
  margin: 24px 0 32px;
  color: #acc5b6;
  font-size: 15px;
}

.package__list {
  border-top: 1px solid rgba(255,255,255,.12);
}

.package-item {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.package-item > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.package-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.package-item p {
  margin: 0;
  color: #90a99a;
  font-size: 12px;
}

.investment {
  background: #f5f7f4;
}

.investment-card {
  padding: 48px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, #0e2118, #173e2b);
  box-shadow: var(--shadow);
}

.investment-card__total {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.investment-card__total span {
  color: #96b4a3;
  font-size: 12px;
  font-weight: 700;
}

.investment-card__total strong {
  margin: 8px 0;
  display: block;
  color: var(--green);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -2px;
}

.investment-card__total p {
  margin: 0;
  color: #88a394;
  font-size: 11px;
}

.investment-card__parts {
  display: grid;
  gap: 30px;
}

.investment-card__parts div {
  position: relative;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  overflow: hidden;
  color: #a9c0b3;
  font-size: 13px;
}

.investment-card__parts b {
  color: var(--white);
}

.investment-card__parts div::after,
.investment-card__parts i {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 10px;
}

.investment-card__parts div::after {
  width: 100%;
  content: "";
  background: rgba(255,255,255,.1);
}

.investment-card__parts i {
  z-index: 1;
  width: var(--width);
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.expense-strip {
  margin-top: 20px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.expense-strip p {
  margin: 0 8px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.expense-strip span {
  padding: 8px 11px;
  border-radius: 100px;
  color: #567063;
  background: #edf4ef;
  font-size: 10px;
  font-weight: 700;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline::before {
  position: absolute;
  top: 29px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: #cdd8d1;
}

.timeline__item {
  position: relative;
  text-align: center;
}

.timeline__item > span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 0 0 1px rgba(53,208,127,.25);
  font-size: 11px;
  font-weight: 900;
}

.timeline__item div {
  min-height: 180px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.timeline__item h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

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

.fit {
  background: var(--cream);
}

.fit__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.fit__content .section-tag,
.faq__intro .section-tag {
  margin-left: 0;
}

.fit__content p,
.faq__intro p {
  margin: 24px 0 0;
  color: var(--muted);
}

.fit__cards {
  display: grid;
  gap: 14px;
}

.fit-card {
  padding: 23px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.fit-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: #e7f8ee;
  font-weight: 900;
}

.fit-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.fit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.faq__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
}

.faq__intro a {
  margin-top: 28px;
  display: inline-block;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.accordion__item button b {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: #eaf8f0;
  font-size: 18px;
  transition: transform .25s ease;
}

.accordion__item > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.accordion__item p {
  margin: 0;
  padding: 0 55px 25px 0;
  color: var(--muted);
  font-size: 13px;
}

.accordion__item.open button b {
  transform: rotate(45deg);
}

.lead {
  padding: 30px 0 100px;
}

.lead__card {
  padding: 66px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(53,208,127,.28), transparent 35%),
    linear-gradient(145deg, #173e2c, #07150f);
  box-shadow: 0 30px 90px rgba(7, 33, 20, .25);
}

.lead__content p {
  margin: 22px 0;
  color: #aac2b4;
}

.lead__content ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.lead__content li {
  padding: 7px 10px;
  border-radius: 100px;
  color: #c8dfd2;
  background: rgba(255,255,255,.07);
  font-size: 10px;
}

.lead__downloads {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
}

.lead__downloads a {
  color: var(--green);
}

.lead-form {
  padding: 34px;
  border-radius: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.lead-form h3 {
  margin: 0 0 22px;
  font-size: 22px;
}

.lead-form label {
  margin-bottom: 14px;
  display: block;
}

.lead-form label > span {
  margin-bottom: 6px;
  display: block;
  color: #6b7770;
  font-size: 10px;
  font-weight: 700;
}

.lead-form input:not([type="checkbox"]) {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid #dfe6e1;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #f8faf8;
  transition: border .2s ease, box-shadow .2s ease;
}

.lead-form .checkbox-row--form {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  cursor: pointer;
}

.lead-form .checkbox-row--form input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #c5d0c9;
  border-radius: 4px;
  accent-color: #177647;
  background: #fff;
  cursor: pointer;
}

.lead-form .checkbox-row--form > span {
  display: block;
  margin: 0;
  color: #5f6b64;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}

.captcha-row__field {
  margin-bottom: 0 !important;
}

.captcha-row__field strong {
  color: var(--green-dark, #177647);
  font-weight: 800;
}

.captcha-row__refresh {
  width: 52px;
  height: 52px;
  border: 1px solid #dfe6e1;
  border-radius: 12px;
  background: #f8faf8;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.captcha-row__refresh:hover {
  border-color: #35d07f;
}

.lead-form input:not([type="checkbox"]):focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(53,208,127,.1);
}

.callback-block {
  margin-top: 18px;
}

.callback-block__divider {
  margin: 0 0 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.callback-form {
  background: rgba(255, 255, 255, 0.96);
}

.callback-form h3 {
  font-size: 20px;
}

.form-note {
  margin: 12px 0 0;
  color: #909a94;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.form-status {
  margin: 10px 0 0;
  color: var(--green-dark);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
}

.footer {
  padding: 65px 0 24px;
  color: #b3c0c6;
  background: #061119;
}

.footer__top {
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
}

.logo--footer {
  color: var(--white);
}

.footer__top > div:first-child p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #70818a;
  font-size: 12px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 12px;
}

.footer__links,
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
}

.footer__links a:hover,
.footer__contacts a:hover {
  color: var(--green);
}

.footer__bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #53636b;
  font-size: 12px;
  line-height: 1.5;
}

.footer__bottom p {
  margin: 0;
}

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

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

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .nav {
    gap: 16px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }
  .hero__content {
    max-width: 760px;
  }
  .hero__visual {
    display: none;
  }
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package__grid,
  .fit__grid,
  .faq__grid {
    gap: 45px;
  }
  .lead__card {
    padding: 48px;
    gap: 40px;
  }
}

@media (max-width: 800px) {
  .header__phone {
    margin-left: auto;
  }
  .menu-button {
    display: block;
  }
  .nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    background: rgba(7,19,28,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .scenario-grid,
  .package__grid,
  .fit__grid,
  .faq__grid,
  .lead__card {
    grid-template-columns: 1fr;
  }
  .economics__top {
    grid-template-columns: 1fr;
  }
  .metric {
    min-height: auto;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    display: none;
  }
  .investment-card {
    grid-template-columns: 1fr;
  }
  .investment-card__total {
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .lead__card {
    padding: 40px;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__top > div:first-child {
    grid-column: 1 / -1;
  }
}

.lead-form input:not([type="checkbox"]):focus,
.lead-form input:not([type="checkbox"]):focus-visible,
.button:focus-visible,
.menu-button:focus-visible,
.accordion__item button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  z-index: 200;
  top: -100px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.hero__disclaimer {
  margin-top: 14px;
  color: #8da0aa;
  font-size: 12px;
}

.assumptions {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid #dfe6e1;
  border-radius: 20px;
  background: var(--white);
}

.assumptions h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.assumptions ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
  color: var(--muted);
  font-size: 13px;
}

.assumptions__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button--ghost-dark {
  color: var(--ink);
  border: 1px solid #cfd8d2;
  background: var(--white);
}

.calculator {
  background: #f5f7f4;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.calculator-panel,
.calculator-results {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.calculator-panel h3 {
  margin: 18px 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green-dark);
}

.calculator-panel h3:first-child {
  margin-top: 0;
}

.calculator-panel label {
  display: block;
  margin-bottom: 12px;
}

.calculator-panel label > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.calculator-panel input[type="number"] {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid #dfe6e1;
  border-radius: 12px;
  background: #f8faf8;
}

.calc-hint {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 3px;
}

.checkbox-row--form a {
  color: var(--green-dark);
  text-decoration: underline;
}

.calculator-results {
  display: grid;
  gap: 12px;
  align-content: start;
}

.calc-result {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid #edf1ee;
  border-radius: 14px;
  background: #f8faf8;
}

.calc-result span {
  color: var(--muted);
  font-size: 12px;
}

.calc-result strong {
  font-size: 18px;
  text-align: right;
}

.calc-result--accent {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, #173e2c, #071912);
}

.calc-result--accent span {
  color: #a9c0b3;
}

.calc-result--accent strong {
  color: var(--green);
}

.proof-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-card,
.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.proof-card h3,
.review-card__head strong {
  margin: 0 0 10px;
  font-size: 18px;
}

.proof-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.proof-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.proof-meta {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.proof-meta li {
  padding: 6px 0;
  color: #5f7065;
  border-top: 1px solid #edf1ee;
  font-size: 12px;
}

.proof-certificate {
  margin-top: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.proof-certificate__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(10, 23, 34, 0.12);
}

.proof-certificate__content .section-tag {
  margin: 0 0 12px;
}

.proof-certificate__content h3 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -1px;
}

.proof-certificate__content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-details {
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.proof-details div {
  padding-bottom: 12px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  border-bottom: 1px solid #edf1ee;
}

.proof-details dt {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.proof-details dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.proof-note {
  margin-top: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 16px;
  color: #5f7065;
  background: #edf1ee;
  font-size: 12px;
  line-height: 1.5;
}

.proof-note span {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid #b9c5bd;
  border-radius: 50%;
  font-weight: 800;
}

.proof-note p {
  margin: 0;
}

.review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card__head span {
  color: var(--muted);
  font-size: 12px;
}

.sticky-bar {
  position: fixed;
  z-index: 120;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 10px;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(7, 19, 28, .96);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.sticky-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-bar__phone {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-bar__callback {
  min-height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-bar__cta {
  flex: 1;
  min-height: 48px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer__legal {
  margin-top: 14px;
  color: #70818a;
  font-size: 12px;
  line-height: 1.5;
}

.legal-page {
  background: var(--cream);
}

.legal {
  max-width: 820px;
  padding: 120px 0 80px;
}

.legal h1,
.legal h2 {
  letter-spacing: -.5px;
}

.legal h1 {
  margin: 0 0 16px;
  font-size: 36px;
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal p,
.legal li {
  color: #4f5d66;
  line-height: 1.6;
}

.legal ul {
  padding-left: 20px;
}

.legal__back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .assumptions ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calculator-grid,
  .proof-grid,
  .reviews-grid,
  .proof-certificate {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 801px) {
  .sticky-bar {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .assumptions ul {
    grid-template-columns: 1fr;
  }
  .header__inner {
    height: 70px;
  }
  .header__phone {
    display: none;
  }
  .nav {
    top: 70px;
  }
  .hero,
  .hero__grid {
    min-height: 760px;
  }
  .hero__grid {
    padding-top: 120px;
    padding-bottom: 90px;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -2.3px;
  }
  .hero__lead {
    font-size: 15px;
  }
  .hero__actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero__facts {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero__facts div,
  .hero__facts div + div {
    padding: 0;
    border: 0;
  }
  .hero__facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
  }
  .section {
    padding: 80px 0;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading h2,
  .package h2,
  .fit h2,
  .faq h2,
  .lead h2 {
    font-size: 34px;
    letter-spacing: -1.6px;
  }
  .economics__top {
    padding: 14px;
  }
  .scenario-grid,
  .advantage-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .scenario {
    padding: 28px 24px;
  }
  .scenario__number {
    font-size: 52px;
  }
  .scenario__profit strong {
    font-size: 38px;
  }
  .package__grid {
    gap: 50px;
  }
  .investment-card {
    padding: 30px 24px;
    gap: 32px;
  }
  .investment-card__parts div {
    flex-direction: column;
    gap: 3px;
  }
  .expense-strip {
    justify-content: flex-start;
  }
  .expense-strip p {
    width: 100%;
  }
  .lead {
    padding-bottom: 70px;
  }
  .lead__card {
    padding: 36px 20px;
    border-radius: 22px;
  }
  .proof-certificate {
    padding: 20px;
  }
  .proof-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__top > div:first-child {
    grid-column: auto;
  }
  .footer__bottom {
    flex-direction: column;
  }
}
