* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5a5a5a;
  --brand: #1e4a6f;
  --accent: #f09b55;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

header {
  padding: 28px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.9rem;
  color: var(--muted);
}

nav a:hover {
  color: var(--brand);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw;
  position: relative;
}

.split-section.reverse {
  flex-direction: column;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split-content h1,
.split-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.split-content h3 {
  font-size: 1.35rem;
}

.muted {
  color: var(--muted);
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  background: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: none;
}

.button.accent {
  background: var(--accent);
  color: #1a1a1a;
}

.inline-link {
  font-weight: 600;
  color: var(--brand);
  border-bottom: 1px solid rgba(30, 74, 111, 0.3);
}

.layered {
  background: var(--surface);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.4rem;
  color: var(--brand);
}

.quote {
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.service-details {
  display: flex;
  gap: 14px;
  align-items: center;
}

.service-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 48px 6vw;
  background: #0f1d2a;
  color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f6f6;
  opacity: 0.8;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 155, 85, 0.15);
  color: #5a3908;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 8;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 18px 6vw;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.12);
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-bg {
  background: linear-gradient(120deg, rgba(30, 74, 111, 0.12), rgba(240, 155, 85, 0.12)),
    url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.soft-bg {
  background: linear-gradient(140deg, rgba(240, 155, 85, 0.12), rgba(30, 74, 111, 0.08));
}

.media-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  margin-top: 12px;
}

.section-divider {
  width: 72px;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .service-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .service-item .service-details {
    max-width: 65%;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
