:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --accent: #e8a838;
  --accent-hover: #d49530;
  --bg: #fafbfc;
  --bg-alt: #f0f4f8;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --green: #22c55e;
  --purple: #8b5cf6;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--primary-light); transform: translateY(-1px); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: .3s;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(232,168,56,0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.35);
}

.btn-secondary {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all .25s;
  cursor: pointer;
}

.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand { font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.footer-brand span { color: var(--accent); }

.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.hidden-honey { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
}

/* Home */
body.page-home .hero {
  padding: 160px 24px 100px;
  background: linear-gradient(170deg, #f0f4f8 0%, #fafbfc 50%, #fff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-home .hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.08) 0%, transparent 70%);
}

body.page-home .hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,92,0.06) 0%, transparent 70%);
}

body.page-home .hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

body.page-home .hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

body.page-home .hero-text { max-width: 540px; }

body.page-home .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: heroVisualIn .9s ease .4s forwards;
}

body.page-home .hero-illustration {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 40px rgba(26,58,92,0.15));
  animation: gentleFloat 6s ease-in-out infinite;
}

body.page-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,58,92,0.06);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

body.page-home .hero-badge svg { width: 16px; height: 16px; }

body.page-home .hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--primary);
  margin-bottom: 24px;
}

body.page-home .hero h1 em { font-style: normal; color: var(--accent); }

body.page-home .hero-badge,
body.page-home .hero h1,
body.page-home .hero p,
body.page-home .hero-buttons {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp .7s ease forwards;
}

body.page-home .hero-badge { animation-delay: .1s; }
body.page-home .hero h1 { animation-delay: .25s; }
body.page-home .hero p { animation-delay: .4s; }
body.page-home .hero-buttons { animation-delay: .55s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

body.page-home .hero-keyword {
  color: var(--primary);
  transition: color .4s ease, text-decoration-color .4s ease;
  cursor: default;
  text-decoration: underline 3px transparent;
  text-underline-offset: 5px;
}

body.page-home .hero-keyword.active {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

body.page-home .hero-keyword:hover {
  color: var(--accent) !important;
  text-decoration-color: var(--accent) !important;
}

@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

body.page-home .hero-buttons .btn-primary { animation: ctaPulse 3s ease-in-out 1.5s infinite; }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232,168,56,0.3); }
  50% { box-shadow: 0 4px 28px rgba(232,168,56,0.55); }
}

body.page-home .hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

body.page-home .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

body.page-home .mockup-section { padding: 80px 24px; background: var(--white); }
body.page-home .mockup-inner { max-width: 1100px; margin: 0 auto; }

body.page-home .mockup-demo-header {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

body.page-home .mockup-container {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 3px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

body.page-home .mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #15304d;
  border-radius: 17px 17px 0 0;
}

body.page-home .mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
body.page-home .mockup-dot:nth-child(1) { background: #ff5f57; }
body.page-home .mockup-dot:nth-child(2) { background: #febc2e; }
body.page-home .mockup-dot:nth-child(3) { background: #28c840; }

body.page-home .mockup-url {
  flex: 1;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-family: monospace;
}

body.page-home .features { padding: 100px 24px; background: var(--bg); }
body.page-home .features-inner { max-width: 1100px; margin: 0 auto; }

body.page-home .section-header { text-align: center; margin-bottom: 64px; }

body.page-home .section-header .label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

body.page-home .section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

body.page-home .section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

body.page-home .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body.page-home .features-cta { margin-top: 44px; text-align: center; }

body.page-home .feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

body.page-home .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

body.page-home .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

body.page-home .feature-icon.blue { background: rgba(26,58,92,0.08); }
body.page-home .feature-icon.amber { background: rgba(232,168,56,0.12); }
body.page-home .feature-icon.green { background: rgba(34,197,94,0.1); }
body.page-home .feature-icon.purple { background: rgba(139,92,246,0.1); }
body.page-home .feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
body.page-home .feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

body.page-home .how-it-works { padding: 100px 24px; background: var(--white); }
body.page-home .how-inner { max-width: 900px; margin: 0 auto; }
body.page-home .steps { display: flex; flex-direction: column; gap: 0; position: relative; }

body.page-home .steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: var(--border);
}

body.page-home .step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}

body.page-home .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(26,58,92,0.2);
}

body.page-home .step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
body.page-home .step-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

body.page-home .contact { padding: 100px 24px; background: var(--bg-alt); }
body.page-home .contact-inner { max-width: 700px; margin: 0 auto; }

body.page-home .contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

body.page-home .contact-form .form-group { margin-bottom: 24px; }

body.page-home .contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

body.page-home .contact-form input,
body.page-home .contact-form textarea,
body.page-home .contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

body.page-home .contact-form input:focus,
body.page-home .contact-form textarea:focus,
body.page-home .contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}

body.page-home .contact-form textarea { min-height: 140px; resize: vertical; }
body.page-home .contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

body.page-home .contact-form .submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(232,168,56,0.3);
}

body.page-home .contact-form .submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.35);
}

body.page-home .contact-success { display: none; text-align: center; padding: 40px 20px; }
body.page-home .contact-success.show { display: block; }
body.page-home .contact-success svg { width: 64px; height: 64px; margin-bottom: 16px; }
body.page-home .contact-success h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 8px; }
body.page-home .contact-success p { color: var(--text-muted); font-size: 1rem; }

body.page-home .use-cases { padding: 100px 24px; background: var(--white); }
body.page-home .use-cases-inner { max-width: 1100px; margin: 0 auto; }

body.page-home .use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

body.page-home .use-case-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}

body.page-home .use-case-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26,58,92,0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

body.page-home .use-case-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

body.page-home .use-case-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

body.page-home .use-case-list { list-style: none; display: grid; gap: 12px; }

body.page-home .use-case-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.page-home .use-case-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

body.page-home .faq { padding: 100px 24px; background: var(--bg); }
body.page-home .faq-inner { max-width: 760px; margin: 0 auto; }

body.page-home .faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s;
}

body.page-home .faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }

body.page-home .faq-question {
  width: 100%;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

body.page-home .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .3s;
  flex-shrink: 0;
}

body.page-home .faq-item.open .faq-question::after { content: '−'; }

body.page-home .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 28px;
}

body.page-home .faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }
body.page-home .faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

body.page-home .cta {
  padding: 100px 24px;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-home .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,168,56,0.1) 0%, transparent 60%);
}

body.page-home .cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

body.page-home .cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

body.page-home .cta p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 36px; }
body.page-home .cta .btn-primary { font-size: 1.1rem; padding: 18px 44px; }

body.page-home .demo-app {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 520px;
  background: #f8fafc;
  border-radius: 0 0 17px 17px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.page-home .demo-exam-panel { background: #fff; padding: 0; overflow-y: auto; position: relative; }

body.page-home .demo-checklist-panel {
  background: #fff;
  border-left: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

body.page-home .demo-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 2;
}

body.page-home .demo-toolbar-title { font-weight: 700; color: #1a3a5c; font-size: 0.85rem; }
body.page-home .demo-toolbar-sub { color: #94a3b8; font-size: 0.8rem; }

body.page-home .demo-toolbar-page {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  background: #f0f4f8;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

body.page-home .demo-mode-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
}

body.page-home .demo-mode-label { font-size: 0.7rem; color: #94a3b8; font-weight: 600; margin-right: 4px; }

body.page-home .mode-btn {
  padding: 4px 12px;
  border-radius: 6px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all .2s;
}

body.page-home .mode-btn-danger {
  border-color: #dc2626;
  background: #dc2626;
  color: #fff;
}

body.page-home .mode-btn-note { font-weight: 400; opacity: 0.7; }
body.page-home .mode-btn-note-strong { font-weight: 400; opacity: 0.85; }

body.page-home .demo-exam-content {
  padding: 24px 28px;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #1e293b;
  cursor: crosshair;
  user-select: none;
  min-height: 400px;
  position: relative;
}

body.page-home .demo-exam-content p { margin-bottom: 16px; }
body.page-home .demo-exam-content .exam-heading { margin-bottom: 8px; font-weight: 600; }
body.page-home .demo-exam-content .exam-last { margin-bottom: 0; }

body.page-home .annotations-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

body.page-home .demo-cl-header { padding: 14px 18px; border-bottom: 1px solid #e2e8f0; }

body.page-home .demo-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

body.page-home .demo-header-title { font-weight: 700; color: #1a3a5c; font-size: 0.95rem; }

body.page-home .demo-cl-move-btn {
  font-size: 0.72rem;
  color: #94a3b8;
  background: #f0f4f8;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: default;
}

body.page-home .demo-cl-search {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #64748b;
  background: #f8fafc;
  outline: none;
}

body.page-home .demo-cl-items { flex: 1; padding: 6px 0; }

body.page-home .demo-score-area {
  padding: 16px 18px;
  border-top: 2px solid #e2e8f0;
  background: #f8fafc;
}

body.page-home .demo-score-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #1a3a5c;
  font-size: 0.92rem;
}

body.page-home .demo-score-track {
  margin-top: 8px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

body.page-home .demo-score-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e8a838, #d49530);
  border-radius: 3px;
  transition: width .5s ease;
}

body.page-home .demo-score-meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.page-home .demo-score-label { font-size: 0.82rem; color: #64748b; }

body.page-home .grade-badge-neutral {
  background: #e2e8f0;
  color: #64748b;
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all .4s;
}

body.page-home .demo-tab-bar {
  display: none;
  background: #f0f4f8;
  border-bottom: 1px solid #e2e8f0;
}

body.page-home .demo-tab-bar-full { grid-column: 1 / -1; }

body.page-home .demo-tab-bar button {
  flex: 1;
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: all .2s;
}

body.page-home .demo-tab-bar button.active { color: #1a3a5c; border-bottom-color: #e8a838; }

body.page-home .demo-cl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background .2s;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

body.page-home .demo-cl-item:hover { background: #f8fafc; }
body.page-home .demo-cl-item.active { background: rgba(26,58,92,0.04); }

body.page-home .demo-cl-box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  margin-top: 1px;
}

body.page-home .demo-cl-item.checked .demo-cl-box {
  background: #22c55e;
  border-color: #22c55e;
  animation: checkPop .35s ease;
}

body.page-home .demo-cl-item.partial .demo-cl-box { background: #e8a838; border-color: #e8a838; }
body.page-home .demo-cl-box svg { width: 12px; height: 12px; opacity: 0; transition: opacity .2s; }
body.page-home .demo-cl-item.checked .demo-cl-box svg,
body.page-home .demo-cl-item.partial .demo-cl-box svg { opacity: 1; }
body.page-home .demo-cl-text { flex: 1; }
body.page-home .demo-cl-title { font-size: 0.84rem; color: #1e293b; font-weight: 500; line-height: 1.35; }
body.page-home .demo-cl-sub { font-size: 0.75rem; color: #94a3b8; margin-top: 2px; }

body.page-home .demo-cl-pts {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  margin-top: 2px;
  transition: color .3s;
}

body.page-home .demo-cl-item.checked .demo-cl-pts { color: #22c55e; }
body.page-home .demo-cl-item.partial .demo-cl-pts { color: #e8a838; }

@keyframes checkPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

body.page-home .exam-stamp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  pointer-events: auto;
  cursor: pointer;
  animation: stampIn .3s ease;
  position: absolute;
  z-index: 1;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

body.page-home .exam-stamp.stamp-check { background: #d1fae5; color: #065f46; }
body.page-home .exam-stamp.stamp-ok { background: #dbeafe; color: #1e40af; }
body.page-home .exam-stamp.stamp-text { background: #fef3cd; color: #92600a; }

@keyframes stampIn {
  0% { transform: scale(0.3); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

body.page-home .mode-btn.active[data-mode="check"] { background: #dc2626 !important; border-color: #dc2626 !important; color: #fff !important; }
body.page-home .mode-btn.active[data-mode="ok"] { background: #1a3a5c !important; border-color: #1a3a5c !important; color: #fff !important; }
body.page-home .mode-btn.active[data-mode="text"] { background: #64748b !important; border-color: #64748b !important; color: #fff !important; }

@media (max-width: 900px) {
  body.page-home .hero-layout { grid-template-columns: 1fr; text-align: center; }
  body.page-home .hero-text { max-width: 640px; margin: 0 auto; }
  body.page-home .hero-visual { margin-top: 20px; }
  body.page-home .hero-illustration { max-width: 400px; }
  body.page-home .hero-buttons { justify-content: center; }
}

@media (max-width: 768px) {
  body.page-home .mockup-screen { grid-template-columns: 1fr; }
  body.page-home .mockup-sidebar { border-left: none; border-top: 1px solid #e2e8f0; }
  body.page-home .price-card.featured { transform: none; }
  body.page-home .price-card.featured:hover { transform: translateY(-4px); }
  body.page-home .step { gap: 20px; }
  body.page-home .steps::before { left: 24px; }
  body.page-home .demo-app { grid-template-columns: 1fr; min-height: auto; }
  body.page-home .demo-checklist-panel { border-left: none; border-top: 1px solid #e2e8f0; }
  body.page-home .demo-tab-bar { display: flex; }
  body.page-home .demo-exam-panel.hidden,
  body.page-home .demo-checklist-panel.hidden { display: none; }
  body.page-home .demo-toolbar { padding: 8px 14px; gap: 6px; }
  body.page-home .demo-toolbar-title { font-size: 0.78rem; }
  body.page-home .demo-toolbar-sub { font-size: 0.7rem; display: none; }
  body.page-home .demo-toolbar-page { font-size: 0.68rem; padding: 2px 8px; }
  body.page-home .demo-mode-bar { padding: 6px 14px; gap: 4px; }
  body.page-home .demo-mode-label { font-size: 0.65rem; }
  body.page-home .mode-btn { padding: 4px 8px !important; font-size: 0.7rem !important; }
  body.page-home .demo-exam-content {
    padding: 16px 16px;
    font-size: 0.84rem;
    line-height: 1.7;
    min-height: 300px;
  }
  body.page-home .demo-exam-content p { margin-bottom: 12px !important; }
  body.page-home .demo-cl-header { padding: 10px 14px; }
  body.page-home .demo-cl-item { padding: 8px 14px; gap: 10px; }
  body.page-home .demo-cl-title { font-size: 0.78rem; }
  body.page-home .demo-cl-sub { font-size: 0.68rem; }
  body.page-home .demo-cl-pts { font-size: 0.7rem; }
  body.page-home .demo-cl-box { width: 20px; height: 20px; }
  body.page-home .demo-score-area { padding: 12px 14px; }
  body.page-home .exam-stamp { font-size: 0.7rem; padding: 2px 8px; }
  body.page-home .mockup-section { padding: 60px 12px; }
  body.page-home .mockup-container { border-radius: 12px; }
  body.page-home .mockup-bar { padding: 10px 14px; border-radius: 12px 12px 0 0; }
  body.page-home .mockup-url { font-size: 0.65rem; }
}

@media (max-width: 600px) {
  body.page-home .contact-form .form-row { grid-template-columns: 1fr; }
  body.page-home .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  body.page-home .demo-exam-content { padding: 12px 12px; font-size: 0.8rem; line-height: 1.65; }
  body.page-home .demo-cl-title { font-size: 0.74rem; }
}

/* Platform */
body.page-platform .page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(170deg, #f0f4f8 0%, #fafbfc 60%, #fff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-platform .page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.07) 0%, transparent 70%);
}

body.page-platform .page-hero-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }

body.page-platform .page-hero .label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

body.page-platform .page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

body.page-platform .page-hero h1 em { font-style: normal; color: var(--accent); }

body.page-platform .page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

body.page-platform .section { padding: 88px 24px; }
body.page-platform .section.alt { background: var(--bg-alt); }
body.page-platform .section.dark { background: var(--primary); }
body.page-platform .section-inner { max-width: 1100px; margin: 0 auto; }
body.page-platform .section-header { text-align: center; margin-bottom: 60px; }

body.page-platform .section-header .label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

body.page-platform .section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

body.page-platform .section.dark .section-header h2 { color: var(--white); }

body.page-platform .section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

body.page-platform .section.dark .section-header p { color: rgba(255,255,255,0.65); }

body.page-platform .models-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

body.page-platform .model-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 44px 36px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

body.page-platform .model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

body.page-platform .model-card.private::before { background: var(--accent); }
body.page-platform .model-card.org::before { background: var(--primary); }

body.page-platform .model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

body.page-platform .model-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

body.page-platform .model-icon.amber { background: rgba(232,168,56,0.1); }
body.page-platform .model-icon.blue { background: rgba(26,58,92,0.08); }
body.page-platform .model-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
body.page-platform .model-card > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 28px; }
body.page-platform .model-features { list-style: none; }

body.page-platform .model-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-alt);
  font-size: 0.92rem;
  color: var(--text);
}

body.page-platform .model-features li:last-child { border: none; }
body.page-platform .model-features .check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

body.page-platform .workflow { padding: 88px 24px; background: var(--white); }
body.page-platform .workflow-inner { max-width: 960px; margin: 0 auto; }
body.page-platform .workflow-steps { display: flex; flex-direction: column; gap: 0; position: relative; }

body.page-platform .workflow-steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}

body.page-platform .workflow-step { display: flex; gap: 32px; align-items: flex-start; padding: 28px 0; }

body.page-platform .ws-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

body.page-platform .ws-num.amber { background: var(--accent); }
body.page-platform .ws-num.blue { background: var(--primary); }
body.page-platform .ws-num.green { background: var(--green); }
body.page-platform .ws-num.purple { background: var(--purple); }
body.page-platform .ws-body { padding-top: 10px; flex: 1; }
body.page-platform .ws-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
body.page-platform .ws-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

body.page-platform .ws-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 12px;
}

body.page-platform .anon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

body.page-platform .anon-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

body.page-platform .anon-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }

body.page-platform .section-inline-label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

body.page-platform .anon-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

body.page-platform .anon-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

body.page-platform .anon-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

body.page-platform .anon-profile-info h4 { font-size: 1rem; color: var(--primary); font-weight: 700; }
body.page-platform .anon-profile-info p { font-size: 0.82rem; color: var(--text-muted); }

body.page-platform .anon-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(139,92,246,0.1);
  color: var(--purple);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

body.page-platform .platform-mini-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.page-platform .stat-rows { display: flex; flex-direction: column; gap: 12px; }
body.page-platform .stat-row { display: flex; flex-direction: column; gap: 5px; }

body.page-platform .stat-row-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

body.page-platform .stat-row-label span:first-child { color: var(--text); font-weight: 500; }
body.page-platform .stat-row-label span:last-child { color: var(--text-muted); font-size: 0.78rem; }
body.page-platform .stat-bar { height: 7px; background: var(--bg-alt); border-radius: 4px; overflow: hidden; }
body.page-platform .stat-bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease; }
body.page-platform .fill-w75 { width: 75%; }
body.page-platform .fill-w50 { width: 50%; }
body.page-platform .fill-w25 { width: 25%; }
body.page-platform .fill-red { background: #ef4444; }
body.page-platform .fill-orange { background: #f97316; }
body.page-platform .fill-yellow { background: #eab308; }

body.page-platform .platform-average-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 18px; }
body.page-platform .platform-average-score { color: var(--primary); }

body.page-platform .billing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

body.page-platform .billing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .3s;
}

body.page-platform .billing-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
body.page-platform .billing-card .bi { font-size: 2.2rem; margin-bottom: 16px; display: block; }
body.page-platform .billing-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
body.page-platform .billing-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

body.page-platform .compare-wrap { overflow-x: auto; }

body.page-platform .compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

body.page-platform .compare-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
}

body.page-platform .compare-table th:first-child { background: var(--primary); }
body.page-platform .compare-table th.col-private { background: rgba(255,255,255,0.12); }
body.page-platform .compare-table th.col-org { background: rgba(232,168,56,0.25); }

body.page-platform .compare-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

body.page-platform .compare-table tr:last-child td { border-bottom: none; }
body.page-platform .compare-table tr:hover td { background: var(--bg-alt); }
body.page-platform .compare-table td:first-child { font-weight: 600; color: var(--primary); }
body.page-platform .check-yes { color: var(--green); font-size: 1.1rem; }
body.page-platform .check-no { color: #cbd5e1; font-size: 1.1rem; }

body.page-platform .cta-band {
  padding: 88px 24px;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-platform .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,168,56,0.1) 0%, transparent 60%);
}

body.page-platform .cta-band-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
body.page-platform .cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
body.page-platform .cta-band p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }

body.page-platform .cta-band a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(232,168,56,0.3);
}

body.page-platform .cta-band a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,56,0.4);
}

@media (max-width: 768px) {
  body.page-platform .models-grid,
  body.page-platform .anon-grid,
  body.page-platform .billing-grid { grid-template-columns: 1fr; }
  body.page-platform .workflow-steps::before { display: none; }
  body.page-platform .workflow-step { gap: 20px; }
  body.page-platform .ws-num { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* Impressum */
body.page-impressum .page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

body.page-impressum .page-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

body.page-impressum .page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 12px;
}

body.page-impressum .page-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

body.page-impressum .page-content a { color: var(--primary-light); text-decoration: underline; }
body.page-impressum .page-content a:hover { color: var(--accent); }

/* Wissenswertes */
body.page-wissenswertes .page-hero {
  padding: 148px 24px 88px;
  background: linear-gradient(165deg, #f0f4f8 0%, #fafbfc 55%, #fff 100%);
  position: relative;
  overflow: hidden;
}

body.page-wissenswertes .page-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.09) 0%, transparent 70%);
}

body.page-wissenswertes .page-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,92,0.07) 0%, transparent 70%);
}

body.page-wissenswertes .page-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

body.page-wissenswertes .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: end;
}

body.page-wissenswertes .hero-copy .label {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

body.page-wissenswertes .hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

body.page-wissenswertes .hero-copy p {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

body.page-wissenswertes .hero-panel {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px;
}

body.page-wissenswertes .hero-panel h2 { font-size: 1rem; color: var(--primary); margin-bottom: 18px; }
body.page-wissenswertes .hero-panel-list { list-style: none; display: grid; gap: 14px; }

body.page-wissenswertes .hero-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.page-wissenswertes .hero-panel-list li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

body.page-wissenswertes .section { padding: 88px 24px; }
body.page-wissenswertes .section.alt { background: var(--white); }
body.page-wissenswertes .section-inner { max-width: 1120px; margin: 0 auto; }
body.page-wissenswertes .section-header { text-align: center; margin-bottom: 56px; }

body.page-wissenswertes .section-header .label {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

body.page-wissenswertes .section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

body.page-wissenswertes .section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

body.page-wissenswertes .featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  background: linear-gradient(135deg, #17324f 0%, #1a3a5c 60%, #254f79 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

body.page-wissenswertes .featured-meta,
body.page-wissenswertes .article-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

body.page-wissenswertes .pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

body.page-wissenswertes .pill.light { background: rgba(255,255,255,0.14); color: var(--white); }
body.page-wissenswertes .pill.amber { background: rgba(232,168,56,0.18); color: #ffe2aa; }
body.page-wissenswertes .pill.blue { background: rgba(26,58,92,0.08); color: var(--primary); }
body.page-wissenswertes .pill.green { background: rgba(34,197,94,0.12); color: #166534; }

body.page-wissenswertes .featured-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.6px;
}

body.page-wissenswertes .featured-copy p {
  color: rgba(255,255,255,0.74);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

body.page-wissenswertes .featured-points { list-style: none; display: grid; gap: 12px; }

body.page-wissenswertes .featured-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}

body.page-wissenswertes .featured-points li::before {
  content: '•';
  color: var(--accent);
  font-size: 1.15rem;
  line-height: 1;
  margin-top: 2px;
}

body.page-wissenswertes .featured-side {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

body.page-wissenswertes .featured-side h4 { font-size: 0.95rem; color: rgba(255,255,255,0.92); }
body.page-wissenswertes .featured-side p { color: rgba(255,255,255,0.68); font-size: 0.92rem; line-height: 1.65; }

body.page-wissenswertes .feature-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

body.page-wissenswertes .feature-stat div {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
}

body.page-wissenswertes .feature-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 4px;
}

body.page-wissenswertes .feature-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.66); }

body.page-wissenswertes .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

body.page-wissenswertes .article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

body.page-wissenswertes .article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

body.page-wissenswertes .article-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--primary);
  margin-bottom: 12px;
}

body.page-wissenswertes .article-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

body.page-wissenswertes .article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

body.page-wissenswertes .article-link:hover { color: var(--primary-light); }

body.page-wissenswertes .topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.page-wissenswertes .topic-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

body.page-wissenswertes .topic-card h3 { font-size: 1.08rem; color: var(--primary); margin-bottom: 10px; }
body.page-wissenswertes .topic-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

body.page-wissenswertes .cta {
  padding: 88px 24px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

body.page-wissenswertes .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,168,56,0.12) 0%, transparent 60%);
}

body.page-wissenswertes .cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

body.page-wissenswertes .cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

body.page-wissenswertes .cta p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media (max-width: 920px) {
  body.page-wissenswertes .hero-grid,
  body.page-wissenswertes .featured-card,
  body.page-wissenswertes .articles-grid,
  body.page-wissenswertes .topics-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body.page-wissenswertes .page-hero { padding-top: 132px; }
  body.page-wissenswertes .feature-stat { grid-template-columns: 1fr; }
}

/* Articles */
body.page-article .article {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}

body.page-article .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

body.page-article .article-tag {
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8rem;
}

body.page-article .article h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

body.page-article .article .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-left: 20px;
}

body.page-article .article h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 44px;
  margin-bottom: 16px;
}

body.page-article .article h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

body.page-article .article p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text);
}

body.page-article .article ul,
body.page-article .article ol {
  margin: 16px 0 24px 24px;
  font-size: 1rem;
  line-height: 1.8;
}

body.page-article .article li { margin-bottom: 8px; }

body.page-article .article-cta {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  margin-top: 56px;
}

body.page-article .article-cta h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
body.page-article .article-cta p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

body.page-article .article-cta a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}

body.page-article .article-cta a:hover { background: var(--accent-hover); transform: translateY(-2px); }

body.page-article .related-articles {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

body.page-article .related-articles h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 20px; }
body.page-article .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }

body.page-article .related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: all .3s;
}

body.page-article .related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }
body.page-article .related-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 6px; }
body.page-article .related-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

body.article-efficiency .article-tag {
  background: rgba(232,168,56,0.12);
  color: #92600a;
}

body.article-efficiency .article .lead { border-left: 3px solid var(--accent); }

body.article-efficiency .tip-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

body.article-efficiency .tip-box strong { color: var(--primary); }

body.article-fairness .article-tag {
  background: rgba(34,197,94,0.1);
  color: #166534;
}

body.article-fairness .article .lead { border-left: 3px solid #22c55e; }

body.article-fairness .example-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

body.article-fairness .example-box h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}

body.article-fairness .example-box table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

body.article-fairness .example-box th,
body.article-fairness .example-box td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

body.article-fairness .example-box th {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.85rem;
  background: var(--bg-alt);
}

body.article-fairness .example-box td { color: var(--text); }

body.article-fairness .stat-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

body.article-fairness .stat-highlight > div {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

body.article-fairness .stat-highlight .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

body.article-fairness .stat-highlight .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

body.article-fairness .tip-box {
  background: var(--bg-alt);
  border-left: 4px solid #22c55e;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

body.article-fairness .tip-box strong { color: var(--primary); }

body.article-ki .article-tag {
  background: rgba(26,58,92,0.08);
  color: var(--primary);
}

body.article-ki .article .lead { border-left: 3px solid var(--primary); }

body.article-ki .highlight-box {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 32px 0;
  border: 1px solid var(--border);
}

body.article-ki .highlight-box h4 { font-size: 1rem; color: var(--primary); margin-bottom: 12px; }

body.article-ki .pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

body.article-ki .pro-con > div { padding: 20px; border-radius: var(--radius); }
body.article-ki .pro-con .pro { background: #f0fdf4; border: 1px solid #bbf7d0; }
body.article-ki .pro-con .con { background: #fef2f2; border: 1px solid #fecaca; }
body.article-ki .pro-con h4 { font-size: 0.95rem; margin-bottom: 10px; }
body.article-ki .pro-con .pro h4 { color: #166534; }
body.article-ki .pro-con .con h4 { color: #991b1b; }
body.article-ki .pro-con ul { margin: 0; padding-left: 18px; font-size: 0.9rem; }
body.article-ki .pro-con li { margin-bottom: 4px; }

@media (max-width: 600px) {
  body.page-article .related-grid,
  body.article-fairness .stat-highlight,
  body.article-ki .pro-con { grid-template-columns: 1fr; }
}
