*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3f0;
  --surface: #ffffff;
  --ink: #1f1c1a;
  --muted: #6d645f;
  --brand: #2c4f4a;
  --accent: #c98a5f;
  --sand: #efe7e0;
  --shadow: 0 18px 40px rgba(31, 28, 26, 0.12);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 240, 0.96);
  border-bottom: 1px solid rgba(31, 28, 26, 0.08);
  backdrop-filter: blur(8px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-toggle {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav {
  position: fixed;
  inset: 70px 16px auto 16px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--sand);
}

body.nav-open .site-nav {
  display: flex;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.cta.alt {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

main section {
  padding: 64px 0;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 14px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 28px;
}

.hero {
  padding: 72px 0 60px;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.card.highlight {
  background: var(--brand);
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--sand);
  padding: 18px;
  border-radius: 12px;
}

.stat strong {
  font-size: 1.4rem;
  display: block;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 22px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--surface);
  padding: 22px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 28, 26, 0.08);
}

.comparison-row:last-child {
  border-bottom: none;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  width: 100%;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.faq-content {
  margin-top: 12px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.info-block {
  background: var(--surface);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 28, 26, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 20px;
}

.cookie-modal .modal-inner {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  width: min(540px, 92%);
  box-shadow: var(--shadow);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.toggle-btn {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
}

footer {
  background: var(--ink);
  color: #fff;
  padding: 50px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 18px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero .hero-inner,
  .split,
  .cards,
  .service-grid,
  .testimonials,
  .stat-row,
  .footer-grid {
    flex-direction: row;
  }

  .hero .hero-inner > * {
    flex: 1;
  }

  .cards .card,
  .service-card,
  .quote,
  .stat,
  .split-panel {
    flex: 1;
  }

  .stat-row {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }
}
