:root {
  --primary: #0B1220;
  --secondary: #6D28D9;
  --accent: #22C55E;
  --background: #F5F7FF;
  --surface: #111A2E;
  --text: #EAF0FF;
  --muted: #A7B0C2;
  --gradient: linear-gradient(135deg, #6D28D9 0%, #2563EB 45%, #22C55E 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--background);
  color: var(--primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.header {
  background: var(--primary);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  height: 50px;
}

.logo-footer {
  height: 100px;
}

.nav-desktop {
  display: flex;
  gap: 24px;
}

.nav-desktop a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  background: var(--secondary);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
}

.nav-mobile a {
  color: var(--text);
  font-size: 20px;
  padding: 12px 0;
}

.nav-mobile .close {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

.hero {
  background: var(--gradient);
  color: var(--text);
  padding: 80px 0;
}

.hero-small {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 20px;
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-keywords {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.section {
  padding: 70px 0;
}

.surface {
  background: var(--surface);
  color: var(--text);
}

.section h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 20px;
}

.ritual-grid, .two-col {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 16px;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.module-grid, .showcase-grid, .results-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.module-card, .showcase-item, .result-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11,18,32,0.1);
}

.surface .module-card, .surface .showcase-item {
  background: #1b2542;
  color: var(--text);
}

.module-card h3, .showcase-item h3, .result-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
}

.progress {
  background: #e5e7eb;
  border-radius: 10px;
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
}

.progress-bar {
  display: block;
  height: 100%;
  background: var(--secondary);
  animation: grow 1.8s ease;
}

.w80 { width: 80%; }
.w70 { width: 70%; }
.w75 { width: 75%; }

@keyframes grow {
  from { width: 0; }
  to { width: 100%; }
}

.logos img {
  margin-top: 20px;
  max-width: 600px;
}

.faq details {
  background: #ffffff;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(11,18,32,0.08);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 16px;
}

.footer {
  background: var(--primary);
  color: var(--text);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-nav a, .footer-legal a {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #0f172a;
  color: var(--text);
  padding: 16px;
  border-radius: 12px;
  display: none;
  z-index: 2000;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal h1 {
  margin-bottom: 20px;
}

.legal h2 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.steps {
  list-style: decimal;
  padding-left: 20px;
}

.thanks-summary {
  background: rgba(255,255,255,0.1);
  padding: 16px;
  border-radius: 12px;
  margin: 20px 0;
}

@media (max-width: 980px) {
  .nav-desktop {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .nav-mobile {
    position: fixed;
    inset: 0;
    background: var(--primary);
    color: var(--text);
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }
  .nav-toggle:checked ~ .nav-mobile {
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-footer {
    height: 80px;
  }
}