.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  background: #fff3d6;
}

.split-section {
  display: flex;
  gap: 36px;
  align-items: stretch;
  padding: 54px 0;
  border-bottom: 1px solid #e3ddd4;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  min-width: 0;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-content h2,
.split-content h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.split-content p {
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: transparent;
  color: #1a1a1a;
}

.btn.inline {
  padding: 0;
  border: none;
  background: none;
  font-weight: 600;
  text-decoration: underline;
}

.hero {
  background: #0f0f0f;
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.hero .split-content,
.hero .split-media {
  position: relative;
  z-index: 1;
}

.hero .split-content h2 {
  font-size: 40px;
}

.media-card {
  border-radius: 20px;
  overflow: hidden;
  background: #d9d1c7;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  align-items: center;
}

.service-card .image-wrap {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: #e3ddd4;
  flex-shrink: 0;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
}

.pricing {
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: #f0ebe3;
  padding: 16px 18px;
  border-radius: 14px;
}

.inline-image {
  border-radius: 18px;
  overflow: hidden;
  background: #d6cec4;
}

.inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-size: 13px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bb;
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row > div {
  flex: 1;
}

.note {
  font-size: 13px;
  color: #4d4740;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta .btn {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  padding: 36px 0 60px;
  font-size: 13px;
  color: #4d4740;
}

.footer .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 12;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.background-panel {
  background: #f2eae0;
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.about-panel::after {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=800&q=80");
}

.services-panel::after {
  background-image: url("https://images.unsplash.com/photo-1712903276048-6da8d45bd9fa?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwyM3x8UHIlQzMlQTR6aXNlciUyMERydWNrJTIwZiVDMyVCQ3IlMjBVbnRlcm5laG1lbnNtZXJjaCUyQyUyMGRlciUyMGludGVybiUyMGJlZ2Vpc3RlcnQlMjB1bmQlMjBleHRlcm4lMjBwcm9mZXNzaW9uZWxsJTIwd2lya3QufGRlfDB8MHx8fDE3ODIzMTgzMzV8MA&ixlib=rb-4.1.0&q=80&w=1080");
}

.contact-panel::after {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=800&q=80");
}

.privacy-panel::after {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80");
}

.gdpr-panel::after {
  background-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?w=800&q=80");
}

.cookies-panel::after {
  background-image: url("https://images.unsplash.com/photo-1487017159836-4e23ece2e4cf?w=800&q=80");
}

.terms-panel::after {
  background-image: url("https://images.unsplash.com/photo-1508921912186-1d1a45ebb3c1?w=800&q=80");
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.aside-panel {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #ebe3d7;
}

.banner-panel {
  background: #f8f0e4;
  border-radius: 18px;
  padding: 22px;
}

.image-panel {
  background: #d9d1c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
