* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f1a;
  --muted: #5a6256;
  --accent: #1f7a5a;
  --accent-soft: #e4f2ec;
  --sand: #f4f1ea;
  --stone: #d7d2c6;
  --shadow: 0 22px 45px rgba(20, 28, 22, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf9f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #ffffff;
  border-bottom: 1px solid var(--stone);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.sidebar-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px;
}

.hero {
  background: linear-gradient(120deg, rgba(31, 122, 90, 0.12), rgba(250, 249, 246, 0.9)),
    url("https://images.unsplash.com/photo-1517849845537-4d257902454a?q=80&w=1600&auto=format&fit=crop")
      center/cover no-repeat;
  padding: 48px 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.hero p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.section-lead {
  color: var(--muted);
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split img {
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.tag {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  align-self: flex-start;
}

.highlight {
  background: var(--sand);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  color: var(--muted);
}

.form-box {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid var(--stone);
  padding: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-stack img {
  border-radius: 20px;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
    border-bottom: none;
    border-right: 1px solid var(--stone);
  }

  .content {
    padding: 40px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-item {
    flex: 1 1 220px;
  }
}
