:root {
  --bg: #f7f9fc;
  --bg-soft: #eef3f7;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #5f6c7b;
  --line: #d8e2eb;
  --blue: #123b67;
  --blue-deep: #0c2a49;
  --blue-soft: #dbe8f3;
  --teal: #286d67;
  --gold: #b99350;
  --gold-light: #ead6a9;
  --success: #1e7650;
  --error: #a33b35;
  --radius: 8px;
  --shadow: 0 20px 54px rgba(18, 45, 72, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  --container: 1180px;
  --header: 74px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 22px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(140deg, rgba(219, 232, 243, 0.82), rgba(247, 249, 252, 0.46) 38%, rgba(241, 228, 202, 0.35)),
    linear-gradient(180deg, #f7f9fc, #eef3f7 50%, #fff);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: #fff;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(247, 249, 252, 0.66);
  backdrop-filter: blur(20px) saturate(145%);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(18, 59, 103, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand strong, .brand small { display: block; }
.brand strong { color: var(--blue-deep); font-weight: 850; line-height: 1.05; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .74rem; line-height: 1.1; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: #2b3139;
  font-size: .9rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  white-space: nowrap;
  transition: .2s ease;
}

.main-nav a:hover, .main-nav a:focus-visible {
  border-color: rgba(18, 59, 103, .18);
  background: rgba(255, 255, 255, .7);
  color: var(--blue);
}

.main-nav .nav-cta {
  margin-left: 5px;
  border-color: rgba(18, 59, 103, .44);
  background: rgba(255, 255, 255, .46);
  color: var(--blue);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(18, 59, 103, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-deep);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}

.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { object-fit: cover; object-position: center; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 20, 35, .88), rgba(11, 34, 58, .68) 48%, rgba(11, 34, 58, .3)),
    linear-gradient(0deg, rgba(5, 17, 30, .72), transparent 52%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .72fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100svh - var(--header));
  padding: 62px 0 122px;
}

.hero-copy { max-width: 760px; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero .eyebrow, .fear-section .eyebrow, .final-section .eyebrow { color: #f1d69d; }

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.7vw, 4.65rem);
  font-weight: 860;
  line-height: .99;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(2.1rem, 3.7vw, 3.2rem);
  font-weight: 840;
  line-height: 1.06;
  letter-spacing: -.03em;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 820;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 710px;
  margin-bottom: 16px;
  color: #f5f8fb;
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
  font-weight: 710;
}

.hero-offer {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 1.02rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(210, 179, 111, .45); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(135deg, #d8bb7d, var(--gold));
  border-color: rgba(255, 255, 255, .42);
  color: #111a25;
  box-shadow: 0 12px 30px rgba(185, 147, 80, .26), inset 0 1px rgba(255, 255, 255, .45);
}

.btn-primary:hover { background: #caa766; }

.btn-secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .46);
  color: #fff;
  backdrop-filter: blur(14px);
}

.btn-secondary:hover { background: rgba(255, 255, 255, .2); }

.btn-outline {
  width: 100%;
  border-color: rgba(18, 59, 103, .42);
  background: rgba(255, 255, 255, .5);
  color: var(--blue);
}

.hero-note {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: .88rem;
}

.passport {
  position: relative;
  overflow: hidden;
  align-self: end;
  margin-bottom: 70px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 42, 73, .8), rgba(255, 255, 255, .12));
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .25);
  backdrop-filter: blur(18px) saturate(140%);
}

.passport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 18px var(--gold-light);
  animation: scan 7s ease-in-out infinite;
}

@keyframes scan { 0%, 8% { top: -10%; opacity: 0; } 18% { opacity: .8; } 72% { top: 92%; opacity: .65; } 82%, 100% { top: 110%; opacity: 0; } }

.passport-head, .passport-score, .passport-foot, .metric {
  display: flex;
  align-items: center;
}

.passport-head { justify-content: space-between; gap: 12px; font-size: .78rem; font-weight: 820; }
.passport-mark { color: #f1d69d; }

.building-model {
  position: relative;
  height: 132px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, .2);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.building-model span { position: absolute; bottom: 20px; border: 1px solid rgba(241,214,157,.72); background: rgba(255,255,255,.06); }
.building-model span:nth-child(1) { left: 56px; width: 42px; height: 62px; }
.building-model span:nth-child(2) { left: 99px; width: 58px; height: 84px; }
.building-model span:nth-child(3) { left: 158px; width: 52px; height: 104px; }
.building-model span:nth-child(4) { left: 211px; width: 70px; height: 72px; }
.building-model span:nth-child(5) { left: 38px; right: 30px; height: 1px; border: 0; border-top: 1px solid rgba(241,214,157,.52); }

.passport-score { justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.passport-score small { display: block; color: rgba(255,255,255,.62); }
.passport-score strong { display: block; margin-top: 3px; color: #f1d69d; font-size: 2rem; line-height: 1; }
.passport-score strong span { font-size: .75rem; color: rgba(255,255,255,.62); }
.risk { padding: 7px 9px; border: 1px solid rgba(241,214,157,.38); color: #f1d69d; font-size: .72rem; }

.metric { display: grid; grid-template-columns: 1fr 82px 24px; gap: 8px; margin-top: 10px; color: rgba(255,255,255,.74); font-size: .72rem; }
.metric i, .result-line i { height: 4px; overflow: hidden; background: rgba(255,255,255,.16); }
.metric b, .result-line b { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.metric strong { color: #fff; text-align: right; }
.passport-foot { justify-content: space-between; gap: 8px; margin-top: 17px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.62); font-size: .7rem; }
.passport-foot strong { color: #f1d69d; font-size: 1rem; }

.hero-tags {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.hero-tags span {
  display: grid;
  min-height: 62px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.06));
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.section { padding: 96px 0; }
.section:nth-of-type(odd) { background: rgba(255,255,255,.48); }
.section-heading { max-width: 840px; margin-bottom: 42px; }
.lead { max-width: 760px; color: var(--muted); font-size: 1.1rem; }

.split { display: grid; grid-template-columns: minmax(0,.84fr) minmax(0,1.16fr); gap: 60px; }
.sticky { position: sticky; top: calc(var(--header) + 28px); align-self: start; }

.loss-panel, .product-grid article, .analysis-card, .problem-cards article, .format-card, .result-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 213, 226, .76);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(135%);
}

.loss-panel { padding: 14px; }
.problem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; list-style: none; }
.problem-list li { min-height: 112px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.62); color: #2b3139; font-weight: 720; }
.problem-list span { display: block; margin-bottom: 16px; color: var(--gold); font-size: .82rem; }
.loss-panel blockquote { margin: 14px 0 0; padding: 24px; background: var(--blue-deep); color: #fff; font-size: 1.3rem; font-weight: 800; line-height: 1.25; }

.pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1.1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  padding: 10px;
  border: 1px solid rgba(198, 213, 226, .76);
  border-radius: var(--radius);
  background: rgba(255,255,255,.66);
  box-shadow: var(--shadow);
}

.pipeline span, .pipeline strong { display: grid; min-height: 62px; place-items: center; padding: 8px; background: var(--bg-soft); color: var(--blue-deep); text-align: center; }
.pipeline strong { background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; }
.pipeline i { color: var(--gold); font-style: normal; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.product-grid article { min-height: 250px; padding: 22px; transition: transform .22s ease, box-shadow .22s ease; }
.product-grid article:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(18,45,72,.18); }
.product-grid article > span, .card-top span, .problem-cards article span, .process-list > li > span { color: var(--gold); font-size: .84rem; font-weight: 850; }
.product-grid h3 { margin-top: 58px; }
.product-grid p { margin-bottom: 0; color: var(--muted); }

.claim-note { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 24px 0 0; padding: 16px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.58); }
.claim-note strong { color: var(--blue-deep); }
.claim-note span { color: var(--muted); font-size: .8rem; }

.analysis-section { background: rgba(238,243,247,.72) !important; }
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.analysis-card { min-height: 330px; padding: 24px; }
.card-top { display: flex; align-items: center; justify-content: space-between; }
.card-top h3 { margin: 0; font-size: 1.45rem; }
.analysis-card > p { position: absolute; left: 24px; right: 24px; bottom: 20px; margin: 0; color: var(--muted); }

.floor-plan { position: relative; height: 140px; margin: 22px 0 100px; border: 1px solid rgba(18,59,103,.4); background: repeating-linear-gradient(0deg, transparent 0 22px, rgba(18,59,103,.08) 23px), repeating-linear-gradient(90deg, transparent 0 22px, rgba(18,59,103,.08) 23px); }
.floor-plan i { position: absolute; border: 2px solid rgba(18,59,103,.5); }
.floor-plan i:nth-child(1) { inset: 18px 52% 48% 22px; }
.floor-plan i:nth-child(2) { inset: 18px 22px 48% 50%; }
.floor-plan i:nth-child(3) { inset: 50% 62% 18px 22px; }
.floor-plan i:nth-child(4) { inset: 50% 22px 18px 36%; }

.location-map { position: relative; height: 140px; margin-top: 22px; background: linear-gradient(30deg, transparent 44%, rgba(18,59,103,.22) 45% 47%, transparent 48%), linear-gradient(-24deg, transparent 34%, rgba(18,59,103,.18) 35% 37%, transparent 38%), radial-gradient(circle at 70% 35%, rgba(185,147,80,.22), transparent 28%), var(--bg-soft); }
.location-map::after { content: ""; position: absolute; left: 66%; top: 28%; width: 18px; height: 18px; border: 5px solid var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 0 0 9px rgba(185,147,80,.14); }
.location-map i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.location-map i:nth-child(1) { left: 24%; top: 28%; }.location-map i:nth-child(2) { left: 46%; top: 65%; }.location-map i:nth-child(3) { right: 14%; bottom: 20%; }

.risk-bars { display: grid; gap: 15px; margin-top: 35px; }
.risk-bars::before, .risk-bars::after { color: var(--muted); font-size: .72rem; }
.risk-bars::before { content: "Устойчивость"; }.risk-bars::after { content: "Соответствие локации"; }
.risk-bars i { display: block; height: 15px; background: linear-gradient(90deg, var(--blue), var(--teal)); box-shadow: 0 9px 0 var(--blue-soft); }

.signal-orbit { position: relative; width: 150px; height: 150px; margin: 14px auto 0; border: 1px solid rgba(18,59,103,.25); border-radius: 50%; }
.signal-orbit::before, .signal-orbit::after { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(18,59,103,.18); border-radius: 50%; }
.signal-orbit::after { inset: 50px; background: var(--gold); border: 0; box-shadow: 0 0 0 12px rgba(185,147,80,.12); }
.signal-orbit i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.signal-orbit i:nth-child(1) { left: 18px; top: 45px; }.signal-orbit i:nth-child(2) { right: 12px; top: 70px; }.signal-orbit i:nth-child(3) { left: 72px; bottom: 4px; }

.result-layout { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: center; gap: 62px; }
.result-board { padding: 30px; background: linear-gradient(145deg, rgba(12,42,73,.98), rgba(18,59,103,.88)); color: #fff; }
.result-score { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.18); }
.result-score span { color: rgba(255,255,255,.72); }
.result-score strong { color: #f1d69d; font-size: 4rem; line-height: .9; }
.result-score small { font-size: 1rem; color: rgba(255,255,255,.6); }
.result-line { display: grid; grid-template-columns: 150px 1fr 28px; gap: 12px; align-items: center; margin-top: 22px; color: rgba(255,255,255,.76); font-size: .85rem; }
.result-line strong { color: #fff; text-align: right; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 16px 13px 45px; border-bottom: 1px solid var(--line); color: #2b3139; }
.check-list li::before { content: "✓"; position: absolute; left: 14px; color: var(--teal); font-weight: 900; }
.result-final { margin: 24px 0 0; padding: 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.7); color: var(--blue-deep); font-weight: 800; }

.audience-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-grid span { padding: 15px 18px; border: 1px solid rgba(18,59,103,.2); border-radius: 999px; background: rgba(255,255,255,.62); color: var(--blue-deep); font-weight: 760; box-shadow: inset 0 1px rgba(255,255,255,.84); }

.problem-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.problem-cards article { min-height: 190px; padding: 20px; transition: .22s ease; }
.problem-cards article:hover { transform: translateY(-3px); border-color: rgba(185,147,80,.7); box-shadow: 0 22px 56px rgba(18,45,72,.17); }
.problem-cards p { margin: 55px 0 0; color: #2b3139; font-weight: 720; }

.fear-section { background: linear-gradient(135deg, #07192a, var(--blue-deep)) !important; color: #fff; }
.fear-inner { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.fear-inner h2 { color: #fff; }
.fear-inner > div > p:last-child { max-width: 560px; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.fear-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fear-list span { min-height: 86px; display: flex; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); font-weight: 720; backdrop-filter: blur(12px); }
.fear-list span:last-child { grid-column: 1 / -1; min-height: 72px; }

.reviews-section { background: rgba(255,255,255,.52) !important; }
.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.reviews-heading .section-heading { margin-bottom: 34px; }
.reviews-total { flex: 0 0 auto; margin-bottom: 34px; padding: 16px 20px; border: 1px solid rgba(185,147,80,.42); border-radius: var(--radius); background: rgba(255,255,255,.7); box-shadow: var(--shadow); text-align: right; }
.reviews-total strong, .reviews-total span { display: block; }
.reviews-total strong { color: var(--gold); font-size: 1.25rem; letter-spacing: .08em; }
.reviews-total span { margin-top: 4px; color: var(--blue-deep); font-size: .82rem; font-weight: 800; }
.reviews-grid { columns: 2; column-gap: 16px; }
.review-card { display: inline-block; width: 100%; margin: 0 0 16px; padding: 24px; break-inside: avoid; border: 1px solid rgba(198,213,226,.76); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,.56)); box-shadow: var(--shadow); vertical-align: top; }
.review-card[hidden] { display: none; }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.review-top h3 { max-width: 78%; margin: 0; color: var(--blue-deep); font-size: 1.04rem; }
.review-rating { flex: 0 0 auto; margin: 0; color: var(--gold); font-size: .9rem; letter-spacing: .04em; white-space: nowrap; }
.review-role { margin: 14px 0 0; color: var(--muted); font-size: .82rem; font-weight: 700; }
.review-card blockquote { margin: 18px 0 0; color: #2b3139; font-size: .96rem; line-height: 1.65; }
.review-card blockquote p { margin: 0; }
.review-card blockquote p + p { margin-top: 12px; }
.reviews-action { display: flex; justify-content: center; margin-top: 20px; }
.reviews-toggle { min-width: 280px; }

.format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.format-card { display: flex; flex-direction: column; min-height: 580px; padding: 26px; }
.format-card.featured { transform: translateY(-12px); border-color: rgba(185,147,80,.72); box-shadow: 0 28px 70px rgba(18,45,72,.2); }
.format-number { margin-bottom: 30px; color: var(--gold); font-size: .86rem; font-weight: 850; }
.format-card h3 { font-size: 1.8rem; color: var(--blue-deep); }
.format-for { min-height: 76px; color: var(--muted); }
.format-card ul { display: grid; gap: 11px; margin: 10px 0 22px; padding: 0; list-style: none; }
.format-card li { position: relative; padding-left: 24px; color: #2b3139; }
.format-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.format-output { margin-top: auto; padding: 15px 0; border-top: 1px solid var(--line); color: var(--blue); font-weight: 750; }
.format-label { position: absolute; top: 20px; right: 20px; padding: 7px 9px; background: var(--gold); color: #101a24; font-size: .72rem; font-weight: 850; }

.comparison { display: grid; grid-template-columns: .85fr 1.15fr; gap: 16px; }
.comparison article { display: grid; gap: 9px; padding: 28px; border: 1px solid var(--line); background: rgba(255,255,255,.64); }
.comparison h3 { margin-bottom: 18px; font-size: 1.5rem; color: var(--blue-deep); }
.comparison span { padding: 11px 14px; border-left: 2px solid var(--line); background: rgba(238,243,247,.7); }
.comparison-strong { background: linear-gradient(145deg, var(--blue-deep), var(--blue)) !important; color: #fff; }
.comparison-strong h3 { color: #fff; }
.comparison-strong span { border-color: var(--gold); background: rgba(255,255,255,.08); }
.comparison-note { margin: 24px 0 0; color: var(--blue-deep); font-size: 1.3rem; font-weight: 820; }

.process-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; min-height: 240px; padding: 24px 24px 24px 0; border-top: 2px solid var(--line); }
.process-list li::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(185,147,80,.15); }
.process-list h3 { margin-top: 48px; }
.process-list p { color: var(--muted); }

.request-section { background: linear-gradient(140deg, rgba(219,232,243,.8), rgba(255,255,255,.76)) !important; }
.request-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 58px; align-items: start; }
.request-copy { position: sticky; top: calc(var(--header) + 28px); }
.request-points { display: grid; gap: 10px; margin-top: 32px; }
.request-points span { padding: 13px 16px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.54); color: var(--blue-deep); font-weight: 720; }

.lead-form { padding: 28px; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius); background: rgba(255,255,255,.7); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.selected-format { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; padding: 13px 15px; background: var(--blue-soft); color: var(--blue-deep); }
.selected-format button { margin-left: auto; padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--blue); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid label, .form-grid fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-grid label > span, .form-grid legend { display: block; margin-bottom: 7px; color: var(--blue-deep); font-size: .86rem; font-weight: 780; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #c9d5df; border-radius: 6px; outline: 0; background: rgba(255,255,255,.84); color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18,59,103,.1); }
.form-grid .is-invalid { border-color: var(--error); box-shadow: 0 0 0 3px rgba(163,59,53,.08); }
.full { grid-column: 1 / -1; }
.goal-control { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; width: 100%; min-width: 0; }
.goal-control label { position: relative; }
.goal-control input { position: absolute; opacity: 0; pointer-events: none; }
.goal-control label > span { display: grid; width: 100%; min-width: 0; min-height: 50px; place-items: center; margin: 0; padding: 7px 4px; border: 1px solid #c9d5df; background: rgba(255,255,255,.7); color: var(--blue); font-size: .78rem; line-height: 1.15; overflow-wrap: anywhere; text-align: center; cursor: pointer; }
.goal-control input:checked + span { border-color: var(--blue); background: var(--blue); color: #fff; }
.goal-control input:focus-visible + span { box-shadow: 0 0 0 3px rgba(18,59,103,.18); }
.privacy { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 0; color: var(--muted); font-size: .8rem; }
.privacy input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue); }
.privacy a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.form-error { min-height: 22px; margin: 10px 0 0; color: var(--error); font-size: .85rem; }
.submit-btn { width: 100%; }
.submit-btn:disabled { cursor: wait; opacity: .7; transform: none; }
.form-success { margin-top: 14px; padding: 18px; border: 1px solid rgba(30,118,80,.28); background: rgba(30,118,80,.08); color: var(--success); }
.form-success strong, .form-success span { display: block; }
.form-success strong { margin-bottom: 4px; font-size: 1.1rem; }

.final-section { padding: 88px 0; background: linear-gradient(135deg, #07192a, var(--blue-deep)); color: #fff; }
.final-inner { max-width: 900px; text-align: center; }
.final-inner h2 { color: #fff; }
.final-inner > p:not(.eyebrow) { max-width: 710px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.site-footer { padding: 30px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.7); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-links { display: flex; gap: 18px; color: var(--muted); font-size: .82rem; }
.footer-links a:hover { color: var(--blue); }
.footer-inner > p { margin: 0; color: var(--muted); font-size: .82rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .main-nav { font-size: .82rem; }
  .main-nav a { padding-inline: 8px; }
  .hero-inner { grid-template-columns: minmax(0,1fr) 330px; gap: 30px; }
  .product-grid, .problem-cards { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .format-card { padding: 22px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner > p { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header: 68px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand img { width: 58px; height: 58px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    justify-items: stretch;
    gap: 4px;
    max-height: calc(100svh - var(--header));
    overflow: auto;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; min-height: 48px; justify-content: flex-start; padding-inline: 15px; font-size: 1rem; }
  .main-nav .nav-cta { margin: 4px 0 0; justify-content: center; background: var(--blue); color: #fff; }
  .hero-inner { grid-template-columns: 1fr; padding: 64px 0 160px; }
  .passport { width: min(100%, 520px); margin: 0; }
  .hero-tags { bottom: 26px; grid-template-columns: repeat(3,1fr); }
  .hero-tags span:nth-child(n+4) { display: none; }
  .split, .result-layout, .fear-inner, .request-layout { grid-template-columns: 1fr; gap: 38px; }
  .reviews-heading { align-items: flex-start; flex-direction: column; gap: 0; }
  .reviews-total { margin-top: -14px; text-align: left; }
  .sticky, .request-copy { position: static; }
  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-card { min-height: 320px; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card, .format-card.featured { min-height: auto; transform: none; }
  .format-for { min-height: 0; }
  .comparison { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 8px; }
  .footer-inner > p { grid-column: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand small { display: none; }
  .brand strong { max-width: 130px; font-size: .88rem; }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .hero-inner { align-items: start; padding-top: 54px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .passport { padding: 18px; }
  .building-model { height: 112px; }
  .building-model span:nth-child(1) { left: 28px; }
  .building-model span:nth-child(2) { left: 70px; }
  .building-model span:nth-child(3) { left: 129px; }
  .building-model span:nth-child(4) { left: 182px; right: 22px; width: auto; }
  .hero-tags { grid-template-columns: 1fr 1fr; }
  .hero-tags span:nth-child(3) { display: none; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline i { transform: rotate(90deg); text-align: center; }
  .pipeline span, .pipeline strong { min-height: 52px; }
  .product-grid, .problem-cards, .problem-list, .fear-list, .process-list { grid-template-columns: 1fr; }
  .fear-list span:last-child { grid-column: auto; min-height: 86px; }
  .reviews-grid { columns: 1; }
  .review-card { padding: 20px; }
  .review-top { display: block; }
  .review-top h3 { max-width: none; }
  .review-rating { margin-top: 9px; }
  .reviews-toggle { width: 100%; min-width: 0; }
  .product-grid article { min-height: 220px; }
  .loss-panel blockquote { font-size: 1.15rem; }
  .claim-note { align-items: flex-start; flex-direction: column; }
  .analysis-card { min-height: 370px; }
  .analysis-card > p { font-size: .95rem; }
  .result-line { grid-template-columns: 120px 1fr 26px; }
  .result-score strong { font-size: 3.3rem; }
  .process-list { gap: 0; padding-left: 24px; }
  .process-list li { min-height: auto; padding: 0 0 36px 26px; border-top: 0; border-left: 2px solid var(--line); }
  .process-list li::before { top: 4px; left: -7px; }
  .process-list h3 { margin-top: 24px; }
  .lead-form { padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .goal-control { grid-template-columns: 1fr; }
  .goal-control label > span { min-height: 48px; }
  .selected-format { align-items: flex-start; flex-wrap: wrap; }
  .selected-format button { margin-left: 0; }
  .final-actions { display: grid; }
  .final-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .hero-note { font-size: .82rem; }
  .passport-head { align-items: flex-start; flex-direction: column; }
  .metric { grid-template-columns: 1fr 60px 22px; }
  .building-model span:nth-child(4) { display: none; }
  .analysis-card { padding: 20px; }
  .analysis-card > p { left: 20px; right: 20px; }
  .result-board { padding: 20px; }
  .result-line { grid-template-columns: 100px 1fr 24px; gap: 8px; font-size: .76rem; }
  .audience-grid span { width: 100%; border-radius: var(--radius); }
}

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