@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&display=swap");

:root {
  --canvas: #fff;
  --surface-soft: #f4f6f8;
  --surface: #f7f8fa;
  --ink-deep: #0a1317;
  --ink: #1c252b;
  --charcoal: #394047;
  --slate: #5e6670;
  --steel: #7c848d;
  --hairline: #d8dde3;
  --hairline-soft: #e9edf2;
  --primary: #0064e0;
  --primary-deep: #0143b5;
  --success: #0f8f55;
  --warning: #f7b928;
  --critical: #d92d20;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --radius-xxl: 24px;
  --radius-xxxl: 32px;
  --radius-full: 100px;
  --container: 1280px;
  --block-gap: 40px;
  --block-shadow: rgba(20,22,26,.10) 0 18px 44px;
  --body-font: Montserrat, Helvetica, Arial, "Noto Sans", sans-serif;
  --display-font: "Manrope", Montserrat, Helvetica, Arial, "Noto Sans", sans-serif;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink-deep);
  background: var(--canvas);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
.page { min-height: 100vh; background: var(--canvas); }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }

.promo {
  background: var(--ink-deep);
  color: var(--canvas);
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}
.topbar-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
  justify-self: start;
}
.nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-self: center;
}
.nav-pills a,
.button-primary,
.button-secondary,
.button-ghost {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.nav-pills a {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  color: var(--ink);
}
.nav-pills a.is-active {
  border-color: var(--ink-deep);
  background: var(--ink-deep);
  color: var(--canvas);
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}
.button-primary {
  border: 0;
  padding: 14px 30px;
  background: var(--ink-deep);
  color: var(--canvas);
}
.button-secondary {
  border: 2px solid var(--ink-deep);
  padding: 12px 28px;
  background: transparent;
  color: var(--ink-deep);
}
.button-ghost {
  border: 2px solid rgba(10,19,23,.12);
  padding: 10px 22px;
  background: transparent;
  color: var(--ink-deep);
}

.hero {
  padding: 32px 0 var(--block-gap);
}
.hero-card {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-xxxl);
  padding: 58px 56px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(244,248,255,.96) 100%),
    radial-gradient(circle at 86% 18%, rgba(0,100,224,.14), transparent 34%);
  border: 1px solid var(--hairline-soft);
  box-shadow: var(--block-shadow);
}
@keyframes heroOfferIn {
  from {
    opacity: .72;
    transform: translateY(10px) scale(.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes offerPanelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes offerSideIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes noticeIn {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
  70% {
    opacity: 1;
    transform: translateY(1px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes chipReturn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content {
  max-width: 540px;
  color: var(--ink-deep);
}
.hero-card.is-precheck-complete {
  display: block;
  min-height: auto;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,248,251,.98)),
    radial-gradient(circle at 88% 18%, rgba(0,100,224,.10), transparent 32%);
  animation: heroOfferIn .42s cubic-bezier(.2,.72,.2,1) both;
}
.hero-card.is-precheck-complete .hero-content {
  max-width: none;
}
.hero-card.is-precheck-complete .eyebrow,
.hero-card.is-precheck-complete h1,
.hero-card.is-precheck-complete .hero-lead,
.hero-card.is-precheck-complete .lookup-meta,
.hero-card.is-precheck-complete .hero-visual {
  display: none;
}
.hero-card.is-precheck-complete .lookup-panel {
  width: 100%;
  margin: 0;
}
.hero-card.is-precheck-complete .precheck-offer {
  min-height: 430px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  border: 0;
  border-radius: var(--radius-xxxl);
  box-shadow: none;
  background: transparent;
}
.hero-card.is-precheck-complete .precheck-offer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  animation: offerPanelIn .46s cubic-bezier(.2,.72,.2,1) .05s both;
}
.hero-card.is-precheck-complete .precheck-title {
  max-width: 620px;
  font-family: var(--display-font);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 700;
}
.hero-card.is-precheck-complete .precheck-note {
  max-width: 620px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.5;
}
.hero-card.is-precheck-complete .precheck-specs {
  max-width: 620px;
  margin-top: 24px;
}
.hero-card.is-precheck-complete .precheck-offer-side {
  margin: 12px;
  border-radius: var(--radius-xxl);
  padding: clamp(28px, 4vw, 42px);
  animation: offerSideIn .46s cubic-bezier(.2,.72,.2,1) .12s both;
}
.hero-card.is-precheck-complete .precheck-price {
  margin-top: 18px;
  font-family: var(--display-font);
  font-size: clamp(58px, 8vw, 94px);
  line-height: .95;
  font-weight: 700;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  font-feature-settings: "ss01", "ss02";
  letter-spacing: 0;
}
h1, h2 {
  font-family: var(--display-font);
  font-weight: 700;
}
h1 {
  font-size: clamp(31px, 3.6vw, 46px);
  line-height: 1.08;
  max-width: 530px;
}
.hero-lead {
  margin: 16px 0 0;
  max-width: 500px;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.44;
}
.lookup-panel {
  width: min(540px, 100%);
  margin: 28px 0 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.92);
  padding: 8px;
  box-shadow: rgba(20,22,26,.08) 0 10px 30px;
}
.lookup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.lookup-input {
  width: 100%;
  height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 0 18px;
  color: var(--ink);
  background: var(--surface);
  text-transform: uppercase;
  outline: none;
}
.lookup-input::placeholder {
  color: var(--steel);
  text-transform: none;
}
.lookup-input:focus { border: 2px solid var(--primary-deep); }
.lookup-panel.has-precheck-offer {
  width: min(680px, 100%);
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.lookup-panel.has-precheck-offer .lookup-form {
  display: none;
}
.precheck-result {
  display: none;
  margin-top: 10px;
}
.lookup-panel.has-precheck-offer .precheck-result {
  margin-top: 0;
}
.precheck-result.is-visible {
  display: block;
}
.lookup-meta.has-notice .chip {
  display: none;
}
.lookup-meta:not(.has-notice) .chip {
  animation: chipReturn .24s ease both;
}
.lookup-notice {
  width: min(540px, 100%);
  border: 1px solid rgba(24,33,48,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  padding: 13px 15px;
  box-shadow: rgba(20,22,26,.08) 0 10px 30px;
  color: var(--ink);
  animation: noticeIn .28s cubic-bezier(.2,.72,.2,1) both;
}
.price-offer-copy > .lookup-notice {
  margin-top: 14px;
}
.lookup-notice strong {
  display: block;
  color: var(--ink-deep);
  font-size: 15px;
  line-height: 1.25;
}
.lookup-notice span {
  display: block;
  margin-top: 5px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.38;
}
.precheck-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,248,251,.98)),
    radial-gradient(circle at 90% 8%, rgba(0,100,224,.10), transparent 28%);
  box-shadow: rgba(20,22,26,.12) 0 18px 44px;
  animation: offerPanelIn .36s cubic-bezier(.2,.72,.2,1) both;
}
.precheck-offer-main {
  min-width: 0;
  padding: 22px;
}
.precheck-kicker {
  margin: 0 0 8px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.precheck-title {
  margin: 0;
  color: var(--ink-deep);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.precheck-note {
  margin: 9px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
}
.precheck-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.precheck-spec {
  min-width: 0;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(24,33,48,.08);
  padding: 10px 12px;
}
.precheck-spec span {
  display: block;
  color: var(--steel);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.precheck-spec strong {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
}
.precheck-offer-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  margin: 10px;
  border-radius: 22px;
  padding: 20px;
  color: var(--canvas);
  background: var(--ink-deep);
}
.precheck-price-label {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.precheck-price {
  margin-top: 6px;
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
}
.precheck-price span {
  font-size: 18px;
  color: rgba(255,255,255,.78);
}
.precheck-side-note {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.35;
}
.precheck-actions {
  display: grid;
  gap: 8px;
}
.precheck-email {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius-full);
  padding: 0 14px;
  color: var(--canvas);
  background: rgba(255,255,255,.08);
  outline: none;
}
.precheck-email::placeholder {
  color: rgba(255,255,255,.62);
}
.precheck-email:focus {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.12);
}
.precheck-email.is-invalid {
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 0 0 2px rgba(217,45,32,.42);
}
.precheck-email-error {
  display: none;
  margin: -2px 0 2px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.precheck-email-error.is-visible {
  display: block;
}
.precheck-actions .button-buy,
.precheck-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.precheck-actions .button-buy {
  background: var(--canvas);
  color: var(--ink-deep);
}
.precheck-secondary {
  border: 1px solid rgba(255,255,255,.24);
  color: var(--canvas);
  background: transparent;
  cursor: pointer;
}
.button-buy {
  min-height: 52px;
  border: 0;
  border-radius: var(--radius-full);
  padding: 14px 30px;
  background: var(--ink-deep);
  color: var(--canvas);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.button-buy:active { background: var(--primary-deep); }
.lookup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  background: #e8edf2;
  color: var(--charcoal);
  text-decoration: none;
}

.hero-visual {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-xxxl);
  border: 1px solid var(--hairline-soft);
  background: #eef2f5;
}
.hero-visual .car-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual .car-full { z-index: 1; }
.hero-visual .car-break {
  z-index: 2;
  clip-path: polygon(7% 24%, 61% 22%, 60% 78%, 6% 82%);
  filter: saturate(.96) contrast(1.04);
  -webkit-mask-image: radial-gradient(ellipse at 31% 55%, #000 0 43%, rgba(0,0,0,.86) 56%, transparent 72%);
  mask-image: radial-gradient(ellipse at 31% 55%, #000 0 43%, rgba(0,0,0,.86) 56%, transparent 72%);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 38%, rgba(255,255,255,.18)),
    radial-gradient(ellipse at 31% 55%, rgba(0,100,224,.18), transparent 42%);
  pointer-events: none;
}
.scan-frame {
  position: absolute;
  z-index: 4;
  left: 7%;
  top: 24%;
  width: 54%;
  height: 58%;
  border: 1px solid rgba(0,100,224,.58);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.42),
    0 16px 42px rgba(0,100,224,.14);
  background: linear-gradient(180deg, rgba(0,100,224,.08), rgba(255,255,255,.02));
  pointer-events: none;
}
.scan-beam {
  position: absolute;
  left: 7.5%;
  top: 52%;
  z-index: 5;
  width: 53%;
  height: 2px;
  border-radius: 0;
  background: rgba(0, 100, 224, .92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .75),
    0 0 20px rgba(0, 100, 224, .65),
    0 0 44px rgba(0, 100, 224, .30);
  pointer-events: none;
}
.scan-beam::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -38px;
  height: 76px;
  background: linear-gradient(180deg, transparent, rgba(0,100,224,.16), transparent);
}
.scan-caption,
.photo-badge {
  position: absolute;
  z-index: 5;
  color: var(--canvas);
  background: rgba(10,19,23,.78);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(12px);
}
.scan-caption {
  left: 24px;
  top: 24px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
}
.photo-badge {
  right: 22px;
  bottom: 22px;
  max-width: 230px;
  border-radius: var(--radius-xxl);
  padding: 18px 20px;
}
.photo-badge strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 500;
}
.photo-badge span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.35;
}

.benefits-section {
  padding: 0 0 var(--block-gap);
}
.benefits-block {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 32px;
  align-items: center;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-xxxl);
  padding: 52px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(244,248,255,.96) 100%),
    radial-gradient(circle at 88% 16%, rgba(10,19,23,.06), transparent 34%);
  box-shadow: var(--block-shadow);
}
.benefits-copy {
  max-width: 520px;
}
.benefits-label {
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.benefits-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.16;
}
.benefits-copy p {
  max-width: 500px;
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 16px;
}
.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.benefits-rows {
  display: grid;
  gap: 10px;
}
.benefits-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-xl);
  padding: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: rgba(20,22,26,.04) 0 8px 24px;
}
.benefits-number {
  position: relative;
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 50%;
  color: transparent;
  background: var(--ink-deep);
  box-shadow: rgba(20,22,26,.12) 0 8px 18px;
  overflow: hidden;
}
.benefits-number::before {
  content: attr(data-number);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--canvas);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.benefits-row strong {
  display: block;
  color: var(--ink-deep);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}
.benefits-row span {
  display: block;
  margin-top: 6px;
  color: var(--slate);
  font-size: 14px;
}

.check-hotspots-section {
  padding: 0 0 var(--block-gap);
}
.check-hotspots {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xxxl);
  color: var(--canvas);
  background: var(--ink-deep);
  border: 1px solid var(--hairline-soft);
  box-shadow: var(--block-shadow);
}
.check-hotspots img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.86) contrast(1.02);
}
.check-hotspots::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,19,23,.96) 0%, rgba(10,19,23,.66) 44%, rgba(10,19,23,.24) 100%),
    radial-gradient(circle at 66% 42%, rgba(0,100,224,.28), transparent 30%);
}
.check-hotspots-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
  gap: 38px;
  align-items: center;
  padding: 56px;
}
.check-hotspots-copy {
  max-width: 540px;
}
.check-hotspots-label {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.check-hotspots-copy h2 {
  color: var(--canvas);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.16;
}
.check-hotspots-copy p {
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}
.check-hotspots-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.check-hotspots .button-primary {
  color: var(--ink-deep);
  background: var(--canvas);
}
.check-hotspots .button-ghost {
  color: var(--canvas);
  border-color: rgba(255,255,255,.22);
}
.check-hotspots-map {
  position: relative;
  min-height: 430px;
}
.check-hotspot-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
}

.check-hotspot-point.damage {
  left: 0%;
  top: 31%;
}
.check-hotspot-point.usage {
  left: 32%;
  top: 6%;
}
.check-hotspot-point.docs {
  right: 17%;
  top: 56%;
  flex-direction: row-reverse;
}
.check-hotspot-pin {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--canvas);
  box-shadow:
    0 0 0 8px rgba(255,255,255,.18),
    0 0 34px rgba(0,100,224,.64);
}
.check-hotspot-card {
  width: 250px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-xl);
  padding: 16px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.check-hotspot-card strong {
  display: block;
  color: var(--canvas);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}
.check-hotspot-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.38;
}

.section {
  padding: 72px 0;
}
.price-section {
  padding-top: 0;
}
.section.soft { background: var(--surface); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.28;
}
.section-note {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 15px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card,
.price-card {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-xl);
  background: var(--canvas);
  padding: 24px;
}
.feature-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink-deep);
  font-weight: 800;
}
h3 {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 700;
}
.feature-card p,
.price-card p {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 14px;
}
.price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
}
.price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  background: var(--warning);
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.price {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 500;
}
.price-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--slate);
  font-size: 14px;
}
.price-card.featured {
  border-radius: var(--radius-xxl);
  box-shadow: rgba(20,22,26,.3) 0 1px 4px;
}
.price-card.featured .button-buy { width: 100%; margin-top: auto; }
.packages-section {
  padding: 0 0 var(--block-gap);
  background: var(--canvas);
}
.packages-bundle {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-xxxl);
  background: #fff;
  box-shadow: var(--block-shadow);
}
.packages-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid var(--hairline-soft);
  background: linear-gradient(135deg, #f1f7ff 0%, #f6faff 58%, #fbfdff 100%);
}
.packages-kicker {
  margin: 0 0 12px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.packages-side h2 {
  max-width: 360px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}
.packages-side p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.5;
}
.packages-grid {
  display: grid;
  gap: 10px;
  padding: 14px;
}
.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-xxl);
  background: #f8fafc;
  padding: 16px;
}
.package-row.is-featured {
  border-color: rgba(0,100,224,.34);
  background: #fff;
  box-shadow: rgba(20,22,26,.06) 0 10px 28px;
}
.package-row-name {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}
.package-row-meta {
  margin-top: 5px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.42;
}
.package-row-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--display-font);
  color: var(--ink-deep);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.package-row-old-price {
  color: var(--steel);
  font-size: 16px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(217,45,32,.72);
}
.package-row-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--ink-deep);
  color: var(--canvas);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.price-offer {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 32px;
  align-items: stretch;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-xxxl);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,248,251,.98)),
    radial-gradient(circle at 88% 18%, rgba(0,100,224,.10), transparent 32%);
  box-shadow: var(--block-shadow);
}
.price-offer.is-precheck-complete {
  display: block;
  animation: heroOfferIn .42s cubic-bezier(.2,.72,.2,1) both;
}
.price-offer.is-precheck-complete .price-offer-copy {
  padding: 0;
}
.price-offer.is-precheck-complete .price-offer-kicker,
.price-offer.is-precheck-complete .price-offer-copy > h2,
.price-offer.is-precheck-complete .price-offer-copy > p,
.price-offer.is-precheck-complete .price-offer-form,
.price-offer.is-precheck-complete .price-offer-panel {
  display: none;
}
.price-offer.is-precheck-complete .precheck-result {
  display: block;
  margin-top: 0;
}
.price-offer.is-precheck-complete .precheck-offer {
  min-height: 430px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  border: 0;
  border-radius: var(--radius-xxxl);
  box-shadow: none;
  background: transparent;
}
.price-offer.is-precheck-complete .precheck-offer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  animation: offerPanelIn .46s cubic-bezier(.2,.72,.2,1) .05s both;
}
.price-offer.is-precheck-complete .precheck-title {
  max-width: 620px;
  font-family: var(--display-font);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 700;
}
.price-offer.is-precheck-complete .precheck-note {
  max-width: 620px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.5;
}
.price-offer.is-precheck-complete .precheck-specs {
  max-width: 620px;
  margin-top: 24px;
}
.price-offer.is-precheck-complete .precheck-offer-side {
  margin: 12px;
  border-radius: var(--radius-xxl);
  padding: clamp(28px, 4vw, 42px);
  animation: offerSideIn .46s cubic-bezier(.2,.72,.2,1) .12s both;
}
.price-offer.is-precheck-complete .precheck-price {
  margin-top: 18px;
  font-family: var(--display-font);
  font-size: clamp(58px, 8vw, 94px);
  line-height: .95;
  font-weight: 700;
}
.price-offer-copy {
  padding: clamp(32px, 4vw, 58px);
  align-self: center;
}
.price-offer-kicker {
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.price-offer-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
}
.price-offer-copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.5;
}
.price-offer-form {
  max-width: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 28px;
  padding: 8px;
  border: 1px solid var(--hairline-soft);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.92);
  box-shadow: rgba(20,22,26,.08) 0 10px 30px;
}
.price-offer-input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 0 18px;
  color: var(--ink);
  background: var(--surface);
  text-transform: uppercase;
  outline: none;
}
.price-offer-input:focus {
  border: 2px solid var(--primary-deep);
}
.price-offer-input::placeholder {
  color: var(--steel);
  text-transform: none;
}
.price-offer-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 12px;
  border-radius: var(--radius-xxl);
  padding: clamp(28px, 4vw, 42px);
  color: var(--canvas);
  background: var(--ink-deep);
}
.price-offer-label {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.price-offer-value {
  margin-top: 18px;
  font-family: var(--display-font);
  font-size: clamp(58px, 8vw, 94px);
  line-height: .95;
  font-weight: 700;
  letter-spacing: 0;
}
.price-offer-value span {
  font-size: .42em;
  font-weight: 700;
}
.price-offer-note {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
}
.price-offer-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.price-offer-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.price-offer-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
}
@media (max-width: 1023px) {
  .nav-pills { display: none; }
  .hero-card {
    grid-template-columns: 1fr;
    padding: 56px 28px 32px;
  }
  .hero-content {
    max-width: none;
  }
  .hero-visual {
    min-height: 360px;
  }
  .benefits-block {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .benefits-copy {
    max-width: none;
  }
  .check-hotspots-content {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .check-hotspots,
  .check-hotspots-content {
    min-height: auto;
  }
  .check-hotspots-copy {
    max-width: none;
  }
  .check-hotspots-map {
    min-height: 360px;
  }
  .price-offer {
    grid-template-columns: 1fr;
  }
  .packages-bundle {
    grid-template-columns: 1fr;
  }
  .packages-side {
    border-right: 0;
    border-bottom: 1px solid var(--hairline-soft);
  }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  :root { --block-gap: 28px; }
  .container { width: min(100% - 32px, var(--container)); }
  .promo { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar-inner {
    min-height: 60px;
    grid-template-columns: 1fr auto;
    padding: 10px 0;
  }
  .nav-pills {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .topbar-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .topbar-actions .button-ghost {
    min-height: 40px;
    padding: 8px 14px;
  }
  .hero { padding: 16px 0 var(--block-gap); }
  .hero-card {
    min-height: auto;
    border-radius: var(--radius-xxl);
  }
  h1 { font-size: 36px; line-height: 1.2; }
  .lookup-panel {
    width: 100%;
    margin-top: 24px;
    border-radius: var(--radius-xxl);
  }
  .lookup-form { grid-template-columns: 1fr; }
  .button-buy { width: 100%; }
  .precheck-offer {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .hero-card.is-precheck-complete .precheck-offer {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: var(--radius-xxl);
  }
  .price-offer.is-precheck-complete .precheck-offer {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: var(--radius-xxl);
  }
  .hero-card.is-precheck-complete .precheck-offer-main {
    padding: 28px 20px;
  }
  .price-offer.is-precheck-complete .precheck-offer-main {
    padding: 28px 20px;
  }
  .hero-card.is-precheck-complete .precheck-title {
    font-size: 32px;
  }
  .price-offer.is-precheck-complete .precheck-title {
    font-size: 32px;
  }
  .precheck-offer-main {
    padding: 18px;
  }
  .precheck-title {
    font-size: 21px;
  }
  .precheck-specs {
    grid-template-columns: 1fr;
  }
  .precheck-offer-side {
    margin: 0 10px 10px;
    padding: 18px;
  }
  .precheck-price {
    font-size: 34px;
  }
  .hero-visual {
    min-height: 300px;
    border-radius: var(--radius-xxl);
  }
  .benefits-section {
    padding: 0 0 var(--block-gap);
  }
  .benefits-block {
    border-radius: var(--radius-xxl);
    padding: 28px 20px;
  }
  .benefits-row {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
  }
  .benefits-actions {
    display: grid;
  }
  .check-hotspots-section {
    padding: 0 0 var(--block-gap);
  }
  .check-hotspots {
    border-radius: var(--radius-xxl);
  }
  .check-hotspots-content {
    padding: 28px 20px;
  }
  .check-hotspots-map {
    min-height: auto;
  }
  .check-hotspot-point,
  .check-hotspot-point.docs {
    position: static;
    width: auto;
    flex-direction: row;
    margin-bottom: 10px;
  }
  .check-hotspot-card {
    width: 100%;
  }
  .check-hotspots-actions {
    display: grid;
  }
  .packages-section {
    padding: 0 0 var(--block-gap);
  }
  .package-row {
    grid-template-columns: 1fr;
  }
  .package-row-price {
    white-space: normal;
  }
  .price-offer {
    border-radius: var(--radius-xxl);
  }
  .price-offer-copy {
    padding: 28px 20px 8px;
  }
  .price-offer-panel {
    margin: 0;
    border-radius: 0;
    padding: 28px 20px;
  }
  .price-offer-form {
    grid-template-columns: 1fr;
    border-radius: var(--radius-xxl);
  }
  .price-offer-form .button-buy {
    width: 100%;
  }
  .scan-caption {
    left: 14px;
    top: 14px;
  }
  .photo-badge {
    right: 14px;
    bottom: 14px;
    max-width: 190px;
    padding: 14px 16px;
  }
  .section { padding: 56px 0; }
  .price-section { padding-top: 0; }
  .section-header { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
