:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1f2a36;
  --muted: #5b6b7a;
  --accent: #0f2a3f;
  --accent-soft: #7fd1c7;
  --highlight: #f5b35c;
  --line: #d9e1e8;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--surface);
}

.section.accent {
  background: #0f2a3f;
  color: #f5f7fa;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-soft);
  margin-bottom: 12px;
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.section.accent p {
  color: #d7e2ec;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f5f7fa;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 42, 63, 0.15);
}

.button-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(127, 209, 199, 0.2);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  position: absolute;
  top: 64px;
  right: 4%;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(15, 42, 63, 0.12);
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-toggle {
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--accent);
}

.nav-open .nav-links {
  display: flex;
}

.nav-cta {
  display: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-icon {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: rgba(245, 179, 92, 0.18);
  border-color: rgba(245, 179, 92, 0.5);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  background: #0f2a3f;
  color: #f5f7fa;
}

.testimonial p {
  color: #d7e2ec;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 700;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison .card {
  background: var(--surface);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .answer {
  padding: 0 20px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 30px rgba(15, 42, 63, 0.12);
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 63, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  width: min(540px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f2f5f8;
  border-radius: 12px;
}

.toggle-row button {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.toggle-row button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .nav {
    padding: 20px 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 22px;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .button-row {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .hero-card {
    max-width: 380px;
  }
}
