/* Base */
* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2b;
  --muted: #5b667a;
  --paper: #f6f4f0;
  --accent: #1f6f8b;
  --accent-dark: #145266;
  --soft: #e7ecef;
  --warm: #efe7dc;
  --highlight: #d9e7e3;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid #d7d2c8;
  padding: 18px 24px 24px;
  background: #fff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 30px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 1 1 360px;
  background: #dfe7e6;
  padding: 12px;
  border-radius: 16px;
}

.hero-visual img {
  border-radius: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: var(--soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  font-weight: 600;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 44px 0;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .panel {
  flex: 1 1 340px;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.panel h2 {
  margin-top: 0;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-strip article {
  background: var(--warm);
  padding: 18px;
  border-radius: 12px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 180px;
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.selection {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--highlight);
  padding: 24px;
  border-radius: 16px;
}

.selection-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.selection-buttons button {
  background: #fff;
  border: 1px solid #a8b6ba;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.selection-buttons button.active {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input, select, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #b7c0c6;
  font-size: 1rem;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.columns .col {
  flex: 1 1 280px;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  top: 18px;
  background: #fff;
  border: 1px solid #d7d2c8;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  margin-top: 40px;
  padding: 28px 24px;
  border-top: 1px solid #d7d2c8;
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer p {
  margin: 8px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #d7d2c8;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 18px;
  border-radius: 12px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-bg {
  background: #e1e7eb;
  border-radius: 16px;
  padding: 24px;
}

.hero-bg img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
}

.bg-compare {
  background-color: #d9e3e7;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-garage {
  background-color: #d7d5d1;
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-alps {
  background-color: #dbe3e4;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-notebook {
  background-color: #dee6ea;
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-urban {
  background-color: #d7dde1;
  background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-office {
  background-color: #e2e6ea;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
}

.table-row span {
  flex: 1 1 160px;
}

.banner-section {
  background: #1a2b32;
  color: #fff;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.banner-section a {
  color: #fff;
}

.media-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.media-inline .media-text {
  flex: 1 1 280px;
}

.media-inline .media-img {
  flex: 1 1 260px;
  background: #dbe4e8;
  padding: 10px;
  border-radius: 12px;
}

.media-inline img {
  border-radius: 10px;
}

.legal-block {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  margin: 30px 0;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-box {
  background: var(--soft);
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
  }
}
