/* Base */
:root {
  --ink: #1b2430;
  --muted: #516174;
  --brand: #2b6cb0;
  --brand-dark: #1d4f8f;
  --accent: #f0b429;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --border: #d7deea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--border {
  border-top: 1px solid var(--border);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--brand);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn.btn--ghost {
  background: transparent;
  color: var(--brand);
}

.btn.btn--ghost:hover,
.btn.btn--ghost:focus {
  background: var(--brand);
  color: #fff;
}

.pill {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e9effa;
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--ink);
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

@media (min-width: 768px) {
  .container {
    max-width: 1100px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    padding: 0;
  }
}

/* Layout utilities */
.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 240px;
}

.card.highlight {
  background: #eff4ff;
  border-color: #c9d6f5;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .stats {
    flex-direction: row;
  }
}

.stat {
  flex: 1;
  background: var(--surface);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.quote {
  font-size: 1.25rem;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.timeline-item span {
  font-weight: 700;
  color: var(--brand);
  min-width: 60px;
}

/* Services */
.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: var(--surface);
}

@media (min-width: 900px) {
  .comparison-row {
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
  }
}

/* Testimonials */
.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #cbd5f5;
}

/* Cookie banner + modal */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 80;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 1.5rem;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.toggle-row span {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map-card {
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  background: #f8f9fd;
}

.list-columns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .list-columns {
    flex-direction: row;
    gap: 2rem;
  }
}

.list-columns ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* Tables */
.simple-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.simple-table th,
.simple-table td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.simple-table th {
  color: var(--muted);
}

/* Spacing utilities */
.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.ml-1 {
  margin-left: 0.75rem;
}
