* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5a5d67;
  --accent: #2c5ce0;
  --accent-soft: #e7ecff;
  --sand: #f4f1ed;
  --paper: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 6vw 16px;
  border-bottom: 1px solid #ececec;
  background: var(--paper);
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 36px 6vw 48px;
  gap: 28px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: #d9d9dd;
}

.hero-art {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 48px 6vw;
}

.section-sand {
  background: var(--sand);
}

.section-accent {
  background: var(--accent-soft);
}

.mag-columns {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mag-columns .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-card {
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature img {
  width: 72px;
  height: 72px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  padding: 22px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.split-highlight {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ececec;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d9dd;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw 40px;
  background: #101116;
  color: #f4f4f6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f4f4f6;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid #d8d8dc;
  background: #fff;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ececec;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal h2 {
  font-size: 1.4rem;
}

.legal p {
  color: var(--muted);
}

.centered {
  text-align: center;
}

.page-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-art {
    flex: 0.9;
  }

  .mag-columns {
    flex-direction: row;
  }

  .mag-columns .col {
    flex: 1;
  }

  .stat-row,
  .quote-row,
  .services-grid,
  .feature-strip,
  .image-row {
    flex-direction: row;
  }

  .stat-card,
  .quote-card,
  .service-card,
  .feature,
  .image-row img {
    flex: 1;
  }

  .split-highlight {
    flex-direction: row;
    align-items: center;
  }

  .split-highlight .copy {
    flex: 1.1;
  }

  .split-highlight .form-panel {
    flex: 0.9;
  }

  .cookie-banner {
    left: 32px;
    bottom: 32px;
  }
}
