* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f9fb;
  --text: #0f172a;
  --muted: #5b6477;
  --brand: #1e3a8a;
  --brand-accent: #0ea5a7;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  flex: 1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 32px 0;
}

.section {
  padding: 32px 0;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(14, 165, 167, 0.4);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand span {
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(14, 165, 167, 0.4);
  outline-offset: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(15, 23, 42, 0.4);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 80px 16px 16px;
  z-index: 20;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  width: min(320px, 92%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(120deg, rgba(30, 58, 138, 0.1), rgba(14, 165, 167, 0.1));
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.card strong {
  font-size: 1.05rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 167, 0.12);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.85rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.testimonial span {
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 40;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(540px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

@media (min-width: 800px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 48%;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 16px;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
