* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #1f2a24;
  --muted: #5a6a62;
  --accent: #2d6b5f;
  --accent-soft: #e1eee9;
  --sand: #f0e6d6;
  --highlight: #d9efe7;
  --border: #d8d2c8;
  --shadow: 0 18px 45px rgba(23, 39, 32, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--surface);
}

.section.soft {
  background: var(--accent-soft);
}

.section.sand {
  background: var(--sand);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(45, 107, 95, 0.25);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 2px;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  position: absolute;
  right: 4%;
  top: 72px;
  min-width: 190px;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

body.nav-open .nav-links {
  display: flex;
}

body.nav-open .nav-overlay {
  display: block;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21, 32, 27, 0.4);
  z-index: 5;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--highlight);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats-row,
.cards-row,
.split-row,
.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card.soft {
  background: var(--accent-soft);
}

.card.sand {
  background: var(--sand);
}

.icon-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.list-check li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.list-check svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  margin-top: 0.2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 12px;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.3rem;
  color: var(--accent);
}

.testimonial {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial .name {
  font-weight: 600;
  color: var(--ink);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-panel p {
  color: #e8f4ef;
}

.footer {
  background: #1f2a24;
  color: #e8efe9;
  padding: 3rem 0 2rem;
}

.footer a {
  color: #e8efe9;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #b8c5bd;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 28, 23, 0.6);
  z-index: 30;
}

.cookie-modal .modal-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  background: var(--bg);
}

.cookie-toggle button {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  background: var(--surface);
  cursor: pointer;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contact-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.table-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 0.6rem;
  gap: 1rem;
}

.table-row span:last-child {
  font-weight: 600;
  text-align: right;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spaced-top {
  margin-top: 1.5rem;
}

.tag {
  background: var(--highlight);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 720px) {
  h1 {
    font-size: 2.9rem;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 1.5rem;
  }

  .nav-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .hero-grid,
  .cards-row,
  .split-row,
  .stats-row,
  .icon-row,
  .footer-columns,
  .cookie-actions,
  .comparison {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .cards-row > *,
  .icon-row > *,
  .stats-row > *,
  .comparison > * {
    flex: 1;
  }

  .split-row > * {
    flex: 1;
  }

  .cookie-actions {
    align-items: center;
  }
}

@media (min-width: 960px) {
  .section {
    padding: 4.5rem 0;
  }

  .service-card {
    min-height: 220px;
  }
}
