* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f5f2;
  --text: #1e2430;
  --muted: #566072;
  --brand: #1f6f78;
  --brand-dark: #15525a;
  --accent: #d6a85f;
  --surface: #ffffff;
  --surface-alt: #eef2f3;
  --border: #d7dde3;
  --shadow: 0 10px 30px rgba(21, 33, 47, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 8px 12px;
  background: var(--brand);
  color: #fff;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.site-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: min(320px, 85%);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right 0.3s ease;
}

.site-nav.open {
  right: 0;
}

.site-nav a {
  padding: 8px 0;
  font-weight: 600;
  color: var(--text);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.hero {
  padding: 48px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.highlight {
  background: var(--brand);
  color: #fff;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
}

.section.highlight .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.alt {
  background: var(--surface-alt);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row img {
  width: 40px;
  height: 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  background: var(--surface);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 16px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  width: 100%;
  font-weight: 600;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.faq-answer {
  margin-top: 12px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta-panel {
  background: var(--accent);
  color: var(--text);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  background: #11151c;
  color: #e7ebef;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.footer small {
  color: #b4bcc8;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 70;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-button {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.page-header {
  padding: 32px 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal h2 {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    height: auto;
    width: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
    gap: 20px;
  }

  .site-nav a {
    padding: 4px 0;
  }

  .nav-overlay {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 16px);
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .quote {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 64px 0 56px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: row;
  }
}
