* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #12151c;
  --muted: #52606d;
  --accent: #2f5bea;
  --accent-dark: #1f3fbf;
  --sand: #f4f2ee;
  --sky: #e8eef8;
  --stone: #efe7e1;
  --forest: #e6efe9;
  --radius: 24px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6vw 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 15px;
}

.site-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  border-bottom-color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 240px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 20px 6vw 80px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  padding: 48px 0;
  border-radius: var(--radius);
  background-color: var(--sky);
  overflow: hidden;
}

.hero-image {
  width: 500px;
  max-width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: #d5dbe6;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1431540015161-0bf868a2d407?w=1400&q=80");
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(47, 91, 234, 0.08);
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--stone);
  min-height: 260px;
}

.image-frame.alt {
  background-color: var(--forest);
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: var(--sand);
}

.service-card .card-image {
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9d5cf;
}

.price {
  font-weight: 700;
}

.section-highlight {
  padding: 32px;
  border-radius: var(--radius);
  background-color: var(--stone);
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1b1b1b;
}

.section-highlight .panel {
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  border-radius: 20px;
  max-width: 520px;
}

.form-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--sky);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd2e0;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
  color: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.site-footer {
  padding: 40px 6vw 80px;
  background: #0f1320;
  color: #f6f7fb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer a {
  color: #f6f7fb;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #d7dce6;
  padding: 16px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--forest);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    max-width: 100%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
