* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #5f6770;
  --accent: #c24d2c;
  --accent-dark: #9f3d23;
  --soft: #f3f0eb;
  --panel: #ffffff;
  --line: #e3ded6;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--soft);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 6vw 90px;
  background: linear-gradient(135deg, rgba(26, 28, 31, 0.72), rgba(26, 28, 31, 0.15)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
  max-width: 720px;
}

.hero p {
  margin: 0;
  max-width: 620px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn:active {
  transform: scale(0.98);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  background: #15171a;
  color: #f9f6f0;
}

.bg-garage {
  background: linear-gradient(135deg, rgba(21, 23, 26, 0.82), rgba(21, 23, 26, 0.2)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1400&q=80") center/cover no-repeat;
  color: #f9f6f0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.stack-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card h3 {
  margin: 0;
}

.img-frame {
  background: #d9d2c8;
  border-radius: 16px;
  overflow: hidden;
}

.fallback-1 { background: #d9d2c8; }
.fallback-2 { background: #d4cbc0; }
.fallback-3 { background: #d8d1c7; }
.fallback-4 { background: #d1c6bb; }
.fallback-5 { background: #2d2f31; }
.fallback-6 { background: #d5cec4; }
.fallback-7 { background: #d1c8be; }
.fallback-8 { background: #d6cfc4; }
.fallback-9 { background: #d3ccc2; }
.fallback-10 { background: #d4cdc4; }
.fallback-11 { background: #d3cac1; }
.fallback-12 { background: #d6cec4; }
.fallback-13 { background: #d3c9bf; }

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.storyline-item {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.storyline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.storyline-item > * {
  flex: 1 1 260px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
}

.pricing-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c7c1b8;
  font-size: 1rem;
  font-family: inherit;
  background: #fffdf9;
}

.footer {
  background: #0f1113;
  color: #e6e1d8;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reference-list a {
  color: #e6e1d8;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 14px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.text-muted {
  color: var(--muted);
}

.small {
  font-size: 0.9rem;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  flex: 1 1 240px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-link:active {
  opacity: 0.8;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero {
    padding: 60px 6vw 80px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
    text-align: center;
  }
}
