* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e2a2a;
  background: #f6f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: #f6f7f5;
  border-bottom: 1px solid #dde3e1;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #e8ebe5;
  border-radius: 16px;
}

.panel {
  padding: 70px 6%;
  background: #f6f7f5;
}

.panel--soft {
  background: #edf1ef;
}

.panel--accent {
  background: #dde5e0;
}

.panel--image {
  background-size: cover;
  background-position: center;
  color: #fdfdfd;
  position: relative;
}

.panel--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 30, 0.55);
}

.panel--image > * {
  position: relative;
  z-index: 1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80");
}

.bg-policy {
  background-image: url("https://images.unsplash.com/photo-1767605777556-9758ef6931b5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwxfHxNb2lzdHVyZSUyMGFuZCUyMGNvbmRlbnNhdGlvbiUyMHByb3RlY3Rpb24lMjBmb3IlMjBoZWFsdGh5JTIwaW50ZXJpb3JzLnxlbnwwfDB8fHwxNzgyMzg5OTY5fDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #647371;
}

.headline {
  font-size: 2.4rem;
  margin: 12px 0;
}

.lead {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: #1e2a2a;
  color: #f6f7f5;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #1e2a2a;
  color: #1e2a2a;
}

.btn--light {
  background: #f6f7f5;
  color: #1e2a2a;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fdfdfd;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 30px rgba(22, 26, 26, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .card-body {
  padding: 18px 20px 24px;
}

.price {
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
}

.image-frame {
  background: #d8e0dd;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.form-shell {
  background: #fdfdfd;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(22, 26, 26, 0.1);
}

.form-shell label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-shell select,
.form-shell input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd4d2;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer {
  padding: 40px 6%;
  background: #1e2a2a;
  color: #f6f7f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.footer small {
  display: block;
  max-width: 840px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1e2a2a;
  color: #f6f7f5;
  padding: 12px 18px;
  border-radius: 22px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fdfdfd;
  color: #1e2a2a;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 30px rgba(22, 26, 26, 0.2);
  max-width: 340px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 18px;
  background: #e5ece8;
}

.note {
  background: #eef2f0;
  padding: 14px 16px;
  border-radius: 14px;
}

.muted {
  color: #5d6b68;
}

.spacer-16 {
  height: 16px;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .panel {
    padding: 50px 6%;
  }
}
