:root {
  --ink: #101923;
  --ink-soft: #334155;
  --navy: #0b1726;
  --navy-2: #13243a;
  --blue: #315cf5;
  --blue-dark: #2347c8;
  --blue-pale: #eef2ff;
  --surface: #f4f6f8;
  --surface-warm: #f7f6f3;
  --white: #ffffff;
  --muted: #667586;
  --line: #dfe5eb;
  --line-dark: rgb(255 255 255 / 14%);
  --success: #1f8a63;
  --warning: #d97706;
  --shadow-sm: 0 12px 36px rgb(15 23 42 / 8%);
  --shadow-lg: 0 28px 72px rgb(15 23 42 / 16%);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --max: 1180px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
picture {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue);
}

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

.skip:focus {
  top: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(790px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(223 229 235 / 80%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 1px 0 rgb(15 23 42 / 3%);
  backdrop-filter: blur(16px);
}

.topline {
  background: var(--navy);
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
  font-weight: 600;
}

.topline-row {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline p {
  margin: 0;
}

.topline strong {
  color: var(--white);
  font-weight: 700;
}

.topline a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.header-row {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.logo::before {
  width: 30px;
  height: 30px;
  content: "";
  background: url("/assets/img/favicon.svg") center / contain no-repeat;
  flex: 0 0 auto;
}

.logo:hover {
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 9px;
  background: var(--blue);
  box-shadow: 0 8px 20px rgb(49 92 245 / 20%);
  color: var(--white) !important;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-lines {
  position: relative;
  margin: auto;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 30%, rgb(49 92 245 / 8%), transparent 26rem),
    linear-gradient(180deg, #fbfcfd 0%, #f5f7fa 100%);
}

.hero-grid {
  display: grid;
  min-height: 0;
  padding: 28px 0 32px;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: start;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgb(49 92 245 / 11%);
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
.h1 {
  max-width: 740px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(43px, 5.3vw, 68px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.022em;
  line-height: 1.3;
}

.lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy .lead {
  max-width: 620px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.hero h1 {
  font-size: clamp(36px, 3.8vw, 52px);
}

.hero .eyebrow {
  margin-bottom: 12px;
}

.hero-price-block .price-picks {
  display: grid;
  max-width: none;
  margin-top: 0;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-price-block .price-pick {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 0;
  padding: 0 14px;
  box-shadow: none;
}

.hero-price-block .price-pick span {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-price-block .price-pick strong {
  font-size: 17px;
  line-height: 1;
}

.hero-price-block .price-pick[data-zone="near"] {
  box-shadow: inset 3px 0 0 #1f8a63;
}

.hero-price-block .price-pick[data-zone="mid"] {
  box-shadow: inset 3px 0 0 var(--blue);
}

.hero-price-block .price-pick[data-zone="far"] {
  box-shadow: inset 3px 0 0 #d97706;
}

.hero-price-block {
  display: grid;
  grid-template-columns: 11.75rem minmax(16rem, 18.5rem);
  gap: 8px 10px;
  align-items: stretch;
  max-width: 31.5rem;
  margin-top: 12px;
}

.price-map.hero-mini-map {
  display: block;
  max-width: none;
  min-height: 0;
}

.hero-mini-map .price-map-frame {
  max-width: none;
  height: auto;
  padding: 6px;
}

.hero-mini-map .price-map-canvas {
  width: 100%;
}

.hero-mini-map .price-map-canvas svg {
  width: 100%;
  height: auto;
  max-height: none;
}

.hero-mini-map .price-map-result {
  display: none;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--blue);
  box-shadow: 0 10px 26px rgb(49 92 245 / 18%);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn::after {
  content: "→";
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.btn:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
  color: var(--ink);
}

.btn-secondary::after {
  color: var(--blue);
}

.btn-secondary:hover {
  border-color: #b7c1cc;
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  background: var(--white);
  box-shadow: none;
  color: var(--navy);
}

.btn-dark:hover {
  background: var(--blue-pale);
  color: var(--navy);
}

.btn-small {
  min-height: 44px;
  padding: 9px 17px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  content: "✓";
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.hero-media {
  position: relative;
  min-height: 460px;
}

.hero-media::before {
  position: absolute;
  top: -20px;
  right: -22px;
  width: 63%;
  height: 58%;
  border-radius: var(--radius-lg);
  background: var(--blue);
  content: "";
}

.hero-media img {
  position: absolute;
  inset: 0 0 0 36px;
  width: calc(100% - 36px);
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: 50% 44%;
}

.media-card {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: min(330px, 82%);
  padding: 18px 20px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 10px;
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.media-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.media-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  place-items: center;
}

.media-card strong {
  display: block;
  font-size: 14px;
}

.media-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.trust-bar {
  background: var(--navy);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 102px;
  align-items: center;
  gap: 15px;
  padding: 20px 34px;
  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-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 7px;
  background: rgb(255 255 255 / 7%);
  color: #8fa9ff;
  font-size: 17px;
  flex: 0 0 auto;
  place-items: center;
}

.trust-item strong {
  display: block;
  font-size: 14px;
}

.trust-item span {
  display: block;
  margin-top: 2px;
  color: rgb(255 255 255 / 62%);
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 68px 0;
}

.section-soft {
  background: var(--surface);
}

.section-warm {
  background: var(--surface-warm);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head p {
  max-width: 500px;
  margin: 14px 0 0;
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgb(255 255 255 / 64%);
}

.kicker {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker-light {
  color: #8fa9ff;
}

.check-grid,
.service-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

.check-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid,
.value-grid {
  grid-template-columns: repeat(2, 1fr);
}

.check-card,
.service-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.check-card {
  min-height: 220px;
  padding: 27px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.check-card:hover {
  border-color: #bec9d5;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 7px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.check-card p,
.service-card p,
.value-card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.scope-list {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}

.scope-item {
  display: grid;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
}

.scope-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.scope-item h3 {
  font-size: 18px;
}

.scope-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

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

.detail-row {
  display: grid;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 52px;
}

.detail-heading {
  display: grid;
  align-content: start;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
}

.detail-number {
  padding-top: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.detail-heading h3 {
  font-size: 20px;
}

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

.detail-checks {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  list-style: none;
}

.detail-checks li {
  position: relative;
  padding-left: 19px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.detail-checks li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
  content: "";
}

.included-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.included-item {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.included-item:first-child {
  padding-left: 0;
}

.included-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.included-item span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.included-item strong {
  display: block;
  font-size: 16px;
}

.included-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.callout {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: var(--blue-pale);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 76px;
}

.process-media {
  position: relative;
}

.process-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.3;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.process-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 118px;
  height: 118px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgb(49 92 245 / 70%), rgb(49 92 245 / 8%)),
    var(--navy-2);
  content: "";
  transform: rotate(7deg);
}

.process-copy > p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 64%);
}

.process-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 42px 1fr;
  gap: 17px;
}

.process-number {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgb(143 169 255 / 35%);
  border-radius: 7px;
  color: #9bb2ff;
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.process-list strong {
  display: block;
  font-size: 16px;
}

.process-list p {
  margin: 5px 0 0;
  color: rgb(255 255 255 / 58%);
  font-size: 13px;
  line-height: 1.65;
}

.report-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 72px;
}

.report-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.feature-list li {
  display: grid;
  color: var(--ink-soft);
  font-size: 14px;
  grid-template-columns: 28px 1fr;
  gap: 11px;
}

.feature-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  place-items: center;
}

.report-preview {
  padding: 19px;
  border: 1px solid #d9e0e8;
  border-radius: var(--radius-lg);
  background: #e9edf2;
  box-shadow: var(--shadow-lg);
  transform: none;
}

.report-window {
  overflow: hidden;
  border-radius: 9px;
  background: var(--white);
}

.report-top {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}

.report-brand {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-id {
  color: var(--muted);
  font-size: 10px;
}

.report-car {
  padding: 24px 22px 18px;
}

.report-car strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.report-car span {
  color: var(--muted);
  font-size: 11px;
}

.report-items {
  padding: 0 22px 22px;
}

.report-row {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr 26px;
  gap: 10px;
}

.report-row strong {
  font-size: 12px;
}

.report-row span {
  color: var(--muted);
  font-size: 10px;
}

.report-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
}

.report-dot.attention {
  background: var(--warning);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 36px;
}

.service-card-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.service-card-primary h3 {
  color: var(--white);
}

.service-card-primary p {
  color: rgb(255 255 255 / 62%);
}

.service-index {
  display: block;
  margin-bottom: 52px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card-primary .service-index {
  color: #9bb2ff;
}

.service-link {
  position: absolute;
  bottom: 34px;
  left: 36px;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.service-link::after {
  margin-left: 8px;
  content: "→";
}

.service-card-primary .service-link:hover {
  color: var(--white);
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

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

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 23px 54px 23px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 5px;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--surface);
  color: var(--blue);
  content: "+";
  font-size: 20px;
  font-weight: 500;
  place-items: center;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 730px;
  margin: -5px 0 24px;
  color: var(--muted);
}

.cta-section {
  padding: 90px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 74px;
}

.cta-copy h2 {
  color: var(--white);
}

.cta-copy > p {
  max-width: 480px;
  margin: 20px 0 0;
  color: rgb(255 255 255 / 62%);
}

.cta-copy a {
  color: #c8d4ff;
}

.response-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgb(255 255 255 / 80%);
  font-size: 13px;
  font-weight: 650;
}

.response-note::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #61d6aa;
  box-shadow: 0 0 0 5px rgb(97 214 170 / 12%);
  content: "";
}

.lead-form {
  position: relative;
  display: grid;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 6%);
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.lead-form label {
  color: rgb(255 255 255 / 80%);
  font-size: 12px;
  font-weight: 700;
}

.req {
  color: #9bb2ff;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 11px;
  outline: none;
  background: rgb(255 255 255 / 9%);
  color: var(--white);
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

input {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgb(255 255 255 / 40%);
}

input:focus,
textarea:focus,
select:focus {
  border-color: #8fa9ff;
  background: rgb(255 255 255 / 12%);
  box-shadow: 0 0 0 4px rgb(49 92 245 / 17%);
}

.form-actions {
  align-items: center;
  margin-top: 2px;
  grid-column: 1 / -1;
}

.form-hint,
.hint {
  color: rgb(255 255 255 / 45%);
  font-size: 11px;
  line-height: 1.5;
}

.form-hint {
  margin: 0;
  grid-column: 1 / -1;
}

.form-hint a {
  color: rgb(255 255 255 / 70%);
}

.error {
  margin: 0;
  color: #ffaaa4;
  font-size: 12px;
  grid-column: 1 / -1;
}

.status {
  margin: 0;
  color: #78dfb7;
  font-size: 12px;
  font-weight: 700;
  grid-column: 1 / -1;
}

.site-footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 46px;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 64px;
}

.footer-about {
  max-width: 390px;
}

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

.footer-title {
  display: block;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

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

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 8px;
  color: #b5bec8;
}

.page-hero {
  padding: 48px 0 76px;
  background:
    radial-gradient(circle at 95% 15%, rgb(49 92 245 / 8%), transparent 25rem),
    var(--surface);
}

.page-hero-price {
  display: grid;
  gap: 28px;
}

.page-hero-price .price-picks {
  max-width: 400px;
  margin-top: 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: 48px;
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 62px);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 31.5rem);
  align-items: center;
  gap: 36px 48px;
}

.contact-hero .hero-price-block {
  margin-top: 0;
}

.contact-hero .lead {
  max-width: 36rem;
}

.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: start;
  gap: 76px;
}

.content-main > *:first-child,
.content-side > *:first-child {
  margin-top: 0;
}

.content-main h2,
.prose h2 {
  margin: 54px 0 17px;
  font-size: 31px;
}

.content-main h3,
.prose h3 {
  margin: 30px 0 10px;
}

.content-main p,
.content-main li,
.prose p,
.prose li {
  color: var(--ink-soft);
}

.content-main p,
.prose p {
  margin: 0 0 18px;
}

.content-main ul,
.content-main ol,
.prose ul,
.prose ol {
  margin: 0 0 24px;
  padding-left: 20px;
}

.content-main li,
.prose li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.side-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.side-card + .side-card {
  margin-top: 16px;
}

.side-card h3 {
  font-size: 17px;
}

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

.side-card a:not(.btn) {
  color: var(--blue);
}

.side-card .btn {
  width: 100%;
  margin-top: 20px;
}

.bullet-list {
  display: grid;
  margin: 20px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
  font-size: 13px;
}

.bullet-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.value-card {
  padding: 29px;
}

.value-card .card-icon {
  margin-bottom: 20px;
}

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

.city-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.city-card h3 {
  font-size: 16px;
}

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

.price-map {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

#kaina,
#kas-tikrinama,
#uzklausa {
  scroll-margin-top: 12px;
}

.price-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.price-map .price-picks {
  margin-top: 0;
}

.price-pick {
  display: grid;
  gap: 0;
  min-height: 0;
  padding: 8px 10px 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}

.price-pick span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-pick strong {
  font-size: 20px;
  line-height: 1.15;
}

.price-pick[data-zone="near"] {
  box-shadow: inset 0 3px 0 #1f8a63;
}

.price-pick[data-zone="mid"] {
  box-shadow: inset 0 3px 0 var(--blue);
}

.price-pick[data-zone="far"] {
  box-shadow: inset 0 3px 0 #d97706;
}

.price-pick:hover {
  border-color: var(--navy);
}

.price-pick.is-active {
  border-color: var(--navy);
  background: var(--surface);
}

.price-map-frame {
  position: relative;
  max-width: 520px;
  padding: 10px 8px 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.page-hero-map {
  max-width: none;
  gap: 12px;
}

.page-hero-map .price-map-frame {
  max-width: none;
}

.page-hero-map .price-map-search,
.page-hero-map .price-map-result {
  max-width: none;
}

.price-map-canvas svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(42vh, 320px);
}

.price-map-canvas path {
  cursor: pointer;
  stroke: #fff;
  stroke-width: 0.7;
  transition: opacity 160ms ease;
}

.price-map-canvas path.is-active {
  stroke: var(--navy);
  stroke-width: 2.2;
}

.price-map-canvas path.is-dim,
.price-map-labels text.is-dim {
  opacity: 0.22;
}

.price-map-labels text {
  fill: #fff;
  stroke: var(--navy);
  stroke-width: 3.2px;
  paint-order: stroke;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.price-map-labels text[data-compact="true"] {
  font-size: 11.5px;
  font-weight: 750;
  stroke-width: 2.8px;
}

.price-map-tooltip {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  max-width: 260px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.price-map-tooltip strong,
.price-map-tooltip span {
  display: block;
}

.price-map-tooltip strong {
  color: var(--navy);
  font-size: 13px;
}

.price-map-tooltip span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.price-map-search {
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.price-map-search label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.price-map-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.price-map-search input:focus {
  outline: 2px solid rgb(49 92 245 / 22%);
  border-color: var(--blue);
}

.price-map-result {
  min-height: 1.5em;
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.price-map-result.is-empty {
  color: var(--muted);
  font-weight: 500;
}

.price-map-fallback {
  margin: 24px 0;
  color: var(--muted);
}

@media (max-width: 580px) {
  .price-picks {
    gap: 6px;
    margin-top: 16px;
  }

  .price-pick {
    padding: 7px 6px 8px;
  }

  .price-pick span {
    font-size: 10px;
  }

  .price-pick strong {
    font-size: 18px;
  }

  .price-map-canvas svg {
    max-height: min(38vh, 260px);
  }

  .price-map-labels text {
    font-size: 10.5px;
    stroke-width: 2.6px;
  }

  .price-map-labels text[data-compact="true"] {
    font-size: 9.5px;
    stroke-width: 2.3px;
  }
}

.report-page-preview {
  max-width: 760px;
  margin: 54px auto 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
}

.contact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card h2 {
  font-size: 28px;
}

.contact-card p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 20px;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 7px;
}

.channel-links a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.form-channels {
  margin: 2px 0 0;
  grid-column: 1 / -1;
  color: rgb(255 255 255 / 52%);
  font-size: 13px;
  line-height: 1.7;
}

.form-channels a {
  color: rgb(255 255 255 / 90%);
  font-weight: 700;
  text-decoration: none;
  margin-left: 12px;
}

.form-channels a:hover {
  color: #fff;
}

.footer-messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-messengers a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
}

.contact-form {
  background: var(--navy);
}

.article-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-columns: 0.72fr 1.28fr;
}

.article-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.article-card-copy {
  padding: 36px;
}

.article-card-copy h2 {
  margin: 0;
  font-size: 31px;
}

.article-card-copy h2 a {
  color: var(--ink);
  text-decoration: none;
}

.article-card-copy p {
  color: var(--muted);
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.article-link::after {
  content: "→";
}

.prose {
  max-width: 790px;
}

.article-hero {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
}

.article-hero img {
  width: 100%;
  max-height: 540px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.article-meta {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.legal-note {
  padding: 17px 20px;
  border-left: 3px solid var(--blue);
  background: var(--blue-pale);
  color: var(--ink-soft);
  font-size: 13px;
}

code {
  border-radius: 5px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.9em;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1020px) {
  .nav {
    gap: 16px;
  }

  .hero-grid {
    gap: 42px;
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-media {
    min-height: 470px;
  }

  .process-grid,
  .report-grid {
    gap: 48px;
  }

  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .wrap,
  .narrow,
  .article-hero {
    width: min(100% - 32px, var(--max));
  }

  .topline {
    display: none;
  }

  .header-row {
    min-height: 68px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 26px 24px 40px;
    background: var(--white);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
    border: 0 !important;
    text-align: center;
  }

  .hero-grid,
  .process-grid,
  .report-grid,
  .cta-grid,
  .contact-hero,
  .page-hero-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 28px 0 48px;
    gap: 36px;
  }

  .hero-price-block {
    max-width: 31.5rem;
  }

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

  .hero-media {
    min-height: 500px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 84px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .process-media {
    max-width: 570px;
  }

  .report-grid {
    gap: 52px;
  }

  .report-preview {
    max-width: 680px;
  }

  .cta-grid {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .page-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .page-hero-copy {
    display: contents;
  }

  .page-hero-copy .eyebrow { order: 1; }
  .page-hero-copy h1 { order: 2; }
  .page-hero-copy .lead { order: 3; }
  .page-hero-map { order: 4; }
  .page-hero-copy .hero-actions { order: 5; }

  .content-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .side-card + .side-card {
    margin-top: 0;
  }

  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .logo {
    font-size: 15px;
  }

  .logo::before {
    width: 28px;
    height: 28px;
  }

  h1,
  .h1,
  .page-hero h1 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: 33px;
  }

  .lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-grid {
    padding-top: 28px;
  }

  .hero-price-block {
    grid-template-columns: minmax(8.25rem, 10rem) minmax(0, 1fr);
    max-width: 26rem;
  }

  .hero-price-block .price-picks {
    grid-template-columns: 1fr;
  }

  .hero-price-block .price-pick {
    padding: 0 10px;
  }

  .hero-price-block .price-pick span {
    font-size: 12px;
  }

  .hero-price-block .price-pick strong {
    font-size: 15px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero-actions {
    display: grid;
    margin-top: 20px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
    margin-top: 27px;
  }

  .hero-mini-map .price-map-canvas svg {
    max-height: 100%;
  }

  .hero-media {
    min-height: 410px;
  }

  .hero-media::before {
    top: -12px;
    right: -10px;
  }

  .hero-media img {
    left: 12px;
    width: calc(100% - 12px);
  }

  .media-card {
    bottom: 15px;
    width: 86%;
  }

  .section {
    padding: 60px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .check-grid,
  .scope-list,
  .service-grid,
  .value-grid,
  .city-grid,
  .content-side,
  .footer-grid,
  .article-card {
    grid-template-columns: 1fr;
  }

  .scope-list {
    column-gap: 0;
  }

  .detail-checks {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-item,
  .included-item:first-child,
  .included-item:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .included-item:last-child {
    border-bottom: 0;
  }

  .check-card {
    min-height: 0;
  }

  .process-grid {
    gap: 52px;
  }

  .process-media img {
    aspect-ratio: 4 / 3.7;
  }

  .process-media::after {
    right: -8px;
    bottom: -12px;
    width: 90px;
    height: 90px;
  }

  .report-preview {
    padding: 10px;
    border-radius: var(--radius);
    transform: none;
  }

  .report-row {
    grid-template-columns: 1.2fr 0.8fr 12px;
  }

  .service-card {
    min-height: 300px;
    padding: 28px;
  }

  .service-link {
    bottom: 28px;
    left: 28px;
  }

  .faq summary {
    font-size: 15px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .lead-form {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .field-full,
  .form-actions,
  .form-hint,
  .error,
  .status {
    grid-column: auto;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .btn {
    width: 100%;
  }

  .form-channels {
    grid-column: auto;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 34px 0 56px;
  }

  .page-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .content-main h2,
  .prose h2 {
    margin-top: 42px;
    font-size: 28px;
  }

  .contact-card {
    padding: 22px;
  }

  .article-card img {
    min-height: 220px;
  }

  .article-card-copy {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
