* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2430;
  --muted: #5c6472;
  --accent: #2f5d8a;
  --accent-soft: #e2ecf6;
  --sand: #f4f1ed;
  --stone: #e7e1db;
  --olive: #d7dfd4;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: var(--white);
}

.brand {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--stone);
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  padding: 6vw;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 18, 31, 0.75), rgba(10, 18, 31, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.main {
  flex: 1;
}

.section {
  padding: 5vw 6vw;
  position: relative;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split > * {
  flex: 1 1 280px;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--sand);
  border-radius: 18px;
  transform: translateY(-40px);
}

.overlap {
  margin-top: -60px;
  z-index: 2;
}

.panel {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 36, 48, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.media {
  width: 100%;
  height: 180px;
  background: var(--stone);
  overflow: hidden;
}

.media.tall {
  height: 320px;
  background: var(--olive);
}

.form-panel {
  background: var(--accent-soft);
  padding: 32px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6df;
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  background: #101826;
  color: var(--white);
  padding: 4vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.legal {
  font-size: 13px;
  color: #c9d0dd;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(31, 36, 48, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  filter: brightness(0.95);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(31, 36, 48, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hero--index {
  background: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80") center/cover no-repeat;
}

.hero--about {
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80") center/cover no-repeat;
}

.hero--services {
  background: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80") center/cover no-repeat;
}

.hero--contact {
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80") center/cover no-repeat;
}

.hero--thanks {
  background: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80") center/cover no-repeat;
}

.hero--privacy {
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80") center/cover no-repeat;
}

.hero--gdpr {
  background: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80") center/cover no-repeat;
}

.hero--cookies {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80") center/cover no-repeat;
}

.hero--terms {
  background: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80") center/cover no-repeat;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  background: var(--olive);
  padding: 18px;
  border-radius: 14px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
