:root {
  --ink: #0b1f30;
  --muted: #5a6b7c;
  --brand: #0b2d4d;
  --accent: #77d2c5;
  --accent-strong: #1a8c80;
  --highlight: #f2b36d;
  --bg: #f7f7f4;
  --card: #ffffff;
  --shadow: 0 18px 35px rgba(11, 31, 48, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

[hidden] {
    display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--card);
  box-shadow: 0 1px 0 rgba(11, 31, 48, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--brand);
}

.nav-toggle {
  background: none;
  border: 1px solid var(--brand);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--card);
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.9rem;
  box-shadow: var(--shadow);
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  font-weight: 600;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: none;
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn.accent {
  background: var(--accent);
  color: var(--ink);
}

main section {
  padding: 3rem 0;
}

.hero {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #eef7f5 0%, #fef4e7 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero-card {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.panel.alt {
  background: #f0f7ff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature svg {
  flex: 0 0 36px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--card);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.8rem;
  display: block;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.testimonial {
  background: var(--card);
  padding: 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.cta {
  background: var(--brand);
  color: #ffffff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.site-footer {
  background: #0b1f30;
  color: #ffffff;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(119, 210, 197, 0.2);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 48, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  z-index: 300;
}

.modal {
  background: #ffffff;
  width: min(620px, 100%);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.preference-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #f5f7fb;
  padding: 1rem;
  border-radius: 12px;
}

.toggle-btn {
  align-self: flex-start;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn.active {
  background: var(--brand);
  color: #ffffff;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .hero-inner,
  .grid-row,
  .stats,
  .testimonials,
  .service-cards,
  .comparison,
  .footer-inner,
  .cookie-actions {
    flex-direction: row;
  }

  .hero-inner {
    align-items: center;
  }

  .hero-card,
  .panel,
  .stat,
  .testimonial,
  .service-card,
  .comparison-item {
    flex: 1;
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
