* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --bg-alt: #ffffff;
  --accent: #2f4b3f;
  --accent-light: #4f6a5d;
  --text: #1c1c1c;
  --muted: #5c5c5c;
  --gold: #b08d57;
  --border: #e2dbd1;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand span {
  color: var(--accent);
}

.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-alt);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-menu.open {
  display: flex;
}

.nav-menu a {
  font-weight: 600;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.7rem;
}

.section-header p {
  color: var(--muted);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card .icon {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: var(--accent);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.stat-item strong {
  font-size: 1.8rem;
  color: var(--accent);
}

.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  background: var(--bg-alt);
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-alt);
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item button span {
  color: var(--accent);
}

.faq-content {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.footer {
  background: #151515;
  color: #eaeaea;
  padding: 2.5rem 0;
}

.footer a {
  color: #eaeaea;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer small {
  color: #b7b7b7;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.modal-overlay.visible {
  display: flex;
}

.modal {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 2rem;
  width: min(500px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal h3 {
  margin-bottom: 0.5rem;
}

.modal label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.notice {
  background: #fff8e8;
  border: 1px solid #f0d8a8;
  padding: 1.5rem;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    border: none;
    padding: 0;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stat-list {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}
