/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f8f7fb;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  padding: 56px 0;
}

.section--soft {
  background: #f1eff8;
}

.section--dark {
  background: #141723;
  color: #f7f6fb;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6d5bd0;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #6d5bd0;
  color: #fff;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  border-color: #6d5bd0;
  color: #6d5bd0;
}

.btn--light {
  background: #f7f6fb;
  color: #141723;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ede9fb;
  color: #6d5bd0;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: #f8f7fb;
  z-index: 10;
  border-bottom: 1px solid #e4e1f2;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.nav-links a {
  font-weight: 600;
}

.nav-actions {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #d6d2eb;
  background: #fff;
  cursor: pointer;
  gap: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 20px;
}

.mobile-menu.is-open {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e4e1f2;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-list span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6d5bd0;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e4e1f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #6d5bd0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #6d5bd0;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4e1f2;
}

.testimonial strong {
  color: #2c2d33;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid #e4e1f2;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-note {
  font-size: 0.9rem;
  color: #575a66;
}

/* Cookie banner & modal */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #141723;
  color: #f7f6fb;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 23, 35, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__content {
  background: #fff;
  color: #141723;
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e4e1f2;
}

/* Pages */
.page-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .nav-links,
  .nav-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-grid {
    flex-direction: row;
  }

  .hero-card,
  .hero-grid > div {
    flex: 1;
  }

  .card-grid,
  .testimonials,
  .steps,
  .info-grid,
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .step,
  .info-grid > div {
    flex: 1 1 260px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-links {
    justify-content: space-between;
  }
}
