:root {
  --bg: #f6f3ef;
  --text: #1d1b19;
  --muted: #5d5852;
  --brand: #2f5d5a;
  --brand-dark: #224341;
  --accent: #d59a5a;
  --surface: #ffffff;
  --surface-alt: #efe9e2;
  --border: #d8d1c9;
  --shadow: 0 10px 30px rgba(29, 27, 25, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--tight {
  padding: 40px 0;
}

.section__title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 0 0 16px;
}

.section__intro {
  color: var(--muted);
  max-width: 720px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--brand);
  color: #fff;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-dark);
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav__toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav__toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text);
  left: 0;
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__links {
  display: none;
  gap: 24px;
  font-weight: 600;
}

.nav__links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  border-color: var(--accent);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 25, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu__panel {
  background: var(--surface);
  width: min(320px, 80vw);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--text);
}

.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-open .mobile-menu__panel {
  transform: translateX(0);
}

.hero {
  padding: 80px 0 60px;
  background: var(--surface);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.hero__panel {
  background: var(--surface-alt);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__title {
  font-size: 1.2rem;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 93, 90, 0.1);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item img {
  width: 28px;
  height: 28px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.6rem;
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 32px;
  border-radius: 20px;
}

.quote p {
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--border);
  padding-left: 20px;
}

.timeline__item {
  position: relative;
  padding-left: 12px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq__answer {
  margin-top: 12px;
  color: var(--muted);
  display: none;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison__row {
  background: var(--surface);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.site-footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: none;
  z-index: 200;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 25, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 220;
  padding: 24px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  width: min(560px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.cookie-option input {
  width: 18px;
  height: 18px;
}

@media (min-width: 860px) {
  .nav__toggle {
    display: none;
  }

  .nav__links {
    display: flex;
  }

  .hero__content {
    flex-direction: row;
    align-items: center;
  }

  .hero__content > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
  }

  .card-grid .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .services-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 16px);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison__row {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > * {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
