﻿:root {
  --ink: #15171a;
  --muted: #606874;
  --line: #d9dee5;
  --paper: #f4f6f8;
  --white: #ffffff;
  --blue: #086de0;
  --blue-dark: #054b9f;
  --steel: #29313b;
  --green: #176f54;
  --shadow: 0 20px 55px rgba(20, 24, 31, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-logo {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 8px;
  overflow: hidden;
  background: #030507;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; margin-top: -2px; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 15px; }
.nav a { color: var(--steel); }
.nav-cta { padding: 10px 14px; border-radius: 6px; background: var(--ink); color: var(--white) !important; }

.hero {
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  padding: 80px clamp(18px, 6vw, 88px) 120px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 12, 15, .92) 0%, rgba(10, 12, 15, .74) 38%, rgba(10, 12, 15, .20) 78%),
    url('assets/garage-hero.png'),
    linear-gradient(135deg, #15171a, #45515e);
  background-size: cover;
  background-position: center;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .eyebrow { color: #69adff; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(42px, 7vw, 88px); line-height: .98; max-width: 860px; }
.hero p:not(.eyebrow) { max-width: 640px; color: #e6ebf1; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}
.button.primary { background: var(--blue); color: var(--white); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { background: rgba(255,255,255,.14); color: var(--white); border: 1px solid rgba(255,255,255,.32); }
.button.download { width: max-content; margin-top: 18px; background: var(--ink); color: var(--white); }

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 14px;
  padding: 18px clamp(18px, 6vw, 88px);
  background: var(--paper);
}
.info-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(20, 24, 31, .08);
}
.info-strip span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.info-strip strong { display: block; margin-top: 5px; font-size: clamp(14px, 1.05vw, 18px); line-height: 1.25; }

.section { padding: 76px clamp(18px, 6vw, 88px); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.service-card .icon { color: var(--blue); font-weight: 900; }
.service-card h3 { margin: 34px 0 8px; font-size: 21px; }
.service-card p { color: var(--muted); margin: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: start;
  background: var(--white);
}
.price-panel { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.price-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.price-header {
  color: var(--white);
  background: #11151b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.price-row span { color: var(--muted); }
.price-header span { color: var(--white); }
.price-row > strong:first-child {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 34px;
}
.price-row > strong:last-child { color: var(--blue); font-size: 24px; text-align: right; }
.price-row small { display: block; color: var(--blue); font-weight: 800; text-transform: uppercase; }
.price-note { margin: 0; padding: 18px 20px; color: var(--muted); background: #f8fafc; }

.quote-section { background: var(--paper); }
.quote-form {
  max-width: 980px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
label { display: grid; gap: 7px; font-weight: 800; color: var(--steel); }
.full-width { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c8d0da;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { resize: vertical; margin-top: 18px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(8,109,224,.18); border-color: var(--blue); }
.is-invalid { border-color: var(--blue) !important; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
#formStatus { margin: 0; color: var(--green); font-weight: 800; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: var(--white);
  background: #0f1114;
}
.footer span { display: block; color: #bfc8d3; }
.footer small { display: block; max-width: 900px; margin-top: 10px; color: #9facbb; line-height: 1.5; }
.footer a { color: #69adff; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero { min-height: 680px; background-position: 62% center; }
  .service-grid, .split { grid-template-columns: 1fr; }
  .info-strip { overflow-x: auto; }
  .service-card { min-height: auto; }
}
@media (max-width: 620px) {
  .nav { gap: 14px; font-size: 14px; }
  .nav-cta { display: none; }
  .hero { padding-top: 58px; padding-bottom: 86px; }
  h1 { font-size: 42px; }
  .form-grid, .legal-list { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .price-row > strong:first-child { min-height: 52px; }
  .price-row > strong:last-child { text-align: left; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .button.download { width: 100%; }
  .footer { align-items: flex-start; flex-direction: column; }
}







