*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1f23;
  --muted: #5b6572;
  --brand: #1f4b3b;
  --brand-soft: #e8f2ee;
  --accent: #f4b61a;
  --surface: #f7f6f2;
  --card: #ffffff;
  --line: #d7dadd;
  --shadow: 0 18px 40px rgba(29, 31, 35, 0.08);
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand);
  font-size: 1.1rem;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--brand);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

.hero {
  padding: 4rem 0 3rem;
  background: var(--surface);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
  color: var(--brand);
}

.hero p {
  color: var(--muted);
  margin: 0;
  max-width: 55ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #17372c;
}

.btn-secondary {
  background: var(--card);
  border-color: var(--line);
  color: var(--brand);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--brand);
  color: var(--brand);
}

section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--brand);
}

.section-lead {
  color: var(--muted);
  max-width: 65ch;
  margin-bottom: 2rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-panel {
  background: var(--brand);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
}

.highlight-panel h3 {
  margin-top: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: var(--brand-soft);
  border-radius: 1rem;
  padding: 1.4rem;
}

.stat-item strong {
  font-size: 1.4rem;
  color: var(--brand);
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.icon-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-item img {
  width: 46px;
  height: 46px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 1rem;
}

.quote {
  font-style: italic;
  margin: 0 0 0.7rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: 600;
  text-align: left;
  padding: 0;
  cursor: pointer;
  color: var(--brand);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 260px;
  margin-top: 0.6rem;
  color: var(--muted);
}

.cta {
  background: var(--brand-soft);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer {
  background: #121615;
  color: #dfe5e2;
  padding: 2.5rem 0;
}

.footer a {
  color: #dfe5e2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.6rem;
  background: #ffffff;
}

.service-card h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface);
}

.info-block {
  background: var(--surface);
  border-radius: 1.2rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  width: min(520px, 90%);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem;
  width: min(560px, 95%);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
  gap: 1rem;
}

.cookie-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: var(--card);
  cursor: pointer;
  font-weight: 600;
  color: var(--brand);
}

.cookie-toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .cards,
  .service-list,
  .icon-row,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .service-card,
  .stat-item {
    flex: 1 1 250px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 200px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    right: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav-menu.open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
  }
}
