*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --ink: #1f1f1c;
  --muted: #6c6a63;
  --accent: #2f6b58;
  --accent-dark: #224c3e;
  --sand: #efe8d8;
  --stone: #e1e4df;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  --radius: 18px;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 40px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-right: 1px solid var(--stone);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--sand);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 48px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split {
  flex-direction: row;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.section.inverse {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section.sand {
  background: var(--sand);
  padding: 32px;
  border-radius: var(--radius);
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-visual {
  flex: 1 1 280px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 56px;
  height: 56px;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 160px;
  background: var(--stone);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.price-item span {
  color: var(--muted);
}

.quote {
  font-style: italic;
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.form-shell {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1 1 220px;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--stone);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.reject {
  background: transparent;
  color: var(--accent-dark);
}

.notice {
  font-size: 0.88rem;
  color: var(--muted);
}

.list-inline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.list-inline span {
  background: var(--stone);
  padding: 8px 12px;
  border-radius: 999px;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack img {
  flex: 1 1 160px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.timeline-item strong {
  min-width: 120px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--stone);
  }

  .main {
    padding: 32px 6vw 80px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 600px) {
  .sidebar {
    padding: 24px;
    gap: 20px;
  }

  .nav-links {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero {
    flex-direction: column;
  }
}
