* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1f2b;
  background-color: #f6f7fb;
  line-height: 1.6;
}

a {
  color: #2b5bff;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-disclosure {
  background: #f0ebff;
  color: #3a2f6b;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  background: #e9f0ff;
  border-radius: 28px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-media {
  gap: 12px;
}

.hero-media .image-frame {
  background-color: #cdd9f7;
  border-radius: 18px;
  overflow: hidden;
  height: 260px;
}

.section {
  margin: 36px 0;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media .image-frame {
  background-color: #dfe7ff;
  border-radius: 22px;
  overflow: hidden;
  height: 300px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 40px rgba(20, 25, 40, 0.08);
}

.card .image-frame {
  background-color: #e8edf7;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.service-price {
  font-weight: 700;
  color: #2b5bff;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.button {
  background: #2b5bff;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.button.secondary {
  background: #ffffff;
  color: #2b5bff;
  border: 1px solid #b9c7ff;
}

.form-shell {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(20, 25, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d2d7e7;
  font-size: 0.95rem;
}

.info-band {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 20px;
  background: #f2f5ff;
}

.info-band .image-frame {
  background-color: #dbe3ff;
  border-radius: 16px;
  overflow: hidden;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.footer {
  margin-top: 60px;
  padding: 32px 0 60px;
  border-top: 1px solid #dfe3ef;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  background: #fff5f5;
  border-radius: 16px;
  padding: 16px;
  color: #4d2b2b;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f2e5a;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: #1f2e5a;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(20, 25, 40, 0.2);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.simple-hero {
  background: #f0f4ff;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.services-hero::before {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.contact-hero::before {
  background-image: url("https://images.unsplash.com/photo-1523475472560-d2df97ec485c?w=1400&q=80");
}

.thanks-hero::before {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.privacy-hero::before {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.gdpr-hero::before {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
}

.cookies-hero::before {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
}

.terms-hero::before {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.simple-hero > * {
  position: relative;
  z-index: 1;
}

.simple-hero .image-frame {
  background-color: #d6ddf3;
  border-radius: 18px;
  overflow: hidden;
  width: 240px;
  height: 200px;
  flex-shrink: 0;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-grid .block {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(20, 25, 40, 0.08);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(20, 25, 40, 0.08);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .simple-hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
