:root {
  --bg: #f7f5f2;
  --ink: #1e2226;
  --muted: #5a646e;
  --panel: #ffffff;
  --soft: #eef1f4;
  --sand: #f0e6da;
  --accent: #3c6e71;
  --accent-strong: #1f4e5a;
  --accent-alt: #6c63ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-alt);
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 20px 6vw;
  background: var(--panel);
  border-bottom: 1px solid #e2e6ea;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

main {
  flex: 1;
}

section {
  padding: 56px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(26, 33, 39, 0.08);
}

.panel.soft {
  background: var(--soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.hero-title {
  font-size: 38px;
  margin: 10px 0 14px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--sand);
  min-height: 240px;
  box-shadow: 0 10px 24px rgba(31, 78, 90, 0.12);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent-strong);
  color: #ffffff;
}

.btn-secondary {
  background: var(--soft);
  color: var(--accent-strong);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(26, 33, 39, 0.08);
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: var(--panel);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(31, 78, 90, 0.1);
}

.soft-band {
  background: var(--soft);
}

.bg-hero {
  background: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80") center/cover no-repeat;
  background-color: #1f2d36;
  color: #ffffff;
}

.bg-bridge {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
  background-color: #2f3c44;
  color: #ffffff;
}

.bg-horizon {
  background: url("https://images.unsplash.com/photo-1487611459768-bd414656ea10?w=1400&q=80") center/cover no-repeat;
  background-color: #3a4046;
  color: #ffffff;
}

.bg-datalayer {
  background: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80") center/cover no-repeat;
  background-color: #1b2730;
  color: #ffffff;
}

.bg-legal-privacy {
  background: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80") center/cover no-repeat;
  background-color: #293642;
  color: #ffffff;
}

.bg-legal-gdpr {
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80") center/cover no-repeat;
  background-color: #23313a;
  color: #ffffff;
}

.bg-legal-cookies {
  background: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80") center/cover no-repeat;
  background-color: #22323c;
  color: #ffffff;
}

.bg-legal-terms {
  background: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?w=1400&q=80") center/cover no-repeat;
  background-color: #253842;
  color: #ffffff;
}

.form-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 26px rgba(26, 33, 39, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6dbe0;
  font: inherit;
}

.footer {
  padding: 40px 6vw 56px;
  background: #111821;
  color: #e8edf3;
}

.footer a {
  color: #e8edf3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
}

.small-text {
  font-size: 13px;
  color: #c1c7d0;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(26, 33, 39, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--soft);
}

.page-hero {
  padding: 64px 6vw;
}

.page-hero .panel {
  background: rgba(255, 255, 255, 0.92);
}

.legal-hero {
  padding: 50px 6vw;
}

.legal-hero .panel {
  background: rgba(255, 255, 255, 0.9);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 300px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.inline-cta {
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

@media (max-width: 840px) {
  .hero-title {
    font-size: 30px;
  }

  .sticky-cta {
    position: static;
  }
}
