/* Base */
:root {
  --brand-900: #1e2a39;
  --brand-700: #2f4a63;
  --brand-500: #3a6b8a;
  --brand-300: #7fb3c8;
  --accent-500: #e6a23c;
  --neutral-100: #f7f6f3;
  --neutral-200: #ece9e4;
  --neutral-600: #6a6a6a;
  --neutral-900: #222222;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(30, 42, 57, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--neutral-900);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--neutral-100);
}

.section.dark {
  background: var(--brand-900);
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  color: var(--brand-500);
  margin-bottom: 12px;
}

.section.dark .eyebrow {
  color: var(--brand-300);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--neutral-600);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--brand-500);
  color: var(--white);
  border-radius: 999px;
  border: 2px solid transparent;
  transition: 0.2s ease;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border-color: var(--brand-500);
  color: var(--brand-500);
}

.btn.light {
  background: var(--white);
  color: var(--brand-900);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(30, 42, 57, 0.08);
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-900);
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--neutral-200);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.nav {
  position: absolute;
  top: 70px;
  right: 5%;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.nav.open {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  font-weight: 600;
  color: var(--brand-900);
}

@media (min-width: 880px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    box-shadow: none;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    gap: 22px;
  }
}

/* Layout helpers */
.flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 880px) {
  .flex.row {
    flex-direction: row;
  }

  .flex.row.gap-lg {
    gap: 48px;
  }

  .flex.row.center {
    align-items: center;
  }
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 760px) {
  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 240px;
}

.card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.highlight {
  background: var(--brand-700);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius);
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--neutral-100);
  border-radius: 999px;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.stat span {
  color: var(--brand-500);
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--neutral-100);
  border-radius: 999px;
}

/* Services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item strong {
  color: var(--brand-900);
}

.price {
  font-weight: 700;
  color: var(--brand-500);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: var(--neutral-100);
  padding: 14px 18px;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--brand-900);
  color: var(--white);
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 42, 57, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pref-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pref-item {
  background: var(--neutral-100);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag {
  background: var(--neutral-200);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Utility */
.muted {
  color: var(--neutral-600);
}

.divider {
  height: 1px;
  background: var(--neutral-200);
  margin: 20px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--neutral-100);
  font-size: 0.85rem;
  font-weight: 600;
}

.section.dark .badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.spacer-sm {
  height: 16px;
}
