*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #4f5f58;
  --accent: #2f8f7a;
  --accent-strong: #1e6b5b;
  --accent-soft: #e3f3ef;
  --sand: #f5f1ea;
  --sunset: #f6e5d3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 42, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 0 0 80px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 40px 0;
}

.section.alt {
  background: var(--sand);
}

.section.highlight {
  background: var(--accent-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-strong);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent-strong);
}

.button:focus-visible,
.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 20;
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.desktop-nav {
  display: none;
  gap: 24px;
  font-weight: 600;
}

.menu-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-strong);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 25;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 0 30px;
}

.hero-card {
  background: var(--sunset);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list,
.card-grid,
.stats-grid,
.testimonial-grid,
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(31, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.border {
  border: 1px solid rgba(31, 42, 36, 0.08);
  box-shadow: none;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-row svg {
  width: 36px;
  height: 36px;
}

.stats-grid .card {
  align-items: flex-start;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.testimonial {
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial span {
  font-weight: 600;
  color: var(--ink);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 36, 0.12);
  padding: 16px;
  background: var(--white);
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.faq-item button span {
  font-size: 1.3rem;
}

.faq-item .answer {
  margin-top: 12px;
  display: none;
}

.faq-item.is-open .answer {
  display: block;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-panel {
  background: var(--accent);
  color: var(--white);
  padding: 26px;
  border-radius: 20px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--white);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-price {
  font-weight: 700;
  color: var(--accent-strong);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(31, 42, 36, 0.1);
  padding-bottom: 12px;
}

.comparison-row:last-child {
  border-bottom: none;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 50px 0 60px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 36, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 42, 36, 0.1);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-toggle {
  width: 44px;
  height: 24px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-features {
    flex: 1;
  }

  .feature-list,
  .card-grid,
  .stats-grid,
  .testimonial-grid,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .two-column,
  .footer-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-column > * {
    flex: 1;
  }

  .comparison-row {
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .card,
  .testimonial,
  .service-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}
