/* ========================================
   RISKSENTINEL STYLES.CSS
   Brand-Aligned Dual-Zone Design
   Dark (#0D4F4F) + Light (#FFFFFF) Sections
   ======================================== */

/* ---- CSS VARIABLES ---- */
:root {
  /* BRAND COLORS */
  --brand-teal: #0D4F4F;        /* Pantone 7722 C — Primary */
  --brand-cyan: #15B3B3;         /* Pantone 7466 C — Accent */
  --brand-light: #E8F4F4;        /* Hellcyan — Text on dark */

  /* DARK SECTION COLORS — neutral dark slate */
  --dark-bg: #1C2530;
  --dark-bg-deep: #141B22;
  --dark-bg-card: #243140;
  --dark-text: #EDF2F4;
  --dark-text-secondary: #B8C8CE;
  --dark-text-muted: #7A9199;
  --dark-line: rgba(21, 179, 179, 0.18);
  --dark-line-hover: rgba(21, 179, 179, 0.3);

  /* LIGHT SECTION COLORS */
  --light-bg: #FFFFFF;
  --light-bg-alt: #F7F9FA;
  --light-bg-card: #FFFFFF;
  --light-text: #1C2530;
  --light-text-secondary: #3D4A55;
  --light-text-muted: #6B7D88;
  --light-line: rgba(28, 37, 48, 0.1);
  --light-line-hover: rgba(28, 37, 48, 0.2);

  /* SEMANTIC (defaults to dark — overridden per section) */
  --primary: #15B3B3;
  --primary-light: #12A0A0;
  --primary-pale: rgba(13, 79, 79, 0.15);

  /* Risk Colors */
  --risk-critical: #e74c3c;
  --risk-high: #e67e22;
  --risk-medium: #f1c40f;
  --risk-low: #27ae60;

  /* SPACING & BORDER RADIUS */
  --radius: 12px;
  --radius2: 16px;
  --radius-sm: 8px;

  /* TRANSITIONS */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* SHADOWS */
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-hover: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(13, 79, 79, 0.08);
  --shadow-card-hover: 0 12px 32px rgba(13, 79, 79, 0.14);
}

/* ========================================
   GLOBAL & RESET
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--light-text);
  background-color: var(--light-bg);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover:not(.btn) {
  color: var(--primary-light);
}

.skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip:focus {
  top: 0;
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(21, 179, 179, 0.15);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-right: 6px;
  vertical-align: middle;
  border: 1px solid rgba(21, 179, 179, 0.25);
}

.small {
  font-size: 13px;
}

.subline {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ========================================
   ICONS
   ======================================== */

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--primary-pale);
  border: 1px solid rgba(13, 79, 79, 0.15);
  border-radius: 14px;
  margin-bottom: 16px;
}

/* ========================================
   HEADER (Sticky, dark teal)
   ======================================== */

.header {
  background-color: rgba(28, 37, 48, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.brand__logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--dark-text);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--dark-text);
}

.nav__bars {
  display: block;
  width: 22px;
  height: 16px;
  position: relative;
}

.nav__bars::before,
.nav__bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__bars::before {
  top: 0;
  box-shadow: 0 7px 0 var(--dark-text);
}

.nav__bars::after {
  bottom: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bars::before {
  top: 7px;
  transform: rotate(45deg);
  box-shadow: none;
}

.nav__toggle[aria-expanded="true"] .nav__bars::after {
  bottom: 7px;
  transform: rotate(-45deg);
}

@media (max-width: 920px) {
  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: rgba(13, 79, 79, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav__toggle {
    display: block;
  }
}

/* ========================================
   DARK SECTIONS (Brand Teal BG)
   ======================================== */

.section--dark {
  padding: 80px 0;
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--dark-text);
}

.section--dark p,
.section--dark .lead,
.section--dark .subline {
  color: var(--dark-text-secondary);
}

.section--dark .muted,
.section--dark .small {
  color: var(--dark-text-muted);
}

.section--dark .section__head h2 {
  color: #FFFFFF;
}

/* ========================================
   LIGHT SECTIONS (White/Light BG)
   ======================================== */

.section--light {
  padding: 80px 0;
  background: var(--light-bg);
  color: var(--light-text);
  position: relative;
}

.section--light-alt {
  padding: 80px 0;
  background: var(--light-bg-alt);
  color: var(--light-text);
  position: relative;
}

.section--light h2,
.section--light h3,
.section--light h4,
.section--light-alt h2,
.section--light-alt h3,
.section--light-alt h4 {
  color: var(--light-text);
}

.section--light p,
.section--light .lead,
.section--light .subline,
.section--light-alt p,
.section--light-alt .lead,
.section--light-alt .subline {
  color: var(--light-text-secondary);
}

.section--light .muted,
.section--light .small,
.section--light-alt .muted,
.section--light-alt .small {
  color: var(--light-text-muted);
}

.section--light .section__head h2,
.section--light-alt .section__head h2 {
  color: var(--light-text);
}

@media (max-width: 760px) {
  .section--dark,
  .section--light,
  .section--light-alt {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .section--dark,
  .section--light,
  .section--light-alt {
    padding: 40px 0;
  }
}

/* Legacy section classes (for legal pages etc.) */
.section {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

.section--alt {
  background-color: var(--dark-bg-deep);
  position: relative;
}

@media (max-width: 760px) {
  .section {
    padding: 60px 0;
  }
}

/* ========================================
   SECTION HEAD
   ======================================== */

.section__head {
  text-align: center;
  margin-bottom: 60px;
}

.section__head h2 {
  margin-bottom: 12px;
}

.section__head .subline {
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   HERO SECTION (Dark, Brand Teal)
   ======================================== */

.hero {
  background: linear-gradient(165deg, #1F2B38 0%, var(--dark-bg) 40%, var(--dark-bg-deep) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 179, 179, 0.12), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 179, 179, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

@media (max-width: 760px) {
  .hero {
    padding: 60px 0;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero__copy h1 {
  color: var(--brand-light);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__copy .lead {
  color: var(--dark-text-secondary);
}

.hero__copy .eyebrow {
  color: var(--dark-text-muted);
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 760px) {
  .hero__cta {
    flex-direction: column;
  }
}

.hero__panel {
  background: rgba(15, 95, 95, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(21, 179, 179, 0.2);
  border-radius: var(--radius2);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
}

@media (max-width: 760px) {
  .hero__panel {
    padding: 24px;
  }
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.hero__metric {
  padding: 16px 8px;
}

.hero__metric-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero__metric-label {
  font-size: 11px;
  color: var(--dark-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.hero__panel-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(21, 179, 179, 0.3), transparent);
  margin: 16px 0;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark-text-secondary);
  font-weight: 500;
}

.hero__feature-icon {
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 179, 179, 0.1);
  border: 1px solid rgba(21, 179, 179, 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero__metric-value {
    font-size: 28px;
  }

  .hero__metric-label {
    font-size: 10px;
  }
}

/* Trustbar */
.trustbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dark-text-muted);
  font-weight: 500;
}

.trustbar__icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 920px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 920px) {
  .grid3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .grid3 {
    grid-template-columns: 1fr;
  }
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 920px) {
  .grid4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .grid4 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CARDS — DARK VARIANT
   ======================================== */

.section--dark .card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition-slow);
}

.section--dark .card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.section--dark .card h3 {
  color: #FFFFFF;
}

.section--dark .card p {
  color: var(--dark-text-secondary);
}

/* ========================================
   CARDS — LIGHT VARIANT
   ======================================== */

.section--light .card,
.section--light-alt .card {
  background: var(--light-bg-card);
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}

.section--light .card:hover,
.section--light-alt .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--light-line-hover);
}

.section--light .card h3,
.section--light-alt .card h3 {
  color: var(--light-text);
}

.section--light .card p,
.section--light-alt .card p {
  color: var(--light-text-secondary);
}

/* Generic card (fallback for legacy pages) */
.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition-slow);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 179, 179, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card--outline {
  background: transparent;
  border: 2px solid rgba(21, 179, 179, 0.15);
}

.card--outline:hover {
  border-color: rgba(21, 179, 179, 0.35);
  background: rgba(15, 95, 95, 0.2);
}

@media (max-width: 760px) {
  .card,
  .section--dark .card,
  .section--light .card,
  .section--light-alt .card {
    padding: 24px;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:active:not(:disabled) {
  transform: scale(0.97);
}

/* Primary CTA — Cyan bg, white text (dark sections) */
.btn--primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(21, 179, 179, 0.25);
}

.btn--primary:hover:not(:disabled) {
  background: var(--primary-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 179, 179, 0.35);
}

/* Primary CTA on light sections — Teal bg, white text */
.section--light .btn--primary,
.section--light-alt .btn--primary {
  background: var(--brand-teal);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(13, 79, 79, 0.2);
}

.section--light .btn--primary:hover:not(:disabled),
.section--light-alt .btn--primary:hover:not(:disabled) {
  background: var(--dark-bg-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 79, 79, 0.3);
}

/* Ghost CTA — dark sections */
.btn--ghost {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-weight: 600;
}

.btn--ghost:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Ghost CTA on light sections */
.section--light .btn--ghost,
.section--light-alt .btn--ghost {
  border-color: var(--light-text);
  color: var(--light-text);
}

.section--light .btn--ghost:hover:not(:disabled),
.section--light-alt .btn--ghost:hover:not(:disabled) {
  background-color: rgba(28, 37, 48, 0.06);
  border-color: var(--light-text);
  color: var(--light-text);
  transform: translateY(-2px);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ========================================
   STEPS / TIMELINE (Dark sections)
   ======================================== */

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 24px;
}

@media (max-width: 760px) {
  .step {
    gap: 16px;
  }
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  width: 44px;
  height: 44px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.section--dark .step h3 {
  color: #FFFFFF;
}

.section--dark .step p {
  color: var(--dark-text-secondary);
  margin-bottom: 0;
}

.section--light .step h3,
.section--light-alt .step h3 {
  color: var(--light-text);
}

.section--light .step p,
.section--light-alt .step p {
  color: var(--light-text-secondary);
  margin-bottom: 0;
}

/* ========================================
   TWO-PERSPECTIVES (Convergence Layout)
   ======================================== */

.perspectives {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.perspective-col {
  padding: 32px;
  border-radius: var(--radius);
}

.perspective-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.perspective-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perspective-col ul li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.perspective-col ul li::before {
  content: '\2713';
  position: absolute;
  left: 2px;
  top: 0;
  font-weight: 700;
  font-size: 16px;
}

.section--light .perspective-col ul li {
  color: var(--light-text-secondary);
}

.section--light .perspective-col ul li::before {
  color: var(--primary);
}

.perspective-col--left {
  background: var(--light-bg-alt);
  border: 1px solid rgba(28, 37, 48, 0.08);
}

.perspective-col--right {
  background: var(--light-bg-alt);
  border: 1px solid rgba(28, 37, 48, 0.08);
}

.perspective-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  position: relative;
}

.perspective-divider::before {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.perspective-divider__icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 0 20px rgba(21, 179, 179, 0.3);
}

.perspective-merge {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(28, 37, 48, 0.1);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.section--light .perspective-merge {
  background: var(--light-bg-alt);
}

.perspective-merge h3 {
  text-align: center;
  margin-bottom: 16px;
}

.perspective-merge ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.perspective-merge ul li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.section--light .perspective-merge ul li {
  color: var(--light-text-secondary);
}

.perspective-merge ul li::before {
  content: '\2192';
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 760px) {
  .perspectives {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .perspective-divider {
    width: auto;
    height: 40px;
    flex-direction: row;
  }

  .perspective-divider::before {
    top: 50%;
    bottom: auto;
    width: auto;
    height: 2px;
    left: 20%;
    right: 20%;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
  }

  .perspective-merge ul {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CHAIN-OF-INSIGHT PIPELINE
   ======================================== */

.pipeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.pipeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(21, 179, 179, 0.3));
}

.pipeline-stage {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.pipeline-stage__num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 0 20px rgba(21, 179, 179, 0.25);
}

.pipeline-stage__content h3 {
  margin-bottom: 6px;
}

.section--dark .pipeline-stage__content h3 {
  color: #FFFFFF;
}

.section--dark .pipeline-stage__content p {
  color: var(--dark-text-secondary);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .pipeline::before {
    left: 20px;
  }

  .pipeline-stage__num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .pipeline-stage {
    gap: 16px;
  }
}

/* ========================================
   PLAN CARDS (3 gleichhohe Karten, identische Feature-Liste mit Status)
   ======================================== */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

.plan-card {
  background: #FFFFFF;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(13, 79, 79, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition-slow);
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 79, 79, 0.12);
}

/* Header-Bereich: Name, Audience, Preis */
.plan-card__head {
  padding: 32px 28px 24px;
  background: var(--light-bg-alt);
  border-bottom: 2px solid var(--primary);
  text-align: left;
}

.plan-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--light-text);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.plan-card__audience {
  font-size: 11px;
  color: var(--light-text-muted);
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__price {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}

.plan-card__meta {
  font-size: 12px;
  color: var(--light-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin: 6px 0 0;
}

/* Body: Gruppen + Features */
.plan-card__body {
  padding: 0 28px 28px;
  flex-grow: 1;
}

.plan-card__group {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 22px 0 8px;
  margin: 0;
  border-top: 1px solid var(--light-line);
}

.plan-card__group:first-child {
  border-top: none;
  padding-top: 24px;
}

.plan-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-card__features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  min-height: 44px;
  font-size: 14px;
  line-height: 1.5;
}

.plan-card__features .ok {
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
}

.plan-card__features .no {
  color: rgba(28, 37, 48, 0.18);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}

.plan-card__features li.is-included {
  color: var(--light-text);
}

.plan-card__features li.is-excluded {
  color: rgba(28, 37, 48, 0.42);
}

.plan-card__features .feature-value {
  color: var(--light-text);
  font-weight: 600;
}

/* ========================================
   ENTERPRISE SECTION (separat unter Vergleich)
   ======================================== */

.pricing-enterprise {
  margin-top: 64px;
  background: #FFFFFF;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  box-shadow: 0 2px 12px rgba(13, 79, 79, 0.05);
}

@media (max-width: 860px) {
  .pricing-enterprise {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 28px;
  }
}

.pricing-enterprise__intro h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.6rem);
  font-weight: 800;
  margin: 0 0 6px 0;
  color: var(--light-text);
  letter-spacing: -0.01em;
}

.pricing-enterprise__intro .audience {
  font-size: 13px;
  color: var(--light-text-muted);
  margin: 0 0 20px 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-enterprise__intro p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--light-text-secondary);
  margin: 0 0 24px 0;
}

.pricing-enterprise__price {
  font-size: 13px;
  color: var(--light-text-muted);
  font-weight: 500;
  margin: 0 0 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--light-line);
  line-height: 1.55;
}

.pricing-enterprise__price strong {
  display: block;
  font-size: 17px;
  color: var(--light-text);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.pricing-enterprise__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-enterprise__features li {
  padding: 9px 0 9px 26px;
  font-size: 14px;
  color: var(--light-text-secondary);
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--light-line);
}

.pricing-enterprise__features li:last-child {
  border-bottom: none;
}

.pricing-enterprise__features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 6px;
  height: 10px;
  border: solid var(--primary);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.pricing-enterprise__cta {
  margin-top: 4px;
}

.pricing-enterprise__cta .btn {
  width: 100%;
}

/* ========================================
   PRICING-PREVIEW (Mini-Strip auf Index)
   ======================================== */

.pricing-preview__item {
  background: #FFFFFF;
  border: 1px solid rgba(28, 37, 48, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}

.pricing-preview__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-preview__item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--light-text);
  margin: 0 0 12px 0;
  letter-spacing: -0.005em;
}

.pricing-preview__item .price-mini {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px 0;
  line-height: 1.1;
}

.pricing-preview__cta {
  text-align: center;
  margin-top: 28px;
}

.pricing-preview__enterprise {
  text-align: center;
  margin: 24px auto 0;
  max-width: 640px;
  padding: 14px 20px;
  background: rgba(13, 79, 79, 0.04);
  border-left: 2px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ========================================
   CALLOUT
   ======================================== */

.callout {
  padding: 20px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.section--dark .callout {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--primary);
}

.section--dark .callout p,
.section--dark .callout {
  color: var(--dark-text-secondary);
  font-weight: 500;
  margin-bottom: 0;
}

.section--dark .callout strong {
  color: #FFFFFF;
}

.section--light .callout,
.section--light-alt .callout {
  background-color: rgba(13, 79, 79, 0.06);
  border-left: 3px solid var(--brand-teal);
}

.section--light .callout p,
.section--light .callout,
.section--light-alt .callout p,
.section--light-alt .callout {
  color: var(--light-text-secondary);
  font-weight: 500;
  margin-bottom: 0;
}

.section--light .callout strong,
.section--light-alt .callout strong {
  color: var(--light-text);
}

/* Legacy (non-zoned) */
.callout {
  background-color: rgba(21, 179, 179, 0.1);
  border-left: 3px solid var(--primary);
}

.callout p {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0;
}

/* ========================================
   ACCORDION (FAQ)
   ======================================== */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion details {
  border-bottom: 1px solid var(--light-line);
  padding-bottom: 16px;
}

.section--dark .accordion details {
  border-bottom-color: var(--dark-line);
}

.accordion details:last-child {
  border-bottom: none;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  padding: 12px 0;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.section--light .accordion summary,
.section--light-alt .accordion summary {
  color: var(--light-text);
}

.section--dark .accordion summary {
  color: var(--dark-text);
}

.accordion summary:hover {
  color: var(--primary);
  padding-left: 8px;
}

.accordion summary::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
  transition: var(--transition);
  flex-shrink: 0;
}

.accordion details[open] summary::after {
  transform: rotate(45deg);
}

.accordion details[open] summary {
  color: var(--primary);
}

.accordion details[open] > :last-child {
  padding-top: 16px;
}

.section--light .accordion details p,
.section--light-alt .accordion details p {
  color: var(--light-text-secondary);
}

.section--dark .accordion details p {
  color: var(--dark-text-secondary);
}

/* ========================================
   FORMS (Dark section — Demo)
   ======================================== */

.contact {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 760px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.field:last-child {
  margin-bottom: 0;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-text);
  font-size: 15px;
}

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-sm);
  background-color: rgba(9, 46, 46, 0.6);
  color: var(--dark-text);
  transition: var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: var(--dark-text-muted);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(9, 46, 46, 0.8);
  box-shadow: 0 0 0 3px rgba(21, 179, 179, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238AABAB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.divider {
  height: 1px;
  background-color: var(--dark-line);
  margin: 32px 0;
}

/* Form Status Messages */
.form-status {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 500;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status--success {
  background-color: rgba(40, 167, 69, 0.15);
  color: #66D98B;
  border-left: 3px solid #28A745;
}

.form-status--error {
  background-color: rgba(220, 53, 69, 0.15);
  color: #F5A0A7;
  border-left: 3px solid #DC3545;
}

.form-status--loading {
  background-color: rgba(21, 179, 179, 0.1);
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

/* ========================================
   CONTRAST GRID (Two perspectives, Workshop vs RS)
   ======================================== */

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contrast-card {
  padding: 28px;
  border-radius: var(--radius);
}

.contrast-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contrast-card__subtitle {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.contrast-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contrast-card__list li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

/* Old vs New */
.contrast-card--old {
  background: rgba(100, 100, 100, 0.08);
  border: 1px solid rgba(100, 100, 100, 0.2);
}

.contrast-card--old .contrast-card__label {
  color: var(--light-text-muted);
}

.section--light .contrast-card--old .contrast-card__list li,
.section--light-alt .contrast-card--old .contrast-card__list li {
  color: var(--light-text-secondary);
}

.contrast-card--old .contrast-card__list li::before {
  content: '\00d7';
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--risk-high);
  font-weight: 700;
  font-size: 16px;
}

.contrast-card--new {
  background: rgba(21, 179, 179, 0.08);
  border: 1px solid rgba(21, 179, 179, 0.2);
}

.contrast-card--new .contrast-card__label {
  color: var(--primary);
}

.section--light .contrast-card--new .contrast-card__list li,
.section--light-alt .contrast-card--new .contrast-card__list li {
  color: var(--light-text-secondary);
}

.contrast-card--new .contrast-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--risk-low);
  font-weight: 700;
  font-size: 16px;
}

/* Qualitative / Quantitative variants */
.contrast-card--qualitative {
  background: rgba(13, 79, 79, 0.08);
  border: 1px solid rgba(13, 79, 79, 0.2);
}

.contrast-card--qualitative .contrast-card__label { color: var(--brand-teal); }

.contrast-card--quantitative {
  background: rgba(21, 179, 179, 0.08);
  border: 1px solid rgba(21, 179, 179, 0.2);
}

.contrast-card--quantitative .contrast-card__label { color: var(--primary); }

.contrast-card--qualitative .contrast-card__list li::before,
.contrast-card--quantitative .contrast-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.section--light .contrast-card--qualitative .contrast-card__list li,
.section--light .contrast-card--quantitative .contrast-card__list li,
.section--light-alt .contrast-card--qualitative .contrast-card__list li,
.section--light-alt .contrast-card--quantitative .contrast-card__list li {
  color: var(--light-text-secondary);
}

.section--light .contrast-card__subtitle,
.section--light-alt .contrast-card__subtitle {
  color: var(--light-text-secondary);
}

@media (max-width: 760px) {
  .contrast-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================
   ANALYSIS STAGES (produkt.html)
   ======================================== */

.analysis-stage {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}

.analysis-stage:last-child {
  margin-bottom: 0;
}

.section--dark .analysis-stage {
  border: 1px solid var(--dark-line);
  background: rgba(15, 95, 95, 0.25);
}

.section--light .analysis-stage,
.section--light-alt .analysis-stage {
  border: 1px solid var(--light-line);
  background: var(--light-bg-card);
  box-shadow: var(--shadow-card);
}

.analysis-stage__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--dark-line);
}

.section--light .analysis-stage__header,
.section--light-alt .analysis-stage__header {
  background: rgba(13, 79, 79, 0.04);
  border-bottom-color: var(--light-line);
}

.section--dark .analysis-stage__header {
  background: rgba(21, 179, 179, 0.08);
}

.analysis-stage__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.analysis-stage__header h3 {
  margin-bottom: 0;
  color: var(--primary);
}

.section--light .analysis-stage__header h3,
.section--light-alt .analysis-stage__header h3 {
  color: var(--brand-teal);
}

.analysis-stage__sub {
  font-size: 14px;
  margin-bottom: 0;
}

.section--dark .analysis-stage__sub { color: var(--dark-text-muted); }
.section--light .analysis-stage__sub,
.section--light-alt .analysis-stage__sub { color: var(--light-text-muted); }

.analysis-stage__body {
  padding: 28px;
}

/* Stat Row */
.stat-row {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.section--dark .stat-item {
  background: rgba(21, 179, 179, 0.1);
}

.section--light .stat-item,
.section--light-alt .stat-item {
  background: rgba(13, 79, 79, 0.06);
}

.stat-item__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-item__label {
  font-size: 13px;
  margin-top: 4px;
}

.section--dark .stat-item__label { color: var(--dark-text-muted); }
.section--light .stat-item__label,
.section--light-alt .stat-item__label { color: var(--light-text-muted); }

/* Example Box */
.example-box {
  margin-top: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.section--dark .example-box { border: 1px solid var(--dark-line); }
.section--light .example-box,
.section--light-alt .example-box { border: 1px solid var(--light-line); }

.example-box__title {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section--dark .example-box__title {
  background: rgba(21, 179, 179, 0.1);
  color: var(--dark-text-muted);
}

.section--light .example-box__title,
.section--light-alt .example-box__title {
  background: rgba(13, 79, 79, 0.06);
  color: var(--light-text-muted);
}

.example-box__content {
  padding: 20px;
}

.example-box__quote {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.section--dark .example-box__quote {
  background: rgba(9, 46, 46, 0.5);
  color: var(--dark-text-secondary);
}

.section--light .example-box__quote,
.section--light-alt .example-box__quote {
  background: var(--light-bg-alt);
  color: var(--light-text-secondary);
}

.example-box__dept {
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
}

.example-box__arrow {
  text-align: center;
  font-size: 20px;
  color: var(--primary);
  padding: 8px 0;
}

.example-box__result {
  padding: 12px 16px;
  background: rgba(39, 174, 96, 0.1);
  border-left: 3px solid var(--risk-low);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  margin-top: 8px;
}

.section--dark .example-box__result { color: var(--dark-text-secondary); }
.section--light .example-box__result,
.section--light-alt .example-box__result { color: var(--light-text-secondary); }

/* Insight Cards */
.insight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.insight-card {
  padding: 24px;
  border-radius: var(--radius);
}

.section--dark .insight-card {
  background: rgba(9, 46, 46, 0.5);
  border: 1px solid var(--dark-line);
}

.section--light .insight-card,
.section--light-alt .insight-card {
  background: var(--light-bg);
  border: 1px solid var(--light-line);
}

.insight-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.insight-card p {
  font-size: 14px;
  line-height: 1.6;
}

.insight-card--corroborated { border-left: 3px solid var(--risk-low); }
.insight-card--corroborated h4 { color: var(--risk-low); }
.insight-card--blindspot { border-left: 3px solid var(--risk-high); }
.insight-card--blindspot h4 { color: var(--risk-high); }
.insight-card--profile { border-left: 3px solid var(--primary); }
.insight-card--profile h4 { color: var(--primary); }

.insight-card__example {
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-style: italic;
  line-height: 1.6;
}

.section--dark .insight-card__example {
  background: rgba(21, 179, 179, 0.06);
  color: var(--dark-text-muted);
}

.section--light .insight-card__example,
.section--light-alt .insight-card__example {
  background: rgba(13, 79, 79, 0.05);
  color: var(--light-text-muted);
}

@media (max-width: 920px) {
  .insight-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================
   CATEGORIES STRIP
   ======================================== */

.categories-strip {
  margin-top: 48px;
  padding: 32px;
  border-radius: var(--radius);
}

.section--dark .categories-strip {
  background: rgba(15, 95, 95, 0.3);
  border: 1px solid var(--dark-line);
}

.section--light .categories-strip {
  background: var(--light-bg-alt);
  border: 1px solid var(--light-line);
}

.categories-strip__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.categories-strip__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.section--dark .cat-chip {
  background: rgba(21, 179, 179, 0.1);
  border: 1px solid var(--dark-line);
  color: var(--dark-text-secondary);
}

.section--light .cat-chip {
  background: rgba(13, 79, 79, 0.06);
  border: 1px solid var(--light-line);
  color: var(--light-text-secondary);
}

.cat-chip:hover {
  border-color: var(--primary);
}

.cat-chip__icon {
  font-size: 16px;
}

.categories-strip__note {
  text-align: center;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 8px;
}

/* ========================================
   MONITORING CYCLE
   ======================================== */

.cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 32px 0;
}

.cycle__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  position: relative;
}

.cycle__step::after {
  content: "\2192";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.cycle__step:last-child::after {
  display: none;
}

.cycle__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 179, 179, 0.1);
  border: 2px solid var(--primary);
  border-radius: 50%;
  font-size: 20px;
}

.cycle__label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.section--dark .cycle__label { color: var(--dark-text-secondary); }
.section--light .cycle__label,
.section--light-alt .cycle__label { color: var(--light-text-secondary); }

@media (max-width: 760px) {
  .cycle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 28px;
  }

  .cycle__step { padding: 10px 4px; }
  .cycle__step:nth-child(3) { order: 4; }
  .cycle__step:nth-child(4) { order: 3; }

  .cycle__step:nth-child(1)::after { content: "\2192"; right: -18px; }
  .cycle__step:nth-child(2)::after {
    content: "\2193";
    right: auto; top: auto; bottom: -12px;
    left: 50%; transform: translateX(-50%);
  }
  .cycle__step:nth-child(3)::after {
    content: "\2190";
    right: auto; left: -18px;
    top: 50%; transform: translateY(-50%);
  }

  .cycle__icon { width: 40px; height: 40px; font-size: 18px; }
  .cycle__label { font-size: 12px; }
}

/* ========================================
   TREND TIMELINE
   ======================================== */

.trend-timeline {
  max-width: 700px;
  margin: 48px auto 0;
}

.trend-timeline__title {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  font-weight: 600;
}

.section--dark .trend-timeline__title { color: var(--dark-text-muted); }
.section--light .trend-timeline__title,
.section--light-alt .trend-timeline__title { color: var(--light-text-muted); }

.trend-timeline__track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 16px;
}

.trend-timeline__line {
  position: absolute;
  top: 8px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(21, 179, 179, 0.3);
  z-index: 0;
}

.trend-timeline__point {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trend-timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(21, 179, 179, 0.4);
  transition: var(--transition);
  cursor: default;
}

.trend-timeline__dot--improved {
  background: var(--risk-low);
  box-shadow: 0 0 6px rgba(39, 174, 96, 0.4);
}

.trend-timeline__dot--warning {
  background: var(--risk-high);
  box-shadow: 0 0 6px rgba(230, 126, 34, 0.4);
}

.trend-timeline__dot:hover { transform: scale(1.4); }

.trend-timeline__label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.trend-timeline__sub {
  font-size: 11px;
  font-style: italic;
  white-space: nowrap;
}

.section--dark .trend-timeline__label { color: var(--dark-text-secondary); }
.section--dark .trend-timeline__sub { color: var(--dark-text-muted); }
.section--light .trend-timeline__label,
.section--light-alt .trend-timeline__label { color: var(--light-text-secondary); }
.section--light .trend-timeline__sub,
.section--light-alt .trend-timeline__sub { color: var(--light-text-muted); }

.trend-timeline__frequencies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trend-timeline__freq {
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  cursor: default;
}

.section--dark .trend-timeline__freq {
  border: 1px solid var(--dark-line);
  background: rgba(21, 179, 179, 0.08);
  color: var(--dark-text-secondary);
}

.section--light .trend-timeline__freq,
.section--light-alt .trend-timeline__freq {
  border: 1px solid var(--light-line);
  background: rgba(13, 79, 79, 0.05);
  color: var(--light-text-secondary);
}

.trend-timeline__freq:hover {
  border-color: var(--primary);
}

@media (max-width: 760px) {
  .trend-timeline { margin-top: 32px; }
  .trend-timeline__title { margin-bottom: 20px; }
  .trend-timeline__track {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; padding: 0;
  }
  .trend-timeline__line { display: none; }
  .trend-timeline__point {
    flex-direction: row; align-items: center; gap: 10px;
    border-radius: var(--radius-sm); padding: 10px 12px;
  }
  .section--dark .trend-timeline__point {
    background: rgba(21, 179, 179, 0.08);
    border: 1px solid var(--dark-line);
  }
  .section--light .trend-timeline__point,
  .section--light-alt .trend-timeline__point {
    background: rgba(13, 79, 79, 0.04);
    border: 1px solid var(--light-line);
  }
  .trend-timeline__dot { flex-shrink: 0; }
  .trend-timeline__point .trend-timeline__label,
  .trend-timeline__point .trend-timeline__sub {
    display: block; white-space: normal; text-align: left;
  }
  .trend-timeline__freq { padding: 4px 12px; font-size: 12px; }
}

/* Trend Comparison Table */
.trend-comparison { margin-bottom: 32px; }

.trend-table {
  border-radius: var(--radius);
  overflow: hidden;
}

.section--dark .trend-table { border: 1px solid var(--dark-line); }
.section--light .trend-table,
.section--light-alt .trend-table { border: 1px solid var(--light-line); }

.trend-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.section--dark .trend-table__row { border-bottom: 1px solid var(--dark-line); }
.section--light .trend-table__row,
.section--light-alt .trend-table__row { border-bottom: 1px solid var(--light-line); }

.trend-table__row:last-child { border-bottom: none; }

.section--dark .trend-table__row--header { background: rgba(21, 179, 179, 0.1); }
.section--light .trend-table__row--header,
.section--light-alt .trend-table__row--header { background: rgba(13, 79, 79, 0.06); }

.trend-table__row--header .trend-table__cell {
  font-weight: 700;
  font-size: 14px;
}

.trend-table__cell {
  padding: 14px 18px;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--dark .trend-table__row--header .trend-table__cell { color: var(--dark-text); }
.section--dark .trend-table__cell { color: var(--dark-text-secondary); }
.section--light .trend-table__row--header .trend-table__cell,
.section--light-alt .trend-table__row--header .trend-table__cell { color: var(--brand-teal); }
.section--light .trend-table__cell,
.section--light-alt .trend-table__cell { color: var(--light-text-secondary); }

.trend-table__sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.section--dark .trend-table__sub { color: var(--dark-text-muted); }
.section--light .trend-table__sub,
.section--light-alt .trend-table__sub { color: var(--light-text-muted); }

.trend-table__cell--positive { color: var(--risk-low); font-weight: 700; }
.trend-table__cell--neutral { font-weight: 600; }

.section--dark .trend-table__cell--neutral { color: var(--dark-text-muted); }
.section--light .trend-table__cell--neutral,
.section--light-alt .trend-table__cell--neutral { color: var(--light-text-muted); }

@media (max-width: 760px) {
  .trend-table__row { grid-template-columns: 1.5fr 1fr 1fr 0.8fr; }
  .trend-table__cell { padding: 10px 12px; font-size: 13px; }
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-table {
  border-radius: var(--radius);
  overflow: hidden;
}

.section--dark .comparison-table { border: 1px solid var(--dark-line); }
.section--light .comparison-table { border: 1px solid var(--light-line); }

.comparison-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr;
}

.section--dark .comparison-table__row { border-bottom: 1px solid var(--dark-line); }
.section--light .comparison-table__row { border-bottom: 1px solid var(--light-line); }
.comparison-table__row:last-child { border-bottom: none; }

.section--dark .comparison-table__row--header { background: rgba(21, 179, 179, 0.1); }
.section--light .comparison-table__row--header { background: rgba(13, 79, 79, 0.06); }

.comparison-table__row--header .comparison-table__cell { font-weight: 700; font-size: 14px; }

.comparison-table__cell {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
}

.section--dark .comparison-table__cell { color: var(--dark-text-secondary); }
.section--light .comparison-table__cell { color: var(--light-text-secondary); }

.comparison-table__cell--label { font-weight: 600; }
.section--dark .comparison-table__cell--label { color: var(--dark-text); }
.section--light .comparison-table__cell--label { color: var(--brand-teal); }

.comparison-table__cell--old { background: rgba(100, 100, 100, 0.04); }
.comparison-table__cell--new { background: rgba(21, 179, 179, 0.04); }

.section--dark .comparison-table__row--header .comparison-table__cell--new { color: var(--primary); }
.section--light .comparison-table__row--header .comparison-table__cell--new { color: var(--primary); }

@media (max-width: 760px) {
  .comparison-table__row { grid-template-columns: 1fr; }
  .comparison-table__row--header { display: none; }
  .comparison-table__cell { padding: 10px 16px; }
  .comparison-table__cell--label {
    background: rgba(13, 79, 79, 0.08);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 8px 16px;
  }
}

/* ========================================
   METRICS GRID (Product page)
   ======================================== */

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-card {
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}

.section--dark .metric-card {
  background: rgba(15, 95, 95, 0.3);
  border: 1px solid var(--dark-line);
}

.section--light .metric-card {
  background: var(--light-bg-card);
  border: 1px solid var(--light-line);
  box-shadow: var(--shadow-card);
}

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

.metric-card__value {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card__unit { font-size: 0.5em; font-weight: 600; }

.metric-card__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.section--dark .metric-card__label { color: var(--dark-text); }
.section--light .metric-card__label { color: var(--brand-teal); }

.metric-card__detail { font-size: 13px; }
.section--dark .metric-card__detail { color: var(--dark-text-muted); }
.section--light .metric-card__detail { color: var(--light-text-muted); }

@media (max-width: 920px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .metrics-grid { grid-template-columns: 1fr; } }

/* ========================================
   DELIVERABLE CARDS
   ======================================== */

.deliverable-card { text-align: center; }
.deliverable-card__icon { font-size: 36px; margin-bottom: 8px; }
.deliverable-card__pages {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(21, 179, 179, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

/* ========================================
   CARD ICON
   ======================================== */

.card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* ========================================
   FOOTER (Darkest section)
   ======================================== */

.footer {
  background-color: var(--dark-bg-deep);
  color: var(--dark-text);
  padding: 60px 0 0;
}

@media (max-width: 760px) {
  .footer { padding: 40px 0 0; }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-line);
}

@media (max-width: 920px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; padding-bottom: 24px; }
}

.footer__logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer h4 {
  color: var(--dark-text-secondary);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p {
  color: var(--dark-text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.footer a {
  color: var(--dark-text-muted);
  font-size: 15px;
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
}

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

.footer__bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--dark-text-muted);
  border-top: 1px solid var(--dark-line);
}

.footer__bottom a {
  color: var(--dark-text-secondary);
  display: inline;
  margin: 0 12px;
}

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

.footer .muted {
  color: var(--dark-text-muted);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */

.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 30;
  box-shadow: 0 4px 12px rgba(21, 179, 179, 0.3);
}

.scroll-to-top::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 4px;
}

.scroll-to-top:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 20px rgba(21, 179, 179, 0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .scroll-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
  padding: 80px 0;
  background-color: var(--dark-bg);
}

@media (max-width: 760px) {
  .legal-page { padding: 60px 0; }
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  color: var(--dark-text);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--dark-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.legal-content em {
  background-color: rgba(21, 179, 179, 0.08);
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  display: block;
  margin: 20px 0;
  border-radius: 4px;
  font-style: normal;
  color: var(--dark-text);
}

.legal-content ol,
.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--dark-text-secondary);
  list-style: disc;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.legal-content table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
}

.legal-content table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--dark-line);
  color: var(--dark-text-secondary);
}

.legal-content table tr:last-child td { border-bottom: none; }
.legal-content table tbody tr:hover { background: rgba(21, 179, 179, 0.04); }

.legal-content h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--primary);
}

.legal-content p {
  color: var(--dark-text-secondary);
}

@media (max-width: 600px) {
  .legal-content table { font-size: 13px; }
  .legal-content table th, .legal-content table td { padding: 8px 10px; }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 32px;
  transition: var(--transition);
}

.back-link:hover { color: var(--primary-light); gap: 12px; }

/* ========================================
   PAGE HERO (Unterseiten)
   ======================================== */

.page-hero {
  background: linear-gradient(165deg, #1F2B38 0%, var(--dark-bg) 40%, var(--dark-bg-deep) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 179, 179, 0.1), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--brand-light);
  margin-bottom: 16px;
}

.page-hero .lead {
  color: var(--dark-text-secondary);
}

.page-hero .eyebrow {
  color: var(--dark-text-muted);
}

.page-hero .subline {
  max-width: 700px;
  color: var(--dark-text-secondary);
}

@media (max-width: 760px) {
  .page-hero { padding: 60px 0 40px; }
}

.page-hero--deep {
  padding: 100px 0 60px;
}

.page-hero--deep h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  max-width: 800px;
}

.page-hero--deep .lead {
  max-width: 680px;
  font-size: 17px;
}

@media (max-width: 760px) {
  .page-hero--deep { padding: 70px 0 40px; }
}

/* ========================================
   CTA SECTION (Unterseiten)
   ======================================== */

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-section h2 { margin-bottom: 8px; }
.cta-section .subline { margin-bottom: 0; }

.cta-section__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .cta-section { flex-direction: column; text-align: center; gap: 24px; }
  .cta-section__actions { flex-direction: column; width: 100%; }
}

/* ========================================
   VALUES GRID & METRICS ROW (Ueber-uns)
   ======================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; gap: 20px; } }

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 760px) { .metrics-row { grid-template-columns: 1fr; gap: 20px; } }

.metric { text-align: center; }

.metric__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.metric__label {
  font-size: 14px;
  line-height: 1.4;
}

.section--light .metric__label,
.section--light-alt .metric__label { color: var(--light-text-secondary); }
.section--dark .metric__label { color: var(--dark-text-secondary); }

/* ========================================
   FEATURE BLOCKS (Product deep-dive)
   ======================================== */

.feature-block {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.feature-block__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  width: 52px;
  height: 52px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-block h2 {
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-block__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-block__list li {
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}

.feature-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.7;
}

.section--dark .feature-block__list li { color: var(--dark-text-secondary); }
.section--light .feature-block__list li { color: var(--light-text-secondary); }

.feature-block__list li strong {
  color: var(--dark-text);
}

@media (max-width: 760px) { .feature-block { flex-direction: column; gap: 20px; } }

/* ========================================
   FRAMEWORK CARDS (Compliance)
   ======================================== */

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.framework-card {
  padding: 24px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}

.section--dark .framework-card {
  background: rgba(15, 95, 95, 0.3);
  border: 1px solid var(--dark-line);
}

.section--light .framework-card {
  background: var(--light-bg-card);
  border: 1px solid var(--light-line);
  box-shadow: var(--shadow-card);
}

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

.framework-card__refs {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.framework-card__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section--dark .framework-card__name { color: var(--dark-text); }
.section--light .framework-card__name { color: var(--brand-teal); }

.framework-card__desc {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.5;
}

.section--dark .framework-card__desc { color: var(--dark-text-muted); }
.section--light .framework-card__desc { color: var(--light-text-muted); }

@media (max-width: 920px) { .framework-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px) { .framework-grid { grid-template-columns: 1fr; } }

/* Compliance Status Bar */
.compliance-status { margin-top: 8px; }
.compliance-status__bar {
  display: flex; border-radius: var(--radius-sm); overflow: hidden; height: 40px; margin-bottom: 16px;
}
.compliance-status__segment {
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
}
.compliance-status__segment--gap { background: var(--risk-critical); flex: 45; }
.compliance-status__segment--partial { background: var(--risk-medium); color: #333; flex: 39; }
.compliance-status__segment--adequate { background: var(--risk-low); flex: 4; }
.compliance-status__note { font-size: 14px; text-align: center; }

/* Integration Grid */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.integration-item {
  padding: 20px;
  border-radius: var(--radius);
}

.section--dark .integration-item {
  background: rgba(15, 95, 95, 0.3);
  border: 1px solid var(--dark-line);
}

.section--light .integration-item {
  background: var(--light-bg-card);
  border: 1px solid var(--light-line);
  box-shadow: var(--shadow-card);
}

.integration-item strong { display: block; font-size: 15px; color: var(--primary); margin-bottom: 6px; }
.integration-item p { font-size: 14px; margin-bottom: 0; line-height: 1.5; }

@media (max-width: 920px) { .integration-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .integration-grid { grid-template-columns: 1fr; } }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   FOCUS & ACCESSIBILITY
   ======================================== */

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in { opacity: 1; transform: none; }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
  .container { max-width: 100%; }
}

@media (max-width: 760px) {
  .lead { font-size: 16px; }
  .btn { width: 100%; padding: 14px 20px; }
  .btn--sm { width: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0; }
  .hero__grid { gap: 24px; }
  .grid2, .grid3 { gap: 20px; }
  .footer__grid { gap: 24px; margin-bottom: 24px; }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-primary { color: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.muted { color: var(--dark-text-muted); }

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .header, .footer, .scroll-to-top, .nav__toggle { display: none; }
  body { background-color: white; color: black; }
  a { text-decoration: underline; }
}
