:root {
  --bg: #050607;
  --bg-soft: #0d1012;
  --panel: #111519;
  --panel-light: #181d22;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f9fb;
  --muted: #a9b2bc;
  --blue: #1797ff;
  --blue-soft: #72c8ff;
  --red: #ff3b32;
  --amber: #ffb33b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(23, 151, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #030405 0%, #0a0c0e 42%, #050607 100%);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 16px max(16px, calc((100vw - 1180px) / 2));
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  grid-template-columns: 72px auto;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 72px;
  height: 42px;
  border: 2px solid var(--blue);
  border-top: 0;
  border-radius: 6px 6px 3px 3px;
}

.brand-mark::before,
.brand-mark::after {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: var(--bg);
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.brand-mark::before {
  left: 10px;
}

.brand-mark::after {
  right: 10px;
}

.brand-car {
  position: absolute;
  left: 12px;
  top: -14px;
  width: 43px;
  height: 24px;
  border: 3px solid var(--blue);
  border-bottom: 0;
  border-radius: 28px 32px 0 0;
  transform: skewX(16deg);
}

.brand-text strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.9;
  font-weight: 800;
}

.brand-text small {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 18px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  border-color: var(--blue);
  outline: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-left: 28px;
  border-left: 3px solid var(--blue);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: 48px;
  width: var(--container);
  min-height: min(720px, 78svh);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.86;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 630px;
  margin-bottom: 28px;
  color: #d7dde3;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #04111c;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  box-shadow: 0 14px 32px rgba(23, 151, 255, 0.26);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights span {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #dfe7ee;
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: #0b0d0f;
  box-shadow: var(--shadow);
}

.vehicle-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 6, 7, 0.82) 0%, rgba(5, 6, 7, 0.34) 48%, rgba(5, 6, 7, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.88)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1400&q=82');
  background-position: center;
  background-size: cover;
  filter: saturate(0.8) contrast(1.1);
}

.hero-visual::before {
  content: '';
  position: absolute;
  left: 0;
  top: 44px;
  bottom: 44px;
  width: 4px;
  background: var(--blue);
  box-shadow: 0 0 30px rgba(23, 151, 255, 0.8);
}

.phone-panel {
  position: absolute;
  top: 32px;
  right: 32px;
  display: grid;
  gap: 12px;
  width: min(460px, calc(100% - 64px));
}

.phone-line {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 0;
}

.phone-icon {
  position: relative;
  width: 25px;
  height: 34px;
  border: 3px solid var(--text);
  border-radius: 7px;
}

.phone-icon::before,
.phone-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
}

.phone-icon::before {
  top: 4px;
  width: 9px;
  height: 3px;
  border-radius: 3px;
}

.phone-icon::after {
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.phone-line strong {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.05;
  white-space: nowrap;
}

.phone-line em {
  color: #f2f4f6;
  font-size: clamp(18px, 1.6vw, 24px);
  font-style: normal;
}

.visual-note {
  position: absolute;
  right: 32px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  max-width: 330px;
  padding: 18px 0 0 28px;
  border-left: 3px solid var(--blue);
}

.visual-note span {
  color: var(--blue-soft);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-note strong {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.04;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--container);
  margin: 0 auto 28px;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 15, 17, 0.92);
}

.stat-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

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

.stat-item strong {
  color: var(--text);
  font-size: 38px;
  line-height: 1;
}

.stat-item span {
  color: #d8dee5;
  line-height: 1.25;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading span {
  height: 4px;
  background: var(--blue);
}

.section-heading h2,
.process-section h2,
.checks-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  background: rgba(12, 15, 17, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 34px;
}

.service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
}

.service-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 46px;
  border: 1px solid rgba(114, 200, 255, 0.7);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 900;
  background: rgba(23, 151, 255, 0.08);
}

.service-item h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.2;
  font-weight: 500;
}

.process-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.process-section h2,
.checks-copy h2,
.contact-copy h2 {
  text-align: left;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #03101c;
  background: var(--blue-soft);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.process-step p,
.checks-copy p,
.contact-copy p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.checks-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checks-grid span {
  min-height: 62px;
  padding: 18px;
  border: 1px solid rgba(23, 151, 255, 0.28);
  border-radius: 8px;
  color: #e7edf2;
  background: rgba(23, 151, 255, 0.08);
}

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

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.review-card p {
  font-size: 18px;
}

.review-card footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-card strong {
  font-size: 20px;
}

.review-card span {
  color: var(--blue-soft);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 84px;
}

.contact-copy {
  padding: 32px 0;
}

.contact-phones {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-phones a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.05);
}

.contact-phones strong {
  font-size: clamp(22px, 3vw, 32px);
}

.contact-phones span {
  color: var(--muted);
  font-size: 20px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(23, 151, 255, 0.35);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 29, 34, 0.96), rgba(13, 16, 18, 0.96));
  box-shadow: var(--shadow);
}

.lead-form h2,
.form-message,
.wide-field,
.lead-form button {
  grid-column: 1 / -1;
}

.lead-form h2 {
  margin: 0 0 4px;
  font-size: 34px;
  line-height: 1;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.72);
}

textarea.form-control {
  resize: vertical;
  min-height: 112px;
}

.form-control:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(23, 151, 255, 0.22);
}

.form-message {
  padding: 12px 14px;
  border: 1px solid rgba(114, 200, 255, 0.45);
  border-radius: 6px;
  color: #dff3ff;
  background: rgba(23, 151, 255, 0.12);
}

.form-message-error {
  border-color: rgba(255, 59, 50, 0.45);
  color: #ffd9d6;
  background: rgba(255, 59, 50, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--blue-soft);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .process-section,
  .checks-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-visual {
    min-height: 420px;
  }

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 22px, 1180px);
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand {
    grid-template-columns: 56px auto;
    min-width: 0;
  }

  .brand-mark {
    width: 56px;
    height: 34px;
  }

  .brand-car {
    left: 9px;
    width: 35px;
    height: 20px;
  }

  .brand-text strong {
    font-size: 34px;
  }

  .brand-text small {
    font-size: 16px;
  }

  .header-phone {
    justify-content: center;
    width: 100%;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 3px solid var(--blue);
    font-size: 20px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-actions,
  .hero-highlights {
    display: grid;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-panel {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .phone-line {
    grid-template-columns: 30px 1fr;
  }

  .phone-line em {
    grid-column: 2;
    font-size: 18px;
  }

  .visual-note {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .stats-strip,
  .services-grid,
  .reviews-grid,
  .checks-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 54px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .section-heading h2,
  .process-section h2,
  .checks-copy h2,
  .contact-copy h2 {
    text-align: left;
    font-size: 36px;
  }

  .services-grid {
    padding: 12px 18px;
  }

  .service-item,
  .service-item:nth-last-child(-n + 2) {
    grid-template-columns: 58px 1fr;
    min-height: 76px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
  }

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

  .service-icon {
    width: 48px;
    height: 42px;
  }

  .process-step {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .contact-section {
    padding-bottom: 60px;
  }

  .contact-phones a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 16px;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}

/* Design refresh 2026-06-26 */
:root {
  --bg: #07090b;
  --bg-soft: #0f1317;
  --panel: #121820;
  --panel-light: #1a222c;
  --line: rgba(233, 240, 247, 0.14);
  --text: #f7fafc;
  --muted: #aeb8c3;
  --blue: #27a7ff;
  --blue-soft: #88d7ff;
  --amber: #ffc35a;
  --shadow: 0 20px 56px rgba(0, 0, 0, 0.36);
}

body {
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(135deg, rgba(39, 167, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #080a0d 0%, #0f1419 46%, #07090b 100%);
}

body::selection {
  color: #03111c;
  background: var(--blue-soft);
}

.site-header {
  grid-template-columns: auto minmax(280px, 1fr) auto;
  gap: 22px;
  padding-top: 11px;
  padding-bottom: 11px;
  background: rgba(7, 9, 11, 0.9);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

.brand {
  grid-template-columns: 54px auto;
  min-width: 210px;
}

.brand-mark {
  width: 54px;
  height: 32px;
  border-width: 2px;
}

.brand-mark::before,
.brand-mark::after {
  bottom: -8px;
  width: 14px;
  height: 14px;
  border-width: 2px;
}

.brand-mark::before {
  left: 8px;
}

.brand-mark::after {
  right: 8px;
}

.brand-car {
  left: 9px;
  top: -11px;
  width: 34px;
  height: 19px;
  border-width: 2px;
}

.brand-text strong {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 0.96;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(136, 215, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.header-phone {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(39, 167, 255, 0.35);
  border-radius: 8px;
  background: rgba(39, 167, 255, 0.1);
  font-size: 18px;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 38px;
  min-height: min(700px, 76svh);
  padding: 54px 0 34px;
}

.eyebrow,
.section-kicker {
  color: var(--blue-soft);
  letter-spacing: 0.08em;
}

h1 {
  max-width: 740px;
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  color: #dce5ee;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.45;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
}

.button-primary {
  box-shadow: 0 16px 34px rgba(39, 167, 255, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(136, 215, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.hero-highlights span {
  border-color: rgba(136, 215, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  min-height: 520px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #0d1116;
}

.vehicle-photo {
  background-image:
    linear-gradient(90deg, rgba(7, 9, 11, 0.86) 0%, rgba(7, 9, 11, 0.28) 50%, rgba(7, 9, 11, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 9, 11, 0.08), rgba(7, 9, 11, 0.92)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=86');
  filter: saturate(0.95) contrast(1.08);
}

.phone-panel {
  top: 28px;
  right: 28px;
  gap: 10px;
}

.phone-line {
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(8, 11, 14, 0.68);
  backdrop-filter: blur(12px);
}

.phone-line:hover,
.phone-line:focus-visible {
  border-color: rgba(136, 215, 255, 0.45);
  outline: none;
}

.phone-line strong {
  font-size: clamp(21px, 1.8vw, 28px);
}

.phone-line em {
  color: var(--blue-soft);
  font-size: clamp(15px, 1.2vw, 19px);
}

.visual-note {
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(136, 215, 255, 0.24);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: rgba(8, 11, 14, 0.72);
  backdrop-filter: blur(12px);
}

.stats-strip {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-item {
  min-height: 104px;
  padding: 20px 24px;
}

.stat-item strong {
  color: var(--blue-soft);
  font-size: clamp(32px, 3vw, 44px);
}

.section {
  padding: 78px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.section-heading h2,
.process-section h2,
.checks-copy h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: 0;
}

.services-grid {
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
}

.service-item {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.service-item:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.service-icon {
  width: 58px;
  height: 48px;
  border-color: rgba(136, 215, 255, 0.55);
  color: var(--blue-soft);
  background: rgba(39, 167, 255, 0.11);
}

.service-item h3 {
  font-weight: 700;
}

.process-step,
.review-card,
.checks-grid span,
.contact-phones a {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.process-step {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.step-number {
  color: #05121e;
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
}

.checks-section {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 16, 20, 0.72);
}

.checks-grid span {
  display: flex;
  align-items: center;
  min-height: 68px;
  border-color: rgba(136, 215, 255, 0.24);
  background: rgba(39, 167, 255, 0.09);
  font-weight: 700;
}

.review-card {
  background: linear-gradient(180deg, rgba(26, 34, 44, 0.96), rgba(17, 23, 30, 0.96));
}

.review-card p {
  color: #dce4ec;
}

.contact-section {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-phones a {
  border: 1px solid rgba(136, 215, 255, 0.2);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

.lead-form {
  padding: 30px;
  border-color: rgba(136, 215, 255, 0.28);
  background: linear-gradient(180deg, rgba(26, 34, 44, 0.98), rgba(13, 17, 21, 0.98));
}

.form-control {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 11, 0.82);
}

.form-control:hover {
  border-color: rgba(136, 215, 255, 0.3);
}

.site-footer {
  padding-top: 30px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero,
  .process-section,
  .checks-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .contact-copy {
    position: static;
  }

  .checks-section {
    padding: 34px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand {
    grid-template-columns: 54px auto;
    min-width: 0;
  }

  .header-phone {
    justify-content: center;
    width: 100%;
    border-top: 0;
    font-size: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .phone-panel {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .phone-line {
    grid-template-columns: 30px 1fr;
  }

  .phone-line em {
    grid-column: 2;
  }

  .visual-note {
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 56px 0;
  }

  .services-grid,
  .checks-grid,
  .reviews-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .checks-section {
    padding: 24px;
  }

  .lead-form {
    padding: 22px;
  }
}

/* Logo image replacement 2026-06-26 */
.site-header {
  min-height: 96px;
}

.brand {
  grid-template-columns: 184px;
  min-width: 184px;
  align-self: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 86px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
}

.main-nav {
  align-items: center;
}

.header-phone {
  align-self: center;
}

@media (max-width: 980px) {
  .brand {
    grid-template-columns: 158px;
    min-width: 158px;
  }

  .brand-logo-wrap {
    width: 158px;
    height: 74px;
  }

  .brand-logo {
    width: 154px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 12px;
  }

  .brand {
    grid-template-columns: 148px;
    min-width: 148px;
  }

  .brand-logo-wrap {
    width: 148px;
    height: 70px;
  }

  .brand-logo {
    width: 144px;
  }
}

/* Hero title fit 2026-06-26 */
#hero-title {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(34px, 2.6vw, 48px);
  line-height: 1.08;
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 590px;
}

@media (max-width: 1180px) {
  #hero-title {
    max-width: 560px;
    font-size: clamp(34px, 4.2vw, 46px);
    white-space: normal;
  }
}

@media (max-width: 720px) {
  #hero-title {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.1;
    overflow-wrap: break-word;
  }
}
