:root {
  --navy: #032952;
  --navy-2: #021c3a;
  --blue: #2e61ff;
  --blue-deep: #1839ed;
  --blue-soft: #e8efff;
  --paper: #f5f8fc;
  --white: #fff;
  --ink: #0f172a;
  --slate: #475569;
  --mute: #64748b;
  --line: #e2e8f0;
  --chat: #ece7df;
  --display: "Inter Tight", Inter, sans-serif;
  --body: Inter, sans-serif;
  --wrap: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: clip; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
button, input, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  padding: 8px 12px;
  background: var(--navy);
  color: #fff;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--wrap), calc(100vw - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -0.04em;
  font-weight: 600;
}
h1 {
  display: grid;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.08;
  max-width: none;
  font-weight: 600;
}
h1 span, h1 em { display: block; }
h1 em { font-style: normal; color: var(--blue); }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.08; max-width: 16ch; font-weight: 600; }
h3 { font-size: 20px; line-height: 1.25; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.nav__menu:focus-visible,
.form :focus-visible,
.faq summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(46, 97, 255, 0.28);
}
.btn--primary:hover { background: var(--blue-deep); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); }
.btn--lg { min-height: 54px; padding: 0 22px; }
.btn--block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(46, 97, 255, 0.16);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(46, 97, 255, 0.08); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 248, 252, 0.92);
  backdrop-filter: blur(16px);
}
.nav.is-on { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); }
.nav__bar {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: radial-gradient(circle at 78% 22%, var(--blue) 0 6px, transparent 6.5px), var(--navy);
}
.nav__links { display: flex; gap: 22px; color: var(--slate); font-size: 14px; font-weight: 600; }
.nav__links a:hover { color: var(--navy); }
.nav__menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__menu span { width: 16px; height: 1.5px; background: var(--navy); }
.nav__sheet {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav__sheet a { padding: 10px 8px; font-weight: 700; }

/* Hero */
.hero { padding: 36px 0 28px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}
.hero__sub {
  max-width: 42ch;
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 18px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__micro { margin-top: 14px; color: var(--mute); font-size: 13px; font-weight: 600; }

.hero__visual {
  position: relative;
  isolation: isolate;
  min-height: 580px;
  padding: 12px 0;
}
.float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 200px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(3, 41, 82, 0.1);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.float b {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 16px;
}
.float--a {
  top: 36px;
  left: 0;
  animation: bob 4.5s ease-in-out infinite;
}
.float--b {
  left: 0;
  bottom: 96px;
  animation: bob 5s ease-in-out infinite reverse;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.phone {
  width: min(320px, 100%);
  margin-left: auto;
  animation: bob 6s ease-in-out infinite;
}
.phone__body {
  height: 560px;
  padding: 10px;
  background: #111827;
  border-radius: 36px;
  box-shadow: 0 40px 80px rgba(3, 41, 82, 0.22);
  display: flex;
  flex-direction: column;
}
.phone__notch {
  position: absolute;
  width: 96px;
  height: 8px;
  margin: 8px auto 0;
  align-self: center;
  border-radius: 99px;
  background: #000;
  z-index: 2;
}
.phone__body { position: relative; }
.phone__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 14px 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 26px 26px 0 0;
}
.phone__ava {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 800;
}
.phone__head strong { display: block; font-size: 14px; }
.phone__head small { color: #9db4cc; font-size: 11px; }
.phone__chat {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 16px 12px 44px;
  background:
    radial-gradient(circle at 10px 10px, rgba(3,41,82,.05) 1px, transparent 1.2px) 0 0 / 18px 18px,
    var(--chat);
  border-radius: 0 0 26px 26px;
}
.phone__day {
  width: max-content;
  margin: 0 auto 12px;
  padding: 3px 8px;
  border-radius: 99px;
  background: #ddd4c8;
  color: #6b6258;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bubble {
  width: 92%;
  margin-bottom: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 6px 16px 16px 16px;
  box-shadow: 0 6px 16px rgba(3, 41, 82, 0.06);
}
.phone__chat.is-live .bubble:not(.is-in) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
}
.phone__chat.is-live .bubble.is-in {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.bubble p { margin: 0 0 8px; color: var(--navy); font-size: 13px; font-weight: 700; }
.job {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fafc;
}
.job strong { font-size: 14px; color: var(--navy); }
.job small { color: var(--mute); font-size: 12px; }
.job em { margin-top: 6px; color: var(--blue); font-style: normal; font-size: 12px; font-weight: 800; }
.pill {
  width: max-content;
  padding: 2px 7px;
  border-radius: 99px;
  background: #dbeafe;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}
.bubble time { display: block; margin-top: 6px; color: var(--mute); font-size: 10px; text-align: right; }
.typing {
  position: absolute;
  left: 12px;
  bottom: 14px;
  display: inline-flex;
  gap: 4px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
}
.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8aa0b8;
  animation: dots 1s infinite;
}
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes dots {
  0%, 80%, 100% { opacity: .3; transform: none; }
  40% { opacity: 1; transform: translateY(-2px); }
}

/* Proof + lift */
.proof { background: #fff; border-block: 1px solid var(--line); }
.proof__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0;
}
.proof__card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.proof__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
}
.proof__icon svg { width: 20px; height: 20px; display: block; }
.proof__card strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.proof__card > span:last-child { color: var(--mute); font-size: 13px; font-weight: 600; }

.lift {
  background: var(--navy);
  color: #c5d4e8;
  padding: 88px 0;
}
.lift__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.lift__num {
  font-family: var(--display);
  font-size: clamp(88px, 14vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #fff;
  font-weight: 600;
}
.lift h2 { color: #fff; max-width: 14ch; }
.lift p { margin: 16px 0 28px; max-width: 42ch; font-size: 18px; }

.section { padding: 88px 0; }
.section--soft { background: #fff; }
.section__head { margin-bottom: 36px; }
.section__title {
  display: grid;
  max-width: none;
}
.section__title span,
.section__title em { display: block; }
.section__title em {
  font-style: normal;
  color: #25d366;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
}
.story__copy p { margin-top: 14px; color: var(--slate); font-size: 17px; max-width: 46ch; }
.story__title {
  display: grid;
  max-width: none;
  font-size: clamp(24px, 2.8vw, 36px);
}
.story__title span,
.story__title em { display: block; }
.story__title em {
  font-style: normal;
  color: #e11d48;
}
@media (min-width: 1100px) {
  .story__title span { white-space: nowrap; }
}

.mock {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(3, 41, 82, 0.08);
}
.mock header { display: grid; gap: 6px; margin-bottom: 18px; }
.mock header small { color: var(--mute); }
.mock__bar {
  height: 8px;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 99px;
}
.mock__bar i {
  display: block;
  width: 12%;
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
  transition: width 1.4s var(--ease);
}
.mock.is-on .mock__bar i { width: 86%; }
.mock__people {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-weight: 800;
  color: var(--navy);
}
.avatars { display: flex; }
.avatars i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #93c5fd;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}
.avatars i:first-child { margin-left: 0; }
.mock__note { margin-top: 14px; color: var(--mute); font-size: 13px; font-weight: 600; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}
.steps li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.steps__n {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.steps h3 { font-size: 18px; }
.steps > li > p { margin-top: 8px; color: var(--slate); font-size: 14px; }

.mini {
  margin: 0 0 14px;
  padding: 12px;
  min-height: 124px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(3, 41, 82, 0.06);
}
.mini--profile strong,
.mini--ping strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.03em;
}
.mini--profile small,
.mini--ping small { color: var(--mute); font-size: 12px; }
.mini__chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.mini__chips b {
  padding: 3px 8px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}
.mini--ping p {
  margin: 0;
  color: var(--mute);
  font-size: 11px;
  font-weight: 700;
}
.mini--ping strong { margin-top: 6px; }
.mini--ping em {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}
.mini--rank p {
  margin: 0 0 8px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
}
.mini--rank ol { margin: 0; padding: 0; list-style: none; }
.mini--rank li {
  min-height: 28px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}
.mini--rank .is-you {
  background: var(--blue-soft);
  border-radius: 8px;
  font-weight: 800;
}
.mini--seen {
  display: flex;
  gap: 10px;
  align-items: center;
}
.mini--seen b {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
}
.mini--seen p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.cta-band { padding: 0 0 88px; }
.cta-band__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  background: var(--navy);
  color: #c5d4e8;
  border-radius: 24px;
}
.cta-band h2 { color: #fff; max-width: 16ch; }

.checkout {
  display: grid;
  gap: 28px;
}
.checkout__copy p { margin-top: 14px; color: var(--slate); max-width: 46ch; }
.checkout__copy h2 { max-width: 18ch; }
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(3, 41, 82, 0.08);
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s var(--ease);
}
.plan:hover { transform: translateY(-2px); }
.plan.is-on {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46, 97, 255, 0.16), 0 18px 50px rgba(3, 41, 82, 0.08);
}
.plan--plus {
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
}
.plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan__kicker {
  margin: 0;
  color: var(--mute);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan h3 {
  margin-top: 8px;
  font-size: 22px;
  max-width: 16ch;
}
.plan__price {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-weight: 600;
}
.plan__price small {
  font-family: var(--body);
  font-size: 15px;
  color: var(--mute);
  letter-spacing: 0;
  font-weight: 600;
}
.plan__lead {
  margin: 0 0 16px;
  color: var(--slate);
  font-size: 15px;
  font-weight: 500;
}
.plan__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.plan .btn { margin-top: auto; }
.cv-sheet {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(3, 41, 82, 0.06);
}
.cv-sheet header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  color: var(--mute);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cv-sheet header b {
  padding: 2px 7px;
  border-radius: 99px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 10px;
}
.cv-sheet strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: -0.03em;
}
.cv-sheet small { color: var(--mute); font-size: 12px; }
.checkout__form {
  max-width: 720px;
  width: 100%;
  justify-self: center;
}
.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(3, 41, 82, 0.08);
}
.card__kicker { color: var(--mute); font-weight: 700; }
.card__price {
  margin: 4px 0 18px;
  font-family: var(--display);
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--navy);
  font-weight: 600;
}
.card__price small { font-family: var(--body); font-size: 16px; color: var(--mute); letter-spacing: 0; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field--full, .form__errors, .form .btn, .form__trust { grid-column: 1 / -1; }
.field label, .field__label { font-size: 13px; font-weight: 700; }
.field input, .field select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,97,255,.12);
}
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.checks label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.checks input { position: absolute; opacity: 0; width: 0; height: 0; }
.checks label:has(input:checked) { background: var(--navy); border-color: var(--navy); color: #fff; }
.upload {
  position: relative;
  padding: 20px;
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  background: var(--paper);
  text-align: center;
}
.upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload p { color: var(--mute); font-size: 13px; }
.upload button { margin-top: 8px; border: 0; background: none; color: var(--blue); font-weight: 800; cursor: pointer; }
.form__trust { margin: 0; color: var(--mute); font-size: 12px; text-align: center; }
.form__errors { padding: 12px; border-radius: 10px; background: #ffedd5; color: #c2410c; font-weight: 700; }

.faq { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 40px; }
.faq__list { display: grid; gap: 8px; }
.faq details { padding: 0 18px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.faq summary { position: relative; padding: 16px 28px 16px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--mute);
  display: inline-block;
  transform-origin: center;
}
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq details p { padding: 0 0 16px; color: var(--slate); }

.footer { padding: 48px 0 120px; background: var(--navy-2); color: #9db4cc; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.brand--foot { color: #fff; margin-bottom: 10px; }
.footer__label { margin-bottom: 8px; color: #6f8eae; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer a, .footer p { display: block; margin-top: 8px; }

.sticky {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  display: none;
  min-width: min(420px, calc(100vw - 24px));
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(3,41,82,.28);
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone, .float, .badge__dot, .typing span, [data-reveal], .bubble, .btn, .plan, .mock__bar i {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: inline-flex; }
  .hero__grid, .lift__grid, .story, .plans, .faq, .footer__grid, .form {
    grid-template-columns: 1fr;
  }
  .proof__row { grid-template-columns: 1fr 1fr; }
  .hero__visual { min-height: 0; padding: 12px 0 0; }
  .phone { margin: 24px auto 0; }
  .float { display: none; }
  .sticky { display: flex; }
  .cta-band__box { flex-direction: column; align-items: flex-start; padding: 28px; }
  h1 { max-width: none; }
}

@media (max-width: 640px) {
  .wrap { width: min(var(--wrap), calc(100vw - 28px)); }
  .section, .lift { padding: 64px 0; }
  .proof__row, .steps { grid-template-columns: 1fr; gap: 12px; }
  .hero { padding-bottom: 80px; }
}
