*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --ink: #1e1f22;
  --muted: #5a5f66;
  --brand: #2c5b63;
  --brand-dark: #23474d;
  --accent: #d19c60;
  --border: #e2ded7;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.title {
  margin: 10px 0 14px;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 72px;
  right: 16px;
  min-width: 200px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.hero {
  padding: 72px 0 64px;
}

.hero .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: none;
  padding: 12px 20px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
}

.stat h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--brand);
}

.panel {
  background: var(--brand);
  color: #fff;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel .btn.secondary {
  border-color: #fff;
  color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 16px;
}

.quote span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}

.faq-item button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.faq-content {
  display: none;
  margin-top: 10px;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.table-row {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-weight: 700;
  color: var(--brand);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
}

.site-footer {
  background: #151616;
  color: #f5f2ec;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #f5f2ec;
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.cookie-banner.hidden,
.cookie-modal.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 300;
}

.cookie-modal .modal-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 12px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  z-index: 999;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .hero .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero .hero-grid > * {
    flex: 1;
  }

  .card-list,
  .testimonial-grid,
  .stats,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .info-card,
  .table-row {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
