* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --brand: #2f4a63;
  --brand-dark: #1f3245;
  --accent: #c7a26b;
  --ink: #1a1a1a;
  --muted: #5b6773;
  --bg: #f7f5f2;
  --surface: #ffffff;
  --border: #e1ddd7;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
}

.nav-links {
  display: none;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.menu-toggle {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-dark {
  background: var(--brand-dark);
  color: #f9f7f4;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}

.section-dark .section-title {
  color: #f9f7f4;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.section-dark .lead {
  color: #efe9df;
}

.grid-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;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.06);
}

.card.highlight {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(199, 162, 107, 0.25);
}

.icon {
  width: 48px;
  height: 48px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  background: rgba(47, 74, 99, 0.1);
  color: var(--brand-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.3rem;
  color: var(--brand-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: rgba(47, 74, 99, 0.08);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-item strong {
  font-size: 1.4rem;
  color: var(--brand-dark);
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 1.4rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.list li {
  list-style: none;
  padding-left: 1.3rem;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comparison .card {
  flex: 1;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.footer {
  background: #121a24;
  color: #d7dde4;
  padding: 2.5rem 0;
}

.footer .grid-row {
  gap: 2rem;
}

.footer a {
  color: #d7dde4;
}

.footer .small {
  font-size: 0.85rem;
  color: #b7c0cb;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillars .card {
  background: #fff8f0;
}

.service-price {
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 92%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 18px 38px rgba(26, 26, 26, 0.18);
  display: none;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 30, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fdfbf8;
}

.cookie-toggle button {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

@media (min-width: 780px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .grid-row {
    flex-direction: row;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-panel {
    flex: 0.8;
  }

  .stats {
    flex-direction: row;
  }

  .pillars {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .footer .grid-row {
    flex-direction: row;
  }
}
