* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw;
  background: #f5f4f2;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.88rem;
  color: #5a5a5a;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e2df;
  font-size: 0.92rem;
}

.site-nav a:hover,
.btn:hover {
  background: #efefec;
}

.hero {
  position: relative;
  padding: 80px 6vw;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.55);
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
  z-index: 1;
}

.hero-panel {
  flex: 1;
  min-width: 260px;
  padding: 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.hero-panel h1 {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d2d2ce;
  background: #ffffff;
  font-weight: 600;
  color: #1f1f1f;
  cursor: pointer;
}

.btn-primary {
  background: #2f5fd0;
  color: #ffffff;
  border-color: transparent;
}

.btn-primary:hover {
  background: #284fb0;
}

.split {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 70px 6vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  background: #e7e5df;
  padding: 8px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.section-bg {
  position: relative;
  color: #ffffff;
  background-size: cover;
  background-position: center;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.6);
}

.section-bg .split__content,
.section-bg .split__media {
  position: relative;
  z-index: 1;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e0e0dc;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.service-card.selected {
  border-color: #2f5fd0;
  box-shadow: 0 14px 30px rgba(47, 95, 208, 0.2);
}

.service-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #2f5fd0;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e2df;
  padding: 24px;
}

.form-box label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfcfc9;
  font-size: 1rem;
  font-family: inherit;
}

.form-steps {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.step-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #efefec;
  font-size: 0.88rem;
}

.form-status {
  min-height: 20px;
  color: #2f5fd0;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #161616;
  color: #ffffff;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  z-index: 5;
}

.sticky-cta a {
  background: #ffffff;
  color: #161616;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e0dc;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.site-footer {
  padding: 50px 6vw;
  background: #f1f0ed;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-note {
  color: #555555;
  font-size: 0.9rem;
}

.page-hero {
  padding: 60px 6vw;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.legal-content {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tagline {
  font-weight: 600;
  color: #3b3b3b;
}

.highlight {
  background: #efefec;
  padding: 14px;
  border-radius: 14px;
}

.hero--index {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}

.hero--about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero--services {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.hero--contact {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.hero--privacy {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.hero--gdpr {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero--cookies {
  background-image: url("https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?w=1400&q=80");
}

.hero--terms {
  background-image: url("https://images.unsplash.com/photo-1471357674240-e1a485acb3e1?w=1400&q=80");
}

.hero--thanks {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}
