* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1d1f24;
  background-color: #f8f6f2;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  --brand: #3a4bb7;
  --brand-dark: #23317c;
  --accent: #e8b455;
  --muted: #6b7280;
  --light: #ffffff;
  --soft: #eef1f8;
}

body {
  background-color: #f8f6f2;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: #2a2f39;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d5d7df;
  padding: 8px 12px;
  border-radius: 999px;
  background-color: #f7f7fb;
}

.menu-toggle span {
  font-size: 0.9rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 22px;
}

.nav-open .mobile-menu {
  display: flex;
}

.nav-open .nav-links {
  display: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 40px 0 80px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: linear-gradient(120deg, #eef1f8 0%, #fdf7ea 100%);
  padding: 42px 0;
  border-radius: 28px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--brand);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: #ffffff;
  color: var(--brand);
  border: 1px solid #cbd0e1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid #ececf3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  background: var(--soft);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 1.6rem;
}

.testimonial {
  background: #1d1f24;
  color: #ffffff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial span {
  color: #d8dbe6;
  font-size: 0.95rem;
}

.panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #e7e7ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel.alt {
  background: #fdf7ea;
  border-color: #f3e3c3;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ececf3;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #374151;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ececf3;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--brand-dark);
  color: #ffffff;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta p {
  color: #d4d7f0;
}

.site-footer {
  background: #1f2431;
  color: #e5e7f0;
  padding: 40px 0 50px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-note {
  color: #b3b8cc;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1e3ea;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal .panel {
  width: min(520px, 94%);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f7;
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-button {
  background: #e6e9f6;
  color: #2d365f;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.toggle-button.active {
  background: var(--brand);
  color: #ffffff;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list .card {
  border-left: 4px solid var(--brand);
}

.info-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notice {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7e7ef;
  color: var(--muted);
}

@media (min-width: 720px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 260px;
  }

  .stats-bar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .comparison-table {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 240px;
  }

  .info-columns {
    flex-direction: row;
  }

  .info-columns .card {
    flex: 1 1 280px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
