:root {
  color-scheme: light;
  --bg: #f5f2ed;
  --bg-alt: #eef3ee;
  --bg-dark: #1d2a1f;
  --text: #1d241c;
  --muted: #5c6a5b;
  --accent: #4b7b3f;
  --accent-strong: #355e2c;
  --card: #ffffff;
  --border: #d7dfd6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--bg-dark);
  color: #f4f7f3;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  font-weight: 600;
}

.ad-label {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.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 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
}

.btn:hover {
  background: var(--accent-strong);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 32px 40px 120px;
}

.section {
  padding: 36px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.hero {
  padding: 60px 50px;
  border-radius: 32px;
  color: #ffffff;
  background: #2d3f2f;
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 42, 31, 0.62);
  border-radius: 32px;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 18px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split {
  display: flex;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.media-card {
  background-color: #e7efe7;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.highlight {
  background: var(--bg-alt);
  border-radius: 28px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: underline;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background-color: #e3e9e0;
  border-radius: 18px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-strong);
}

.process {
  background: #203021;
  color: #f5f7f2;
  padding: 40px;
  border-radius: 30px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 48, 33, 0.72);
  border-radius: 30px;
}

.process > * {
  position: relative;
  z-index: 1;
}

.steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  flex: 1 1 200px;
}

.form-section {
  background: var(--card);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
}

.testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 16px;
  flex: 1 1 220px;
}

.footer {
  margin-top: 30px;
  padding: 24px;
  background: #f0f2ee;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sticky-cta:hover {
  background: var(--accent-strong);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  max-width: 300px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 12px;
}

.hero-alt {
  padding: 50px 40px;
  border-radius: 30px;
  background: var(--bg-alt);
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-alt img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.hero-alt .media {
  background-color: #e2eadf;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}

.contact-block {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-visual {
  background-color: #e6efe4;
  border-radius: 24px;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
  }

  .content {
    padding: 28px 22px 120px;
  }

  .split,
  .hero-alt {
    flex-direction: column;
  }
}
