*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --accent: #2a6d7d;
  --accent-2: #1f4f5a;
  --text: #1d2328;
  --muted: #5f6b76;
  --border: #d9dee3;
  --highlight: #e8f3f6;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  position: absolute;
  right: 5%;
  top: 62px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--accent-2);
}

main {
  padding: 24px 0 40px;
}

.section {
  padding: 32px 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row,
.stats-row,
.feature-row,
.testimonial-row,
.faq-list,
.service-list,
.comparison-row,
.process-row,
.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card,
.stat,
.feature,
.testimonial,
.service-card,
.comparison-card,
.process-step,
.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-panel {
  background: var(--highlight);
  border-radius: 16px;
  padding: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section-title {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent-2);
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.site-footer {
  background: #0e2328;
  color: #e5edf0;
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #e5edf0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--highlight);
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row,
  .stats-row,
  .feature-row,
  .testimonial-row,
  .faq-list,
  .service-list,
  .comparison-row,
  .process-row,
  .trust-row,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .feature,
  .testimonial,
  .service-card,
  .comparison-card,
  .process-step,
  .trust-item {
    flex: 1 1 240px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
