* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b24;
  --muted: #4d4d66;
  --accent: #7a4dff;
  --accent-strong: #ff4dd2;
  --accent-soft: #7de3ff;
  --bg: #f7f4ff;
  --panel: #ffffff;
  --panel-alt: #f2f7ff;
  --border: rgba(27, 27, 36, 0.12);
  --shadow: 0 18px 40px rgba(27, 27, 36, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #fef1ff 0%, #e9f5ff 45%, #fff7e6 100%);
  min-height: 100vh;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.section.highlight {
  background: linear-gradient(120deg, rgba(122, 77, 255, 0.08), rgba(255, 77, 210, 0.08));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  right: 4vw;
  top: 72px;
  background: var(--panel);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 180px;
}

.nav-menu a {
  font-weight: 600;
  color: var(--muted);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--accent);
}

.nav-menu.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--panel);
  border-radius: 28px;
  padding: 2.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 12px 24px rgba(122, 77, 255, 0.24);
}

.btn.secondary {
  background: var(--panel);
  border-color: var(--border);
  color: var(--ink);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.feature-grid,
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-card,
.service-card,
.stat-card,
.testimonial-card,
.info-card {
  background: var(--panel);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 12px 24px rgba(27, 27, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(125, 227, 255, 0.3);
  font-weight: 600;
  font-size: 0.85rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.4rem;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  background: var(--panel-alt);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 0.8rem 1rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  padding: 0.6rem 0;
  cursor: pointer;
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding-bottom: 0.8rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--panel);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
  width: min(560px, 92vw);
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 36, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--panel);
  border-radius: 22px;
  padding: 2rem;
  width: min(640px, 94vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: var(--panel-alt);
}

.option-buttons {
  display: flex;
  gap: 0.4rem;
}

.option-buttons button {
  border: 1px solid var(--border);
  background: white;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
}

.option-buttons button.active {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.floating-icon {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    display: flex;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .feature-grid,
  .card-grid,
  .stats-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .info-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split-panel {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .feature-card,
  .service-card,
  .stat-card,
  .testimonial-card,
  .info-card {
    flex: 1 1 calc(33% - 1rem);
  }
}
