*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --forest: #0f1f16;
  --moss: #2b4a38;
  --leaf: #4f7b55;
  --sun: #f4d06f;
  --clay: #c97d4b;
  --stone: #f3f1ec;
  --mist: #f8f6f1;
  --ink: #1f2a22;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--forest);
  color: #f6f3ea;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #b9c9b6;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-list a {
  font-size: 15px;
  color: #f6f3ea;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-list a:hover {
  border-bottom-color: #f6f3ea;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--sun);
  color: #3c2f16;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: #f6f3ea;
  border: 1px solid #f6f3ea;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 38px;
  background: var(--mist);
}

.section {
  padding: 42px 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.stone {
  background: var(--stone);
}

.section.moss {
  background: #e8f0e4;
}

.section-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("leaf-pattern.svg");
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
}

.section-overlay > * {
  position: relative;
  z-index: 1;
}

.section-split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-image {
  flex: 0.9;
  position: relative;
}

.floating-card {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 31, 22, 0.12);
  position: absolute;
  bottom: -20px;
  right: 12px;
  width: 68%;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #dbe8d8;
  color: #1f2a22;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(15, 31, 22, 0.1);
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--moss);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--leaf);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.inline-cta {
  color: var(--moss);
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 38px rgba(15, 31, 22, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd8cc;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  padding: 26px 52px 46px;
  background: var(--forest);
  color: #f6f3ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 10px 22px rgba(15, 31, 22, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a251d;
  color: #f6f3ea;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .section {
    padding: 32px 24px;
  }

  .section-split,
  .section-split.reverse {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    width: 100%;
  }

  .footer {
    padding: 24px;
  }
}
