:root {
  --bg: #f7f4f0;
  --text: #1f2a2e;
  --muted: #5b6b73;
  --primary: #1b6e6a;
  --primary-dark: #14514e;
  --accent: #d88b4c;
  --light: #ffffff;
  --shadow: 0 14px 30px rgba(15, 33, 37, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--light);
  border-bottom: 1px solid rgba(31, 42, 46, 0.1);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 1.2rem;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--light);
  padding: 1rem 5%;
  border-top: 1px solid rgba(31, 42, 46, 0.1);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, #f0ebe5 0%, #f6f8f7 100%);
}

.hero--compact {
  padding: 3rem 0 2.5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero__card-title {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.section {
  padding: 3rem 0;
}

.section--muted {
  background: #f0ede8;
}

.section--dark {
  background: var(--primary-dark);
  color: var(--light);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 0.8rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.panel,
.highlight,
.info-block {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
}

.list,
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checklist li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  background: var(--light);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.step-number {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-grid--light div {
  background: var(--light);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  color: inherit;
}

.stat-label {
  font-size: 0.9rem;
  color: inherit;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-content {
  display: none;
  padding: 0 1.2rem 1rem;
}

.faq-item.is-open .faq-content {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.8rem;
}

.cta {
  background: var(--primary);
  color: var(--light);
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta p,
.cta h2 {
  color: var(--light);
}

.site-footer {
  padding: 2.5rem 0;
  background: #1c2428;
  color: #eef2f4;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.muted {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--light);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 28, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__panel {
  background: var(--light);
  border-radius: 18px;
  padding: 1.5rem;
  width: min(540px, 100%);
  box-shadow: var(--shadow);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icon-button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f4f1ed;
  padding: 1rem;
  border-radius: 12px;
}

.toggle {
  border: 1px solid var(--primary);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

.toggle.is-active {
  background: var(--primary);
  color: var(--light);
}

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 720px) {
  h1 {
    font-size: 2.6rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero__content {
    flex-direction: row;
    align-items: center;
  }

  .button-row {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .card-grid,
  .feature-list,
  .steps,
  .testimonial-grid,
  .comparison,
  .stats-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .step,
  .testimonial,
  .comparison-card {
    flex: 1 1 calc(33% - 1rem);
  }

  .stats-grid div {
    flex: 1 1 calc(33% - 1rem);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    left: auto;
    right: 2rem;
    max-width: 420px;
  }

  .cookie-actions,
  .cookie-modal__actions {
    flex-direction: row;
  }
}
