:root {
  --ink: #1d1d1f;
  --muted: #5c5c66;
  --accent: #5b6ef5;
  --accent-dark: #4657d9;
  --surface: #f6f6f8;
  --surface-deep: #eef0f3;
  --line: #e2e4ea;
  --sun: #ffb870;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px dashed var(--line);
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  padding: 52px 32px;
  background: var(--surface);
}

.section {
  padding: 48px 32px;
}

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

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-col.tight {
  gap: 10px;
}

.image-card {
  background: #d8dde6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layered {
  position: relative;
}

.layered .panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -28px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.card img {
  width: 120px;
  height: 100px;
  border-radius: 12px;
}

.card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.light {
  background: var(--sun);
  color: #3a2c1c;
}

.split-note {
  font-size: 14px;
  color: var(--muted);
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.radio-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.inline-quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  font-style: italic;
}

.bg-drive {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-crew {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-service {
  background-image: url("https://images.unsplash.com/photo-1494905998402-395d579af36f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(13, 14, 20, 0.6);
  padding: 40px;
  border-radius: 20px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.site-footer {
  padding: 40px 32px;
  background: #111118;
  color: #d8dbe7;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}

.footer-links a {
  color: #d8dbe7;
}

.disclaimer {
  font-size: 13px;
  color: #b6b8c4;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 42px 32px;
  background: var(--surface);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
