:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --ink: #1b1f24;
  --muted: #5a6875;
  --brand: #1f3a5f;
  --brand-soft: #e6edf5;
  --accent: #e07a5f;
  --accent-soft: #fde7df;
  --gold: #f4b860;
  --border: #e4e0d6;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  display: inline-block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-panel {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-panel-inner {
  background: var(--surface);
  width: min(320px, 86%);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--brand-soft);
  font-weight: 600;
}

.nav-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
}

.nav-open .nav-panel-inner {
  transform: translateX(0);
}

.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button-secondary {
  background: var(--accent);
}

.button-ghost {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--surface);
}

.section-accent {
  background: var(--brand);
  color: #fff;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-alt {
  background: var(--brand-soft);
  border: none;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-bar {
  background: var(--brand-soft);
  border-radius: 999px;
  overflow: hidden;
  height: 12px;
}

.stat-bar .bar {
  display: block;
  height: 12px;
  background: var(--accent);
}

.bar-65 {
  width: 65%;
}

.bar-78 {
  width: 78%;
}

.bar-82 {
  width: 82%;
}

.bar-92 {
  width: 92%;
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 12px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.footer {
  background: #141a21;
  color: #d9e0ea;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-small {
  font-size: 0.85rem;
  color: #a9b4c3;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px 0;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.address {
  font-style: normal;
  color: var(--muted);
}

.contact-card {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.table-row:last-child {
  border-bottom: none;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 12px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.notice {
  background: var(--accent-soft);
  padding: 16px;
  border-radius: 14px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel-inner {
    transform: none;
    height: auto;
    width: auto;
    padding: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }

  .nav-links {
    flex-direction: row;
    gap: 14px;
  }

  .nav-links a {
    background: transparent;
    padding: 6px 8px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split-panel {
    flex: 1;
  }

  .stat-row {
    flex-direction: row;
  }

  .stat-row > div {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid > div {
    flex: 1;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }
}
