* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f1;
  --text: #1f1b1a;
  --muted: #5f5854;
  --accent: #3b6b6f;
  --accent-dark: #2b4f53;
  --panel: #ffffff;
  --soft: #efe9e4;
  --outline: #d7cdc4;
  --highlight: #efe5d8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--panel);
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--accent);
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--outline);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--outline);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--panel);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  position: absolute;
  right: 4vw;
  top: 72px;
  min-width: 200px;
}

.nav-links a {
  padding: 8px 0;
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.quote {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
}

.quote p {
  color: #f2f7f7;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--outline);
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--outline);
  background: var(--panel);
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 4px solid var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--outline);
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
}

.cookie-banner {
  bottom: 0;
  background: var(--panel);
  border-top: 1px solid var(--outline);
  padding: 16px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-modal {
  inset: 0;
  background: rgba(31, 27, 26, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: var(--panel);
  border-radius: 16px;
  padding: 24px;
  width: min(520px, 92vw);
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
}

.footer {
  background: #1f1b1a;
  color: #f3ede6;
  padding: 40px 0;
}

.footer a {
  color: #f3ede6;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: #c7bdb5;
}

.notice {
  background: var(--highlight);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--outline);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .services-table {
    gap: 20px;
  }

  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .service-row .stack {
    max-width: 70%;
  }

  .cookie-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 18px;
    border: none;
    padding: 0;
    background: transparent;
  }
}
