/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1a4d8f;
  --primary-dark: #12355f;
  --accent: #2bb3c0;
  --accent-soft: #e4f6f8;
  --ink: #1c2230;
  --muted: #5b6473;
  --surface: #f6f7fb;
  --surface-strong: #eef1f7;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(18, 30, 55, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(26, 77, 143, 0.22);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(26, 77, 143, 0.25);
}

.btn.secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(26, 77, 143, 0.2);
  box-shadow: none;
}

/* Header + Navigation */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  z-index: 20;
  border-bottom: 1px solid rgba(18, 30, 55, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.98rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a.active {
  color: var(--primary-dark);
}

.nav-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(18, 30, 55, 0.1);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--primary);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 8%;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-bottom: 1px solid rgba(18, 30, 55, 0.08);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: inline-flex;
    width: 100%;
  }
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  background: linear-gradient(135deg, rgba(26, 77, 143, 0.08), rgba(43, 179, 192, 0.1));
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}

.hero-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
  }

  .hero-card {
    flex: 1;
  }
}

/* Cards and blocks */
.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(12, 22, 41, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 860px) {
  .cards.horizontal {
    flex-direction: row;
  }

  .cards.horizontal .card {
    flex: 1;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > div {
    flex: 1;
  }
}

.highlight-panel {
  background: var(--primary-dark);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--surface);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary-dark);
}

@media (min-width: 860px) {
  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Services */
.service-card {
  border: 1px solid rgba(18, 30, 55, 0.1);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
}

.service-card .price {
  font-weight: 700;
  color: var(--primary-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--surface);
}

.comparison-row span {
  flex: 1;
  color: var(--muted);
}

/* Testimonials */
.testimonial {
  background: var(--surface-strong);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial cite {
  font-style: normal;
  color: var(--muted);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(18, 30, 55, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  background: var(--primary-dark);
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 36, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 30, 55, 0.08);
}

.cookie-option:last-child {
  border-bottom: none;
}

.toggle {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: var(--surface-strong);
  position: relative;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 0.2s ease, background 0.2s ease;
}

.toggle.active {
  background: rgba(43, 179, 192, 0.3);
}

.toggle.active::after {
  transform: translateX(18px);
  background: var(--accent);
}

/* Utility */
.surface {
  background: var(--surface);
}

.surface-strong {
  background: var(--surface-strong);
}

.muted {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 0.9rem;
}

.mt-lg {
  margin-top: 28px;
}
