* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --charcoal: #1e2a32;
  --slate: #405261;
  --mist: #f2f4f6;
  --ocean: #1f6f8b;
  --sage: #5c8f7b;
  --gold: #d7b37c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(30, 42, 50, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e2e6ea;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--slate);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--ocean);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d2d8de;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-top: 1px solid #e2e6ea;
  padding: 16px 0 22px;
}

.mobile-menu a {
  color: var(--slate);
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  padding: 64px 0 40px;
  background: var(--mist);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--ocean);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: var(--white);
  color: var(--ocean);
  border: 1px solid var(--ocean);
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: var(--mist);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.section-intro {
  color: var(--slate);
  margin-bottom: 26px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 1.2rem;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 22px;
  height: 22px;
}

.highlight-panel {
  background: var(--ocean);
  color: var(--white);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e6ea;
}

.comparison-table th {
  background: var(--mist);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  width: 100%;
  text-align: left;
  gap: 12px;
}

.faq-answer {
  margin-top: 12px;
  color: var(--slate);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.footer-links a {
  color: var(--white);
  font-size: 0.95rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
}

.service-card {
  border: 1px solid #e2e6ea;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--ocean);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  background: var(--mist);
  padding: 14px 16px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  width: min(960px, 92%);
  display: none;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 42, 50, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  width: min(720px, 94%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--mist);
}

.toggle {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #c7d1d8;
  position: relative;
  flex-shrink: 0;
}

.toggle::after {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}

.toggle.is-active {
  background: var(--sage);
}

.toggle.is-active::after {
  transform: translateX(20px);
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--ocean);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card,
  .card-grid .service-card,
  .card-grid .stat {
    flex: 1 1 calc(50% - 18px);
  }

  .stats-bar {
    flex-direction: row;
  }

  .stats-bar .stat {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1 1 calc(50% - 16px);
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .card-grid .card,
  .card-grid .service-card,
  .card-grid .stat {
    flex: 1 1 calc(33.333% - 18px);
  }
}
