﻿@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1F3FA3;
  --secondary: #FFD400;
  --text: #171717;
  --background: #FFFFFF;
  --light-bg: #F5F7FC;
  --muted: #4d4b48;
  --line: rgba(23, 23, 22, 0.14);
  --shadow: rgba(17, 18, 18, 0.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font: 16px/1.6 "Inter", Arial, sans-serif;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.3rem, 4.8vw, 6.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.5rem, 3.4vw, 4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 600;
}

.container {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.12);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 0.9;
}

.brand-top,
.brand-bottom {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: block;
}

.brand-top {
  font-size: 1.05rem;
}

.brand-bottom {
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:not(.button):hover,
.main-nav .active {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #163685;
  border-color: #163685;
}

.button-small {
  padding: 12px 18px;
}

.button-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.button-outline:hover {
  background: var(--primary);
  color: #fff;
}

.button-light {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--text);
}

.button-light:hover {
  background: #f5cf00;
  border-color: #f5cf00;
}

.text-link {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--primary);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow.accent {
  color: #fdf8d8;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 2rem;
  color: var(--ink);
}

.hero-section {
  position: relative;
  padding: 82px 0 68px;
  background: linear-gradient(99deg, var(--light-bg) 0%, #edf3ff 100%);
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
}

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

.lead {
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-top: 40px;
}

.hero-points div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-points strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: min(100%, 520px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(31, 63, 163, 0.18);
  border: 1px solid rgba(23, 23, 22, 0.08);
  background: #dfe7f7;
}

.hero-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,18,18,0.06), rgba(17,18,18,0.18));
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border: 1px solid rgba(23, 23, 22, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-band {
  background: linear-gradient(135deg, var(--primary) 0%, #163685 100%);
  border-top: 2px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.feature-box {
  padding: 36px 26px 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.feature-box:last-child {
  border-right: 0;
}

.feature-box h3,
.feature-box p {
  color: #fff;
}

.feature-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.feature-box p {
  margin: 0;
}

.section {
  padding: 86px 0;
}

.section-light {
  background: rgba(255,255,255,0.12);
}

.section-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 20px;
  padding: 20px 26px;
  border: 2px solid rgba(23,23,22,0.8);
  background: rgba(255,255,255,0.3);
  border-radius: 22px;
}

.check-list div {
  position: relative;
  padding-left: 38px;
  font-weight: 600;
  color: var(--ink);
}

.check-list div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}

.center {
  text-align: center;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  padding: 26px 22px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(31, 63, 163, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px rgba(31, 63, 163, 0.09);
  border-color: rgba(31, 63, 163, 0.18);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1.5px solid rgba(31, 63, 163, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(31, 63, 163, 0.12) 0%, rgba(31, 63, 163, 0.05) 100%);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.service-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.2;
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 20px rgba(31, 63, 163, 0.12);
}

.service-card-large {
  min-height: 270px;
}

.service-number {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--primary);
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
}

.service-card a {
  margin-top: auto;
  font-weight: 700;
  color: var(--ink);
}

.centered-link {
  margin-top: 30px;
  text-align: center;
}

.cta-panel {
  background: linear-gradient(135deg, #1e1d1b 0%, #2a2926 100%);
  color: #fff;
  padding: 28px 0;
  border-top: 2px solid rgba(255,255,255,0.15);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 0;
}

.page-hero {
  padding: 72px 0 54px;
  background: linear-gradient(180deg, #f9f5ef 0%, #f1ebe4 100%);
  border-bottom: 2px solid rgba(23,23,22,0.8);
}

.narrow {
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px 22px;
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(23,23,22,0.8);
  border-radius: 22px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(23,23,22,0.8);
  border-radius: 12px;
  background: rgba(255,255,255,0.56);
  padding: 14px 14px;
  font: inherit;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
}

.site-footer {
  background: #f4f0eb;
  border-top: 2px solid rgba(23,23,22,0.8);
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 38px;
  align-items: start;
}

.footer-brand p,
.footer-col p,
.footer-col li,
.footer-col a {
  color: var(--muted);
}

.footer-col h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.copyright {
  padding: 20px 0 28px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(23,23,22,0.5);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-layout,
  .section-split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    margin-bottom: 8px;
  }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 24px 24px;
    background: rgba(255,255,255,0.96);
    border-bottom: 2px solid rgba(23,23,22,0.8);
  }

  .main-nav.open { display: flex; }

  .hero-section { padding-top: 54px; }
  .feature-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    border-right: 0;
    border-bottom: 2px solid rgba(23,23,22,0.8);
  }

  .feature-box:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-points {
    flex-wrap: wrap;
    gap: 24px;
  }

  .garage-scene {
    min-height: 360px;
  }

  .car-body {
    left: 26px;
    width: 250px;
  }

  .wheel-one { left: 34px; }
  .wheel-two { right: 34px; }
}
