* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f6f3;
  --surface: #ffffff;
  --ink: #1c1f22;
  --muted: #5c6670;
  --primary: #1b5f7a;
  --primary-dark: #134457;
  --accent: #d7a43e;
  --soft: #e6edf2;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(22, 34, 44, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(23, 36, 46, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--soft);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ink);
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-top: 1px solid var(--soft);
}

.mobile-nav.open {
  display: flex;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
}

.hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #f1f5f8 0%, #ffffff 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  background: var(--soft);
  padding: 14px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.button:focus-visible {
  outline: 3px solid rgba(27, 95, 122, 0.3);
  outline-offset: 2px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(22, 34, 44, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-row img {
  width: 36px;
  height: 36px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  padding: 26px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #1e1e1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  background: #0f2f3d;
  color: #fefefe;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote .lead {
  color: rgba(255, 255, 255, 0.75);
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-bar {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(18, 28, 38, 0.08);
}

.faq-item button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open p {
  display: block;
}

.service-card {
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}

.footer {
  background: #0f1b21;
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0 30px;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 33, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 40;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border-radius: 12px;
  padding: 12px;
}

.toggle-btn {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > div {
    flex: 1;
  }

  .stats-row {
    flex-direction: row;
  }

  .stat-bar {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  nav ul {
    gap: 28px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .section {
    padding: 80px 0;
  }
}
