* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f6fb;
  --text: #1f2333;
  --muted: #5a6177;
  --primary: #4b3bd6;
  --primary-dark: #392aad;
  --accent: #20c997;
  --card: #ffffff;
  --border: #e1e4f0;
  --shadow: 0 18px 40px rgba(31, 35, 51, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", 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: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.nav {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav a {
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--primary);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
}

.mobile-panel {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.mobile-panel-inner {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 12px;
}

.mobile-panel a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  padding: 64px 0 48px;
  background: radial-gradient(circle at top left, #eef1ff, #f8f9ff);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-metrics {
  display: flex;
  gap: 24px;
}

.metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 56px 0;
}

.section.muted {
  background: #ffffff;
}

.section-head {
  margin-bottom: 28px;
}

.section-head.spaced {
  margin-top: 24px;
}

.section-head h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.highlight-box {
  background: #f0f2ff;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  background: #1f2333;
  color: #ffffff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--primary-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.site-footer {
  background: #0f1220;
  color: #ffffff;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 32, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  border: 1px solid var(--border);
  background: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.toggle {
  border: 1px solid var(--border);
  background: #f5f6fb;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 48px 0 28px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.address {
  font-style: normal;
  color: var(--muted);
}

.note {
  background: #f0f2ff;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal h2 {
  font-size: 1.3rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-panel {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-card {
    flex: 0.9;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-card {
    flex: 1;
  }
}
