:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --ink: #1f2226;
  --muted: #5e6670;
  --accent: #2f6f5b;
  --accent-soft: #d9efe7;
  --border: #d8d2c9;
  --warm: #f3e7d9;
  --shadow: 0 18px 40px rgba(18, 20, 22, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 260px;
  padding: 28px 24px;
  background: #ebe5dc;
  border-right: 1px solid var(--border);
}

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

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: #f7efe5;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.nav a:hover {
  border-color: var(--border);
  background: #f5efe6;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  filter: brightness(0.95);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 32px 40px 60px;
}

.section {
  background: var(--panel);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.section.transparent {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  border-radius: 22px;
  background: #dfe7e3;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.hero-visual.bg-hero {
  background-image: url('https://images.unsplash.com/photo-1774062130068-0bccf4688353?w=1400&q=80');
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.panel {
  flex: 1;
  border-radius: 20px;
  padding: 24px;
  background: #f7f0e8;
}

.panel strong {
  display: block;
  margin-bottom: 8px;
}

.panel.bg-image {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel.bg-image .overlay {
  background: rgba(20, 22, 24, 0.55);
  padding: 20px;
  border-radius: 16px;
}

.bg-scooter-graffiti {
  background-image: url('https://images.unsplash.com/photo-1759213215109-081f2c1f67de?w=800&q=80');
}

.bg-report {
  background-image: url('https://images.unsplash.com/photo-1698916116609-9cde02cde57e?w=800&q=80');
}

.bg-services-panel {
  background-image: url('https://images.unsplash.com/photo-1779031242599-834f49bd1c2a?w=800&q=80');
}

.bg-contact-panel {
  background-image: url('https://images.unsplash.com/photo-1758828447673-e4c92f06bded?w=800&q=80');
}

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

.card {
  flex: 1 1 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  background: #e5e2dd;
}

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

.media-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.image-frame {
  flex: 1 1 280px;
  background: #e3e1db;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.story {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
}

.form-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-picks button {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  background: #f8f3ec;
  cursor: pointer;
}

.service-picks button:hover {
  border-color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(10, 12, 14, 0.14);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #1f2226;
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.cookie-actions .btn {
  border-color: #fff;
}

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

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .content {
    padding: 26px 22px 60px;
  }

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