* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #7b9367;
  --moss: #4e5f3f;
  --soil: #2f2a24;
  --cream: #f7f3eb;
  --sun: #e8c57a;
  --rose: #c97a6b;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--soil);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: #ede7dc;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(47, 42, 36, 0.12);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--moss);
  color: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  text-align: center;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 40px 120px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(47, 42, 36, 0.08);
}

.section.alt {
  background: #f1efe8;
}

.section.stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section.split {
  align-items: stretch;
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--moss);
  font-weight: 600;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: var(--sage);
  color: #fff;
}

.button.secondary {
  background: #fff;
  border: 1px solid var(--moss);
  color: var(--moss);
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #e6e0d4;
  font-size: 13px;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--rose);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(201, 122, 107, 0.4);
  z-index: 20;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(47, 42, 36, 0.08);
}

.card img {
  border-radius: 14px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--moss);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--sage);
  min-width: 36px;
}

.testimonial {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(47, 42, 36, 0.08);
}

.form-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-size: 14px;
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(47, 42, 36, 0.2);
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row > div {
  flex: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 14px 30px rgba(47, 42, 36, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.footer {
  font-size: 13px;
  color: rgba(47, 42, 36, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.simple-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .section {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    flex-direction: column;
  }
}
