*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c2530;
  --muted: #5b6470;
  --brand: #3c6e91;
  --brand-dark: #2d536d;
  --accent: #f5b86b;
  --light: #f7f4ef;
  --panel: #ffffff;
  --shadow: 0 12px 30px rgba(28, 37, 48, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--light);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(28, 37, 48, 0.06);
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--panel);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 72px;
  right: 5%;
  width: min(280px, 90%);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 500;
}

.menu-toggle {
  border: none;
  background: var(--brand);
  color: white;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-actions .button {
  width: fit-content;
}

.hero-panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(60, 110, 145, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

section {
  padding: 2.5rem 0;
}

ul,
ol {
  padding-left: 1.2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(60, 110, 145, 0.08);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

.feature svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--panel);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  background: var(--panel);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: var(--panel);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.highlight {
  background: var(--brand-dark);
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  background: rgba(245, 184, 107, 0.2);
  color: var(--brand-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

footer {
  background: #111820;
  color: #e3e6ea;
  padding: 2.5rem 0;
}

footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  padding: 1rem 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: min(520px, 90%);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 32, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--panel);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-switches {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(60, 110, 145, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.cookie-switch input {
  width: 42px;
  height: 24px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-panel {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards,
  .feature-blocks,
  .service-grid,
  .testimonials,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .feature,
  .service-card,
  .quote,
  .stat,
  .comparison-row {
    flex: 1 1 calc(50% - 1rem);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .contact-blocks {
    flex-direction: row;
  }

  .info-panel {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .card,
  .feature,
  .service-card,
  .quote,
  .stat,
  .comparison-row {
    flex: 1 1 calc(33% - 1rem);
  }

  .hero {
    padding: 4rem 0 3rem;
  }
}
