* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5f66;
  --sand: #f4f1ed;
  --stone: #e2ded8;
  --green: #0f5e4f;
  --accent: #b4582c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 6vw 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 6vh 6vw 10vh;
  background: var(--sand);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}

.hero p {
  max-width: 560px;
  font-size: 18px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.hero-visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visuals img {
  height: 280px;
  object-fit: cover;
}

.section {
  padding: 8vh 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.dark .muted {
  color: #d9d5ce;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card.dark {
  background: #202024;
  color: var(--white);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.quote {
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: #fdf5ef;
  border-radius: 12px;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 18px;
  background: var(--stone);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  cursor: pointer;
}

.service-option input {
  accent-color: var(--accent);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
}

.footer {
  padding: 40px 6vw;
  background: #111114;
  color: #e0ddd6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  display: none;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.simple-header {
  padding: 30px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
}

.simple-main {
  padding: 6vh 6vw 10vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-main ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visuals {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .cards .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-grid .card {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
