* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1c1c1a;
  --muted: #5f5f57;
  --accent: #2f6f62;
  --accent-dark: #204e46;
  --warm: #f0e6d8;
  --cool: #e7eef1;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--warm);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.layered {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--cool);
  padding: 28px;
  border-radius: 18px;
}

.offset-card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  align-self: flex-start;
  max-width: 520px;
}

.offset-card.right {
  align-self: flex-end;
}

.section {
  margin: 56px 0;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: var(--accent-dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid var(--accent);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight {
  background: #fff5d6;
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-wrap {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
}

.form button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #1f1f1d;
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #fff;
  color: var(--accent-dark);
}

.note {
  background: var(--cool);
  padding: 18px;
  border-radius: 16px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  border-radius: 18px;
}

@media (min-width: 860px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .card-row,
  .service-grid,
  .metrics {
    flex-direction: row;
  }

  .card,
  .service,
  .metric {
    flex: 1;
  }

  .image-stack {
    flex-direction: row;
  }
}
