* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f9fb;
  --surface: #ffffff;
  --text: #0f1a2b;
  --muted: #4b5b73;
  --primary: #1a6fb3;
  --primary-dark: #0f4b7a;
  --accent: #23b0a6;
  --border: #d7e2ee;
  --shadow: 0 12px 30px rgba(15, 26, 43, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  gap: 1rem;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem;
}

.mobile-nav a {
  padding: 0.4rem 0;
}

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.15;
}

.hero p {
  color: var(--muted);
  max-width: 40rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(35, 176, 166, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 45rem;
  margin-bottom: 1.5rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.section-actions {
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
}

.card .price {
  font-weight: 700;
  color: var(--primary-dark);
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
}

.list li {
  color: var(--muted);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
  background: rgba(35, 176, 166, 0.08);
  border-radius: 0.6rem;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial span {
  font-weight: 600;
  color: var(--text);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  width: min(940px, 92%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 43, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 30;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.6rem;
  width: min(640px, 94%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(26, 111, 179, 0.08);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
}

.toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.legal h2 {
  color: var(--text);
  font-size: 1.2rem;
}

.notice {
  background: rgba(26, 111, 179, 0.08);
  border-radius: 0.8rem;
  padding: 1rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1.2;
  }

  .hero-side {
    flex: 0.8;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 280px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
