* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --brand-900: #1f2a44;
  --brand-700: #2f4b7c;
  --brand-500: #3f6ab5;
  --brand-200: #c9d8f0;
  --accent: #e4b24a;
  --muted: #5a6475;
  --bg-soft: #f4f6fb;
  --bg-alt: #f9f2e4;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(31, 42, 68, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--brand-900);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--brand-200);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-900);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--brand-200);
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav-list {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  right: 4%;
  top: 4.1rem;
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.nav-list.is-open {
  display: flex;
}

.nav-list a {
  font-weight: 500;
  color: var(--brand-700);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--brand-900);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  background: var(--brand-700);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-900);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--brand-700);
  color: var(--brand-700);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--brand-200);
}

main {
  flex: 1;
}

section {
  padding: 3.5rem 0;
}

.hero {
  background: var(--bg-soft);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card strong {
  font-size: 1.1rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.lead {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--brand-200);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  background: var(--brand-200);
  color: var(--brand-900);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.6rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 1rem;
  background: var(--bg-alt);
}

.feature-item img {
  width: 42px;
  height: 42px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: var(--brand-700);
  color: var(--white);
}

.highlight .lead,
.highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.stat {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--brand-200);
}

.stat strong {
  font-size: 1.5rem;
  display: block;
}

.quote {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  padding: 1.6rem;
  border-radius: 1rem;
}

.quote span {
  display: block;
  margin-top: 0.8rem;
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison .card {
  background: var(--bg-soft);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--brand-200);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  text-align: left;
  gap: 1rem;
}

.faq-answer {
  margin-top: 0.8rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.service-card {
  border: 1px solid var(--brand-200);
  border-radius: 1.2rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--white);
}

.price {
  font-weight: 700;
  color: var(--brand-700);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.info-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.info-list span {
  font-weight: 600;
}

.contact-panel {
  background: var(--bg-soft);
  border-radius: 1.2rem;
  padding: 1.6rem;
}

.footer {
  background: var(--brand-900);
  color: var(--white);
  padding: 2.5rem 0 2rem;
}

.footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.footer-links a {
  color: var(--white);
  font-size: 0.95rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  width: min(520px, 90%);
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 68, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  z-index: 40;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 1.2rem;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--bg-soft);
  padding: 0.9rem;
  border-radius: 0.8rem;
}

.cookie-option span {
  font-weight: 600;
}

.section-alt {
  background: var(--bg-alt);
}

.section-soft {
  background: var(--bg-soft);
}

.divider {
  height: 4px;
  width: 80px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 1rem;
}

@media (min-width: 760px) {
  .hero-grid,
  .split,
  .comparison {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-card,
  .split > * {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    flex-direction: row;
    display: flex;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 1.4rem;
  }

  .card-grid,
  .service-grid,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .stat {
    flex: 1 1 220px;
  }

  .feature-item {
    flex: 1 1 260px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
