* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --primary: #1f4f5c;
  --secondary: #f0b429;
  --ink: #1c2428;
  --muted: #5e6c72;
  --surface: #ffffff;
  --surface-alt: #f4f5f6;
  --surface-strong: #e6ecef;
  --accent-soft: #d9f0f2;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--secondary);
  color: #1b1b1b;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  z-index: 10;
}

.header-inner {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.nav-toggle {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.nav.is-open {
  display: flex;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav a:hover,
.nav a:focus {
  color: var(--primary);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.highlight {
  background: var(--accent-soft);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--primary);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary);
}

h3 {
  font-size: 1.3rem;
  color: var(--ink);
}

p {
  color: var(--muted);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card.alt {
  background: var(--surface-strong);
}

.card-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stat {
  flex: 1 1 160px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.35rem 0.8rem;
  background: var(--surface-strong);
  border-radius: 999px;
  font-size: 0.85rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq-item {
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  padding: 3rem 0;
  background: #0f2227;
  color: #e7eef0;
}

.footer a {
  color: #e7eef0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer small {
  color: #b6c3c8;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1rem;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal.is-hidden {
  display: none;
}

.cookie-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: min(620px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--surface-strong);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-toggle span {
  font-weight: 400;
  color: var(--muted);
}

.cookie-toggle[aria-pressed="true"] {
  background: var(--accent-soft);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-block {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

.list li {
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-toggle {
    display: none;
  }

  .grid.two {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid.two > * {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .grid.three > * {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-content > * {
    flex: 1 1 50%;
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-info {
    flex-direction: row;
  }

  .contact-info > * {
    flex: 1 1 50%;
  }
}
