/* Base */
:root {
  --ink: #16181b;
  --muted: #5c6670;
  --paper: #f7f5f2;
  --accent: #2b6cb0;
  --accent-2: #1b3a57;
  --soft: #e6ecef;
  --highlight: #f2e9dd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #dfe7ee;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__text,
.split__media {
  flex: 1;
}

.section-title {
  font-size: 40px;
  margin: 0 0 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 20px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.media-frame {
  background: var(--highlight);
  padding: 14px;
  border-radius: 24px;
}

.media-frame img {
  border-radius: 18px;
  height: 360px;
}

.hero-media {
  min-height: 380px;
  border-radius: 28px;
  background-color: #dfe7ee;
  background-position: center;
  background-size: cover;
}

.bg-panel {
  padding: 36px;
  border-radius: 28px;
  background-color: #dfe7ee;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1608333195448-88210e9e444f?w=1400&q=80");
}

.bg-clarity {
  background-image: url("https://images.unsplash.com/photo-1773625544992-3812506ba966?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1627407660893-fe01f60d44c4?w=1400&q=80");
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1531651008558-ed1740375b39?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1574517947730-55cb23e608c2?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1618609377864-68609b857e90?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1636226570637-3fbda7ca09dc?w=1400&q=80");
}

.bg-panel .section-subtitle {
  color: #eef2f5;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--soft);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--soft);
}

.card img {
  height: 180px;
  border-radius: 16px;
}

.card h3 {
  margin: 14px 0 8px;
}

.form {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid var(--soft);
}

.form label {
  display: block;
  font-size: 14px;
  margin-top: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  font-family: inherit;
}

.form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--soft);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 16px;
  width: min(360px, 90%);
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  margin-top: 28px;
}

.legal-block {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--soft);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
