/* ═══════════════════════════════════════════════════
   NEUROLYTICS GMBH — components.css
   Nav, Footer, Cards, Hero, Trust Strip
   ═══════════════════════════════════════════════════ */

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-name { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; }
.nav-logo-sub { font-size: 10px; color: var(--ink-faint); letter-spacing: 0.8px; text-transform: uppercase; display: block; margin-top: -2px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 400;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
  padding: 20px 5%;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal); }
.nav-mobile .nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 12px 20px !important;
  border-radius: var(--radius-sm) !important;
  text-align: center;
  border: none !important;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg-section);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 18px 5%;
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-item strong { color: var(--ink-muted); font-weight: 500; }

/* ── HERO ── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--teal-light); border-radius: 50%; flex-shrink: 0; }
.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.hero-title { margin-bottom: 20px; }
.hero-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Hero visual cards */
.hero-card-stack { position: relative; height: 340px; }
.hero-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 0.5px solid var(--border);
  padding: 20px 24px;
}
.hero-card.main { width: 100%; top: 0; }
.hero-card.float { width: 78%; bottom: 0; right: 0; }
.card-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.card-title-sm { font-family: var(--font-sans); font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.card-sub { font-size: 12px; color: var(--ink-faint); }
.ai-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-section);
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
}
.ai-bar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.ai-bar-text { font-size: 12px; color: var(--ink-muted); flex: 1; }
.ai-bar-score { font-size: 12px; font-weight: 600; color: var(--teal); }
.pill-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card.klassencheck::before { background: var(--teal); }
.product-card.neurocheck::before  { background: var(--purple); }
.product-card.dokument::before    { background: var(--amber); }
.product-card:hover { box-shadow: var(--shadow-md); border-color: rgba(15,110,86,0.2); }
.product-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.product-icon.teal   { background: var(--teal-pale); }
.product-icon.purple { background: var(--purple-pale); }
.product-icon.amber  { background: var(--amber-pale); }
.product-name { font-family: var(--font-sans); font-size: 18px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.product-url { font-size: 12px; color: var(--teal); margin-bottom: 12px; text-decoration: none; display: inline-block; }
.product-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 16px; }
.product-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.product-features li { font-size: 13px; color: var(--ink-muted); display: flex; align-items: flex-start; gap: 8px; }
.product-features li::before { content: '✓'; font-size: 11px; font-weight: 700; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.product-link { font-size: 13px; font-weight: 500; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.product-link:hover { text-decoration: underline; }
.product-price { font-size: 13px; font-weight: 600; color: var(--teal); background: var(--teal-pale); display: inline-block; padding: 3px 10px; border-radius: 6px; margin-bottom: 16px; }

/* ── TALK CARDS ── */
.talks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.talk-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: box-shadow .2s, border-color .2s;
}
.talk-card:hover { box-shadow: var(--shadow-md); border-color: rgba(15,110,86,0.15); }
.talk-type { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--coral); margin-bottom: 10px; }
.talk-title { font-family: var(--font-sans); font-size: 15px; font-weight: 600; margin-bottom: 10px; line-height: 1.45; color: var(--ink); }
.talk-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.65; }
.talk-meta { display: flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; color: var(--ink-faint); }
.talk-icon { font-size: 14px; }

/* ── NEURO SECTION ── */
.neuro-section {
  background: linear-gradient(135deg, #0F6E56 0%, #1D9E75 55%, #085041 100%);
  color: white;
  padding: 80px 5%;
}
.neuro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.neuro-section .section-label { color: rgba(255,255,255,0.55); }
.neuro-section h2 { color: white; }
.neuro-section .section-sub { color: rgba(255,255,255,0.75); max-width: 100%; }
.neuro-card {
  background: rgba(255,255,255,0.1);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 14px;
  transition: background .2s;
}
.neuro-card:hover { background: rgba(255,255,255,0.15); }
.neuro-card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: white; }
.neuro-card-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.neuro-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.neuro-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.neuro-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.about-photo {
  background: var(--teal-pale);
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--teal);
  font-size: 13px;
  border: 2px dashed rgba(15,110,86,0.2);
  text-align: center;
  padding: 20px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.about-name { font-family: var(--font-serif); font-size: 32px; margin-bottom: 4px; color: var(--ink); }
.about-subtitle { font-size: 14px; color: var(--teal); font-weight: 500; margin-bottom: 20px; }
.about-text { font-size: 15px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 20px; }
.about-roles { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.role-item { display: flex; gap: 14px; align-items: flex-start; }
.role-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 5px; }
.role-label { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.role-desc { font-size: 13px; color: var(--ink-muted); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 64px 5% 36px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name { font-size: 17px; font-weight: 600; color: white; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: white; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--teal-mid); }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── LEGAL PAGES ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 64px 5%; }
.legal-page h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal-meta { font-size: 13px; color: var(--ink-faint); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 0.5px solid var(--border); }
.legal-page h2 { font-size: 20px; margin: 40px 0 12px; color: var(--teal); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
.legal-page h3 { font-size: 16px; margin: 24px 0 8px; color: var(--ink); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
.legal-page p { margin-bottom: 14px; font-size: 15px; line-height: 1.75; }
.legal-page ul, .legal-page ol { margin: 12px 0 16px 20px; }
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li { font-size: 15px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 6px; }
.legal-page a { color: var(--teal); }
.legal-warn {
  background: var(--amber-pale);
  border-left: 3px solid var(--amber);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 14px;
  color: #633806;
}
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.legal-table th { background: var(--teal-pale); color: var(--teal); padding: 8px 12px; text-align: left; font-weight: 600; }
.legal-table td { padding: 8px 12px; border-bottom: 0.5px solid var(--border); color: var(--ink-muted); vertical-align: top; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 18px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--ink-muted); display: block; margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg);
  border: 0.5px solid var(--border-med);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--teal);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-muted); }
.form-checkbox input { margin-top: 2px; accent-color: var(--teal); }
.contact-info h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 14px; color: var(--ink-muted); }
.contact-detail strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 2px; }

/* ── PAGE HERO (Unterseiten) ── */
.page-hero { background: var(--bg-section); padding: 56px 5% 48px; border-bottom: 0.5px solid var(--border); }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }
.breadcrumb { font-size: 12px; color: var(--ink-faint); margin-bottom: 16px; }
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero-sub { font-size: 16px; color: var(--ink-muted); font-weight: 300; max-width: 580px; line-height: 1.7; }

/* ── PRODUCT BADGE HERO ── */
.product-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.product-badge-purple { background: var(--purple-pale); color: var(--purple); }
.product-badge-amber  { background: var(--amber-pale);  color: var(--amber);  }
.product-tagline { font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 12px; }

/* ── APPROACH SECTION ── */
.approach-section { padding: 88px 0; background: var(--bg-section); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.approach-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s, border-color .2s;
}
.approach-card:hover { box-shadow: var(--shadow-md); border-color: rgba(15,110,86,0.15); }
.approach-sector-icon { font-size: 28px; margin-bottom: 10px; }
.approach-sector {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.approach-problem {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 18px;
  flex: 1;
}
.approach-divider {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 14px;
}
.approach-solution {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}
.approach-solution strong { color: var(--teal); }

/* ── PROBLEM/SOLUTION SECTION ── */
.problem-section { padding: 80px 0; background: var(--bg-section); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.solution-side { display: flex; flex-direction: column; gap: 14px; }
.solution-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: box-shadow .2s;
}
.solution-card:hover { box-shadow: var(--shadow-md); }
.solution-icon { font-size: 22px; margin-bottom: 8px; }
.solution-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.solution-text { font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ── STATS ── */
.stat-row { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.stat-item {}
.stat-num { font-family: var(--font-serif); font-size: 36px; color: var(--teal); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--ink-muted); font-weight: 400; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.step-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.step-num { font-family: var(--font-serif); font-size: 40px; color: var(--teal-pale); line-height: 1; margin-bottom: 12px; }
.step-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step-text { font-size: 14px; color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.feature-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow .2s, border-color .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: rgba(15,110,86,0.15); }
.feature-icon { font-size: 24px; margin-bottom: 12px; }
.feature-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.feature-text { font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; align-items: start; }
.pricing-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow .2s;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-tier { font-size: 13px; font-weight: 600; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-family: var(--font-serif); font-size: 40px; color: var(--ink); line-height: 1; margin-bottom: 16px; }
.pricing-period { font-family: var(--font-sans); font-size: 14px; color: var(--ink-faint); font-weight: 300; }
.pricing-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin-bottom: 20px; }
.pricing-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.pricing-features li { font-size: 13px; color: var(--ink-muted); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: '✓'; font-size: 11px; font-weight: 700; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ── MODULE LIST ── */
.module-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.module-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}
.module-item:last-child { border-bottom: none; }
.module-num { font-family: var(--font-serif); font-size: 28px; color: var(--teal-pale); line-height: 1; padding-top: 4px; }
.module-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); display: flex; align-items: center; flex-wrap: wrap; }
.module-text { font-size: 14px; color: var(--ink-muted); line-height: 1.7; margin: 0; }

/* ── CTA SECTION ── */
.cta-section { padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { max-width: 560px; margin: 0 auto 16px; }
.cta-inner .section-sub { margin: 0 auto 32px; max-width: 480px; }

/* ── PLATFORM HEADER ── */
.platform-header {
  background: var(--bg-section);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}
.platform-logo {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-name { font-size: 20px; font-weight: 600; color: var(--ink); }
.platform-url a { font-size: 13px; color: var(--teal); text-decoration: none; }
.platform-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; margin: 0; }
.platform-cta { margin-top: 32px; display: flex; justify-content: center; }

/* ── PRODUCT INFO CARD ── */
.product-info-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.info-card-title { font-size: 17px; font-weight: 600; margin-bottom: 12px; color: var(--ink); line-height: 1.4; }
.info-card-text { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

/* ── TRUST FEATURES ── */
.trust-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.trust-feature {}
.tf-icon { font-size: 28px; margin-bottom: 12px; }
.tf-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.tf-text { font-size: 13px; color: var(--ink-muted); line-height: 1.65; }

/* ── NEURO TYPE GRID ── */
.neuro-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.neuro-type-card {
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow .2s;
}
.neuro-type-card:hover { box-shadow: var(--shadow-md); }
.neuro-type-icon { font-size: 28px; margin-bottom: 10px; }
.neuro-type-name { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.neuro-type-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin: 0; }

/* ── PAGE HERO VARIANTS ── */
.page-hero-purple { background: linear-gradient(135deg, #f5f4ff 0%, #eeedfe 100%); }
.page-hero-neuro  { background: linear-gradient(135deg, #e1f5ee 0%, #c8eddf 100%); }

/* ── TALKS FULL GRID ── */
.talks-grid-full { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.talk-card-full {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  background: var(--bg-white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow .2s;
}
.talk-card-full:hover { box-shadow: var(--shadow-md); }
.talk-number { font-family: var(--font-serif); font-size: 48px; color: var(--teal-pale); line-height: 1; margin-bottom: 8px; }
.talk-type-badge { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.talk-title-lg { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--ink); line-height: 1.35; }
.talk-desc-lg { font-size: 14px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 20px; }
.talk-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.talk-detail-item { font-size: 12px; color: var(--ink-muted); display: flex; align-items: center; gap: 8px; }
.talk-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.talk-card-right { display: flex; flex-direction: column; justify-content: center; }
.talk-card-highlight {
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  padding: 24px;
}
.th-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.th-list { display: flex; flex-direction: column; gap: 10px; }
.th-list li { font-size: 13px; color: var(--ink-muted); display: flex; align-items: flex-start; gap: 8px; }
.th-list li::before { content: '→'; color: var(--teal); font-weight: 600; flex-shrink: 0; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 16px 5%;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hiding  { transform: translateY(100%); }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}
.cookie-text a { color: var(--teal-mid); text-decoration: underline; margin: 0 4px; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cookie-accept {
  background: var(--teal);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--teal-light); }
.cookie-details {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.cookie-details:hover { color: rgba(255,255,255,0.8); }

/* ── PRISMIO PRODUCT CARD COLORS ── */
.product-card.prismio-puls::before  { background: var(--teal); }
.product-card.prismio-kompass::before { background: var(--purple); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .talk-card-full { grid-template-columns: 1fr; gap: 24px; }
  .platform-header { grid-template-columns: auto auto; grid-template-rows: auto auto; }
  .platform-header p { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero, .neuro-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 5% 48px; }
  .hero-card-stack { height: 260px; }
  .hero-card.float { width: 85%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .approach-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .talks-grid, .products-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-accept { flex: 1; text-align: center; }
}
