* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141414;
  --muted: #5b5b5b;
  --surface: #f6f4f1;
  --accent: #2b6cb0;
  --accent-soft: #d8e6f6;
  --warm: #f2d6c7;
  --dark: #1e2734;
  --light: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 6vw 80px;
}

header {
  padding: 28px 6vw 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px 18px;
  align-items: center;
  font-size: 14px;
}

.nav-cta {
  padding: 8px 14px;
  background: var(--dark);
  color: var(--light);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.hero {
  min-height: 64vh;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 20, 20, 0.65), rgba(20, 20, 20, 0.15));
}

.hero-inner {
  position: relative;
  max-width: 520px;
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-inner h1 {
  font-size: 36px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 18px;
  font-weight: 600;
  background: var(--accent);
  color: var(--light);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--light);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 26px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background: var(--warm);
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mosaic-card {
  flex: 1 1 240px;
  background: var(--light);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
}

.offset-card {
  margin-top: -16px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: var(--dark);
  color: var(--light);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--light);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.form-area form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

select,
input,
textarea {
  padding: 10px 12px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  font-size: 14px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.testimonial {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 14px;
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--accent-soft);
  padding: 22px;
  border-radius: 22px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

footer {
  background: var(--dark);
  color: var(--light);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #d7dce2;
  max-width: 760px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--light);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(20, 20, 20, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--light);
}

.cookie-reject {
  background: #e6e6e6;
  color: var(--ink);
}

.hidden {
  display: none;
}

.bg-shift {
  background: var(--accent-soft);
  border-radius: 26px;
  padding: 28px;
}

.quiet {
  color: var(--muted);
}

.page-hero {
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 42px;
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.5);
}

.page-hero h1,
.page-hero p {
  position: relative;
}

.bg-photo {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 32px;
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
}

.bg-photo > * {
  position: relative;
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1515879218367-8466d910aaa4?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1506976785307-8732e854ad03?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1597034318970-15d19ee9cfc2?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1MXx8RyVDMyVCQ3ZlbmxpJTIwdGElQzUlOUYlQzQlQjFubWElMjBwbGFuJUM0JUIxJTIwdmUlMjBkaXNpcGxpbmxpJTIwdGElQzUlOUYlQzQlQjFtYSUyMGVraXBsZXJpLnx0cnwwfDB8fHwxNzgxODYzNzU2fDA&ixlib=rb-4.1.0&q=80&w=1080");
}

@media (max-width: 860px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
