:root {
  --ink: #071b36;
  --ink-2: #102b4e;
  --muted: #5e6d80;
  --soft: #eef3f7;
  --paper: #ffffff;
  --wash: #f7f9fb;
  --line: #d8e0e8;
  --line-dark: rgba(255, 255, 255, 0.16);
  --night: #001f40;
  --night-2: #062a51;
  --sun: #ff8617;
  --sun-deep: #e96e00;
  --green: #77a65d;
  --red: #e45b47;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  --shadow: 0 24px 60px rgba(3, 22, 45, 0.16);
  --shadow-sm: 0 10px 26px rgba(3, 22, 45, 0.1);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); letter-spacing: -0.03em; line-height: 1.05; }
h1 { font-size: clamp(43px, 4.7vw, 60px); max-width: 700px; margin-bottom: 25px; font-weight: 820; }
h2 { font-size: clamp(25px, 3.4vw, 40px); margin-bottom: 10px; font-weight: 800; }
h3 { font-size: 17px; margin-bottom: 8px; font-weight: 780; }
p { color: var(--muted); }
section { padding: 56px 0; }
.wrap { width: min(1160px, calc(100vw - 48px)); margin: 0 auto; }
.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 13px 23px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--sun), var(--sun-deep));
  color: #fff;
  box-shadow: 0 13px 26px rgba(255, 134, 23, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 32px rgba(255, 134, 23, 0.34); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: #cfd8e4;
  box-shadow: 0 10px 22px rgba(3, 22, 45, 0.08);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: #aebdcb;
  box-shadow: none;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { min-height: 54px; padding: 17px 28px; font-size: 15px; }
.btn-block { width: 100%; display: flex; }
.btn-nav { min-width: 190px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #001b3a, #051a35);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  min-width: max-content;
}
.logo .mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.logo .wm { display: grid; gap: 1px; line-height: 1; }
.logo .wm b { font-size: 26px; letter-spacing: -0.05em; }
.logo .wm span {
  color: var(--sun);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex: 1;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.15;
}
.phone b { display: block; font-size: 16px; letter-spacing: 0.03em; color: #fff; }
.phone small { display: block; margin-top: 7px; color: #9fb0c3; font-size: 12px; }
.phone-ic,
.mini-phone {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.phone-ic svg { width: 20px; height: 20px; fill: currentColor; }
.mini-phone::before,
.footer-phone .phone-ic::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 7px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 44px;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 43%, rgba(255,255,255,.82) 64%, rgba(255,255,255,.2) 100%),
    linear-gradient(0deg, #fff, #fff);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 54, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 54, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 80%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 34px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.lede {
  max-width: 43ch;
  margin-bottom: 32px;
  color: #536376;
  font-size: 21px;
  line-height: 1.55;
}
.benefit-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 32px;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 148px;
  padding: 0 21px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.benefit:first-child { padding-left: 0; }
.benefit:last-child { border-right: 0; }
.check-ic {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.check-ic::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero-form-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}
.hero-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: #647386;
  font-size: 13px;
}
.hero-note span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7c2ce;
}
.hero-visual {
  position: relative;
  min-height: 512px;
  margin-right: 0;
}
.hero-visual img {
  width: 100%;
  height: 548px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.97) contrast(1.02);
  border-radius: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 92%, transparent 100%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.78), transparent 24%, transparent 74%, rgba(255,255,255,.88));
  pointer-events: none;
}
.spec-card {
  position: absolute;
  z-index: 2;
  width: 150px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(3, 22, 45, 0.1);
  backdrop-filter: blur(8px);
}
.spec-card span {
  display: block;
  margin-bottom: 4px;
  color: #6a7787;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
}
.spec-card b {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}
.spec-size { top: 42px; right: 78px; }
.spec-save { top: 202px; right: 4px; }
.spec-payback { top: 348px; right: 42px; }

.trust-strip {
  padding: 31px 0;
  background: linear-gradient(90deg, #001b3a, #062a51);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  gap: 17px;
  padding: 0 28px;
  border-right: 1px solid var(--line-dark);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; border-right: 0; }
.trust-item b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}
.trust-item span:not(.line-icon) {
  display: block;
  color: #c5d0dd;
  font-size: 13px;
  line-height: 1.45;
}
.line-icon {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #fff;
}
.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
}
.shield::before {
  inset: 3px 7px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 90% 72%, 50% 100%, 10% 72%, 0 18%);
}
.shield::after {
  left: 15px;
  top: 13px;
  width: 7px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.storm::before {
  inset: 4px 8px;
  border: 2px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 90% 72%, 50% 100%, 10% 72%, 0 18%);
}
.storm::after {
  left: 13px;
  top: 10px;
  width: 11px;
  height: 17px;
  background: currentColor;
  clip-path: polygon(45% 0, 85% 0, 58% 42%, 86% 42%, 22% 100%, 42% 55%, 14% 55%);
}
.flag::before {
  left: 9px;
  top: 7px;
  width: 2px;
  height: 26px;
  background: currentColor;
}
.flag::after {
  left: 11px;
  top: 8px;
  width: 20px;
  height: 13px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 2px 2px 0;
}
.doc::before {
  left: 10px;
  top: 5px;
  width: 18px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.doc::after {
  left: 14px;
  top: 14px;
  width: 10px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.problem-solution { background: #fff; padding: 46px 0 28px; }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 42px;
  align-items: center;
  max-width: 900px;
}
.ps-grid h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.clean-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #4f5f71;
  font-size: 15px;
}
.clean-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.clean-list.bad li::before { content: "×"; color: var(--sun); }
.clean-list.good li::before { content: ""; background: var(--green); }
.clean-list.good li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.arrow-panel {
  display: grid;
  place-items: center;
  color: #b8c0c9;
}
.arrow-panel svg {
  width: 86px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.packages {
  padding-top: 24px;
  background: #fff;
}
.section-head { margin-bottom: 34px; }
.section-head p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 970px;
  margin: 0 auto;
}
.pcard {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(4, 24, 49, 0.05);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: #bcc9d6;
  box-shadow: var(--shadow-sm);
}
.pcard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 46px;
}
.pcard h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: .02em;
}
.pcard-head span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.pcard-media {
  height: 145px;
  display: grid;
  align-items: end;
  margin: 6px -2px 16px;
  overflow: hidden;
  border-radius: 4px;
  background: #eef4f8;
}
.pcard-media img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.98) contrast(1.02);
}
.price-row {
  display: grid;
  gap: 0;
  margin-bottom: 18px;
}
.price-row span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.price-row b {
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.pcard ul {
  flex: 1;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.pcard li {
  position: relative;
  margin: 11px 0;
  padding-left: 25px;
  color: #536376;
  font-size: 14px;
}
.pcard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}
.pcard li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 4px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.package-note {
  margin: 24px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.steps {
  background: #fff;
  padding-top: 28px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}
.step {
  position: relative;
  padding: 26px 26px 0;
  text-align: left;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 45px);
  top: 48px;
  width: calc(100% - 90px);
  height: 1px;
  background: #cfd8e2;
}
.num {
  position: absolute;
  left: 0;
  top: 37px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.step-ic {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 0 26px 40px;
  color: #26364a;
  position: relative;
}
.step-ic::before,
.step-ic::after { content: ""; position: absolute; }
.quote::before {
  inset: 0 7px 0 3px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.quote::after {
  right: 2px;
  bottom: 1px;
  width: 14px;
  height: 14px;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}
.house::before {
  left: 3px;
  top: 17px;
  width: 32px;
  height: 20px;
  border: 2px solid currentColor;
}
.house::after {
  left: 5px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}
.tools::before {
  left: 8px;
  top: 1px;
  width: 3px;
  height: 40px;
  background: currentColor;
  transform: rotate(45deg);
}
.tools::after {
  left: 22px;
  top: 1px;
  width: 3px;
  height: 40px;
  background: currentColor;
  transform: rotate(-45deg);
}
.monitor::before {
  left: 4px;
  top: 5px;
  width: 32px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.monitor::after {
  left: 17px;
  top: 30px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.step h3 {
  margin-bottom: 8px;
  font-size: 15px;
}
.step p {
  margin: 0;
  color: #5a697b;
  font-size: 13px;
  line-height: 1.55;
}

.proof {
  background: #fff;
  padding: 58px 0 30px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 8px;
}
.proof-panel,
.tcard {
  border: 1px solid var(--line);
  border-radius: 6px;
}
.proof-panel {
  padding: 42px 38px;
  background: linear-gradient(135deg, #001b3a, #062a51);
  color: #fff;
}
.proof-panel h2 {
  max-width: 11ch;
  margin-bottom: 34px;
  color: #fff;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.metric-grid b {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.metric-grid span {
  display: block;
  color: #c2cfdd;
  font-size: 11px;
  line-height: 1.35;
}
.tcard {
  padding: 36px 31px 28px;
  background: #fff;
}
.stars {
  color: var(--sun);
  letter-spacing: 4px;
  margin-bottom: 19px;
  font-size: 16px;
}
.tcard p {
  min-height: 92px;
  color: #526274;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}
.who {
  display: flex;
  align-items: center;
  gap: 13px;
}
.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7c38d, #f08529);
  color: #402000;
  font-size: 13px;
  font-weight: 900;
}
.who b { display: block; color: var(--ink); font-size: 13px; }
.who span { color: var(--muted); font-size: 12px; }

.faq-lead {
  padding: 34px 0 64px;
  background: #fff;
}
.faq-lead-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.faq-panel h2 { margin-bottom: 22px; font-size: 26px; }
.faq-list { display: grid; gap: 8px; }
details.qa {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}
details.qa summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 17px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+";
  color: #6c7988;
  font-size: 19px;
  font-weight: 400;
}
details.qa[open] summary::after { content: "-"; }
details.qa .a {
  padding: 0 17px 17px;
  color: #5a697b;
  font-size: 13px;
  line-height: 1.6;
}

.lead {
  padding: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #001b3a, #062a51);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.lead-copy h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 28px;
}
.lead-copy p {
  margin-bottom: 24px;
  color: #c5d0dd;
  font-size: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { margin-bottom: 15px; }
.field.full { grid-column: 1 / -1; }
.field label,
.field .grp-label {
  display: block;
  margin-bottom: 6px;
  color: #dbe5f0;
  font-size: 11px;
  font-weight: 750;
}
.req { color: #ffad73; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 43px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
}
.field select { color-scheme: dark; }
.field input::placeholder { color: #8fa0b5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 2px rgba(255, 134, 23, .22);
}
.field .hint { margin-top: 5px; color: #aab8c8; font-size: 12px; }
.field .msg {
  display: none;
  margin-top: 5px;
  color: #ffb19a;
  font-size: 12px;
}
.field.err .msg { display: block; }
.field.err input,
.field.err select { border-color: var(--red); }
.pillset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pill.sel {
  border-color: var(--sun);
  background: rgba(255, 134, 23, 0.14);
  color: #fff;
}
.finance-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #dbe5f0;
  font-size: 13px;
  font-weight: 650;
}
.finance-check input { accent-color: var(--sun); }
.form-legal {
  margin: 12px 0 0;
  color: #9fb0c3;
  text-align: center;
  font-size: 12px;
}
.form-success {
  display: none;
  padding: 34px 10px;
  text-align: center;
}
.form-success h3 {
  color: #fff;
  font-size: 24px;
}
.form-success p { color: #c5d0dd; }
form.sent .form-fields { display: none; }
form.sent .form-success { display: block; }

footer {
  padding: 49px 0 37px;
  background: linear-gradient(90deg, #001b3a, #062a51);
  color: #c5d0dd;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr .8fr .9fr .8fr 1.25fr;
  gap: 50px;
}
.footer-logo { margin-bottom: 15px; }
footer p {
  max-width: 260px;
  margin-bottom: 20px;
  color: #c5d0dd;
  font-size: 14px;
}
footer h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
}
footer a,
footer span {
  display: block;
  margin-bottom: 8px;
  color: #c5d0dd;
  text-decoration: none;
  font-size: 13px;
}
footer a:hover { color: #fff; }
.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.social-row span {
  width: 22px;
  height: 22px;
  border: 1px solid #c5d0dd;
  border-radius: 50%;
}
.copyright {
  margin: 0;
  color: #8091a7;
  font-size: 12px;
}
.footer-phone {
  align-items: flex-start;
  margin-bottom: 22px;
}
.footer-phone .phone-ic {
  width: 28px;
  height: 28px;
  color: #fff;
}
.footer-phone b { font-size: 20px; }
.fine-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 19px;
}
.fine-links a {
  color: #98a9bb;
  font-size: 12px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(3, 22, 45, .12);
}
.founder-lock {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 31, 64, .55);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  opacity: .35;
  transition: opacity .15s ease, transform .15s ease;
}
.founder-lock:hover,
.founder-lock:focus-visible { opacity: 1; transform: translateY(-2px); }

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  h1 { max-width: 12ch; }
  .hero-visual { margin: 10px 0 0; min-height: 460px; }
  .hero-visual img { height: 470px; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3) { padding-left: 0; }
  .pkg-grid, .proof-grid, .faq-lead-grid { grid-template-columns: 1fr; max-width: 720px; }
  .proof-grid { gap: 12px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 76px; font-size: 15px; }
  section { padding: 44px 0; }
  .wrap { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 70px; }
  .logo .wm b { font-size: 22px; }
  .nav-actions .phone { display: none; }
  .btn-nav { min-width: 0; padding: 11px 13px; font-size: 12px; }
  .hero { padding: 48px 0 26px; }
  h1 { font-size: clamp(38px, 12vw, 56px); max-width: 10ch; }
  .lede { font-size: 18px; }
  .benefit-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .benefit {
    min-width: 0;
    padding: 0;
    border-right: 0;
  }
  .hero-form-cta { align-items: stretch; flex-direction: column; }
  .hero-form-cta .btn { width: 100%; }
  .hero-visual { min-height: 340px; }
  .hero-visual img { height: 360px; border-radius: 6px; mask-image: none; }
  .hero-visual::after { display: none; }
  .spec-card { width: 134px; padding: 10px 12px; }
  .spec-card span { font-size: 9px; }
  .spec-card b { font-size: 14px; }
  .spec-size { top: 14px; right: 14px; }
  .spec-save { top: auto; right: 14px; bottom: 82px; }
  .spec-payback { top: auto; right: 14px; bottom: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(3) {
    padding: 0;
    border-right: 0;
  }
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .arrow-panel { display: none; }
  .pkg-grid { gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; }
  .step { padding: 0 0 0 46px; }
  .step:not(:last-child)::after { display: none; }
  .num { left: 0; top: 9px; }
  .step-ic { display: none; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-panel { padding: 30px 24px; }
  .tcard p { min-height: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .pillset { grid-template-columns: 1fr; }
  .lead { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta { max-width: 320px; }
  .mobile-cta { display: block; }
  .founder-lock { bottom: calc(82px + env(safe-area-inset-bottom)); }
}
