/* ═══════════════════════════════════════════════════════
   PRIMARO.AI — Landing Page Styles (Standalone)
   ═══════════════════════════════════════════════════════ */

/* ── Landing Navigation ────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--ds-space-lg);
  height: 56px;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ds-border);
}

.landing-nav-brand {
  text-decoration: none;
  font-family: var(--ds-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ds-text);
  letter-spacing: -0.02em;
}

.landing-nav-brand .primaro-ai {
  color: var(--ds-cyan);
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--ds-radius-sm);
  text-decoration: none;
  font-family: var(--ds-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ds-text-secondary);
  transition: all var(--ds-transition-fast);
}

.landing-nav-link:hover {
  color: var(--ds-text);
  background: var(--ds-bg-elevated);
}

.landing-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ds-text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .landing-nav-toggle { display: block; }
  .landing-nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: var(--ds-space-md);
    background: var(--ds-bg-surface);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ds-border);
    gap: 4px;
  }
  .landing-nav-links.open { display: flex; }
  .landing-nav-link { width: 100%; padding: 10px 14px; }
}

/* ── Hero Overline ─────────────────────────────────────── */
.hero-overline {
  font-family: var(--ds-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ds-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--ds-space-lg);
}

/* ── Hero CTA Group ───────────────────────────────────── */
.hero-cta-group {
  display: flex;
  gap: var(--ds-space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ── Hero Tagline Block ───────────────────────────────── */
.hero-tagline-block {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: var(--ds-space-2xl);
  margin-bottom: var(--ds-space-xl);
}

.tagline-line {
  font-family: var(--ds-font-body);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ds-text);
  margin: 0;
}

/* ── Story-Flow Section (Tagline + Dots combined) ─────── */
.primaro-storyflow-section {
  padding: var(--ds-space-xl) var(--ds-space-lg) var(--ds-space-2xl);
  position: relative;
  z-index: 1;
}

.primaro-storyflow-section .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.storyflow-taglines-top {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0;
}

.storyflow-tagline--left {
  grid-column: 2; /* centered over first arrow (between dot 1 and dot 2) */
  text-align: center;
}

.storyflow-tagline--right {
  grid-column: 6; /* centered over third arrow (between dot 3 and dot 4) */
  text-align: center;
}

.storyflow-taglines-bottom {
  display: flex;
  justify-content: center;
  margin-top: var(--ds-space-md);
}

.storyflow-tagline {
  font-family: var(--ds-font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--ds-text);
  margin: 0;
  white-space: nowrap;
}

.storyflow-tagline--center { text-align: center; }

@media (max-width: 640px) {
  .storyflow-taglines-top {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
  }
  .storyflow-tagline--left,
  .storyflow-tagline--right { text-align: center; }
}

/* ── How It Works Section ─────────────────────────────── */
.how-it-works-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.how-it-works-section .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

/* ── Founder Section ──────────────────────────────────── */
.founder-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.founder-section .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: var(--ds-space-xl);
  padding: var(--ds-space-xl);
}

.founder-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ds-accent);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.founder-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ds-text-secondary);
  font-style: italic;
  margin: 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--ds-space-lg);
  margin-top: var(--ds-space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-text-secondary);
  padding: 8px 16px;
  background: var(--ds-card-glass);
  border: 1px solid var(--ds-card-glass-border);
  border-radius: var(--ds-radius-md);
  backdrop-filter: blur(8px);
}

/* ── ENGAGE Badge in Timeline ─────────────────────────── */
.primaro-timeline-badge-soon {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(100, 116, 139, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.primaro-timeline-dimmed {
  opacity: 0.45;
}

.primaro-timeline-dimmed .primaro-stage-name {
  color: #64748B;
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .founder-photo img {
    width: 140px;
    height: 140px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

[data-theme="light"] .founder-photo img {
  border-color: #0284C7;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

/* ── Demo Player (Video-artiger Screenshot Player) ─────── */
.demo-player {
  max-width: 960px;
  margin: var(--ds-space-xl) auto 0;
  padding: 0;
  overflow: visible;
}

.demo-player-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--ds-radius-lg);
  background: #0F172A;
}

.demo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.demo-slide.active {
  opacity: 1;
}

/* Text-Overlay auf dem Video */
.demo-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--ds-radius-md);
  z-index: 3;
  transition: opacity 0.4s ease;
}

.demo-overlay-step {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ds-accent);
  margin-bottom: 4px;
}

.demo-overlay-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.demo-overlay-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Progress Bar im Video */
.demo-player-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 4;
}

.demo-player-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ds-accent);
  transition: width 0.1s linear;
}

/* ── Thumbnail-Schritte mit Hover-Zoom ────────────────── */
.demo-thumbs {
  display: none;
}

.demo-thumb {
  position: relative;
  cursor: pointer;
  border-radius: var(--ds-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.demo-thumb.active {
  border-color: var(--ds-accent);
}

.demo-thumb > img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  object-position: top left;
  display: block;
  filter: brightness(0.6);
  transition: filter 0.2s ease;
}

.demo-thumb.active > img,
.demo-thumb:hover > img {
  filter: brightness(1);
}

.demo-thumb-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ds-text-muted);
  padding: 6px 4px;
  background: var(--ds-bg-surface);
}

.demo-thumb.active .demo-thumb-label {
  color: var(--ds-accent);
}

/* Hover-Zoom: großes Bild bei Mouse-Over */
.demo-thumb-zoom {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  max-width: 80vw;
  z-index: 100;
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  border: 2px solid var(--ds-accent);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.15);
  animation: zoomIn 0.2s ease-out;
}

.demo-thumb:hover .demo-thumb-zoom {
  display: block;
}

.demo-thumb-zoom img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes zoomIn {
  from { opacity: 0; transform: translateX(-50%) scale(0.9); }
  to { opacity: 1; transform: translateX(-50%) scale(1); }
}

/* Hover-Zoom für die äußeren Thumbs: Position anpassen */
.demo-thumb:first-child .demo-thumb-zoom {
  left: 0;
  transform: translateX(0);
}
.demo-thumb:first-child:hover .demo-thumb-zoom {
  display: block;
}
@keyframes zoomIn { from { opacity: 0; } to { opacity: 1; } }

.demo-thumb:last-child .demo-thumb-zoom {
  left: auto;
  right: 0;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .demo-thumb > img { height: 40px; }
  .demo-thumb-label { font-size: 9px; padding: 4px 2px; }
  .demo-thumb-zoom { width: 300px; }
  .demo-overlay-title { font-size: 14px; }
  .demo-overlay-desc { font-size: 11px; }
}

[data-theme="light"] .demo-thumbs {
  background: #FFFFFF;
  border-color: var(--ds-border);
}

[data-theme="light"] .demo-overlay-text {
  background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .demo-overlay-title {
  color: #0F172A;
}

[data-theme="light"] .demo-overlay-desc {
  color: rgba(15, 23, 42, 0.6);
}

[data-theme="light"] .demo-player-screen {
  background: #F1F5F9;
}

/* ── Scroll Progress Bar ─────────────────────────────── */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--ds-accent), var(--ds-cyan));
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: calc(56px + var(--ds-space-xl)) var(--ds-space-2xl) var(--ds-space-lg);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-headline {
  font-family: var(--ds-font-body);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--ds-space-lg);
  position: relative;
  overflow: hidden;
}

.hero-headline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: hero-shimmer 6s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.hero-subline {
  font-family: var(--ds-font-body);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ds-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--ds-space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-outline {
  display: inline-block;
  font-family: var(--ds-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-cyan);
  border: 1px solid var(--ds-cyan);
  border-radius: 6px;
  padding: 8px 24px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta-outline:hover {
  background: rgba(56, 189, 248, 0.1);
}

/* ── Hero Demo Player ─────────────────────────────────── */
.hero-demo-player {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  margin: var(--ds-space-xl) auto 0;
}

.hero-demo-screen {
  position: relative;
  border-radius: var(--ds-radius-xl);
  overflow: hidden;
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 189, 248, 0.08);
  aspect-ratio: 16 / 9;
}

.hero-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3;
  cursor: pointer;
  background: rgba(10, 15, 30, 0.5);
  transition: opacity 0.4s ease;
}

.hero-demo-overlay:hover .hero-demo-play-btn { transform: scale(1.1); }
.hero-demo-overlay:hover .hero-demo-play-btn svg circle {
  stroke: var(--ds-accent);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.5));
}

.hero-demo-play-btn { transition: transform 0.3s ease; }

.hero-demo-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ds-text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Mock Dashboard */
.hero-demo-thumbnail { width: 100%; height: 100%; display: flex; flex-direction: column; }

.hero-demo-mock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-dot { width: 8px; height: 8px; border-radius: 50%; }

.mock-title {
  font-size: 11px;
  color: var(--ds-text-muted);
  margin-left: 8px;
  font-family: var(--ds-font-mono);
}

.hero-demo-mock-body { flex: 1; display: flex; padding: 8px; gap: 8px; }

.mock-sidebar { width: 60px; display: flex; flex-direction: column; gap: 4px; }

.mock-nav-item { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.06); }
.mock-nav-item.mock-active { background: rgba(56, 189, 248, 0.3); }

.mock-main { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mock-kpi-row { display: flex; gap: 4px; }

.mock-kpi {
  flex: 1;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: mock-shimmer 2s infinite;
}

.mock-chart {
  flex: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.04);
  min-height: 50px;
}

.mock-table { display: flex; flex-direction: column; gap: 3px; }
.mock-row { height: 10px; border-radius: 3px; background: rgba(255, 255, 255, 0.03); }

@keyframes mock-shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Demo Steps */
.hero-demo-sequence {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: rgba(10, 15, 30, 0.92);
  z-index: 2;
}

.demo-step {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--ds-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.demo-step-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ds-accent);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.demo-step-title { font-size: 14px; font-weight: 700; color: var(--ds-text); margin-bottom: 4px; }
.demo-step-desc { font-size: 11px; color: var(--ds-text-secondary); line-height: 1.4; }
.demo-step-visual { margin-top: 10px; display: flex; justify-content: center; }

.demo-signal-pulse {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ds-accent);
  animation: demo-pulse 1s ease-in-out infinite;
}

@keyframes demo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(56, 189, 248, 0); }
}

.demo-score-ring { position: relative; width: 60px; height: 60px; }
.demo-score-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--ds-accent);
  font-family: var(--ds-font-mono);
}

.demo-outreach-preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

.demo-email-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(56, 189, 248, 0.2);
  animation: demo-type 1.5s ease-out forwards;
}

.demo-email-line.short { animation: demo-type-short 1.5s ease-out forwards; }
.demo-email-line.medium { animation: demo-type-medium 1.5s ease-out forwards; }
@keyframes demo-type { from { width: 0; } to { width: 100%; } }
@keyframes demo-type-short { from { width: 0; } to { width: 60%; } }
@keyframes demo-type-medium { from { width: 0; } to { width: 80%; } }

.hero-demo-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ds-text-muted);
  font-style: italic;
}

/* ── Hero Mission Statement ───────────────────────────── */
.hero-mission-statement {
  font-family: var(--ds-font-body);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  margin-top: var(--ds-space-2xl);
  margin-bottom: calc(var(--ds-space-md) + 10px);
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  white-space: nowrap;
}

.hero-mission-sub {
  font-family: var(--ds-font-body);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--ds-text);
  margin-bottom: calc(var(--ds-space-xl) + 10px);
}

/* Hero: colored underlines */
.hero .primaro-noise,
.hero .primaro-pathway,
.hero .primaro-signal {
  color: var(--ds-text);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.hero .primaro-noise   { text-decoration-color: #94A3B8; }
.hero .primaro-pathway { text-decoration-color: #38BDF8; }
.hero .primaro-signal  { text-decoration-color: #34D399; }

/* ── Story Flow ───────────────────────────────────────── */
.primaro-story-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: var(--ds-space-2xl) auto var(--ds-space-2xl);
  max-width: 1000px;
}

.story-step { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 0; }

.story-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.story-dot span { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; line-height: 1; }

.story-dot--navy     { background: #94A3B8; }
.story-dot--navy span { color: #0F172A; font-size: 44px; transform: translateY(-6px); }
.story-dot--volt     { background: #FBBF24; box-shadow: 0 0 12px rgba(251, 191, 36, 0.4); }
.story-dot--volt span { color: #0F172A; font-size: 26px; }
.story-dot--phosphor { background: #34D399; box-shadow: 0 0 12px rgba(52, 211, 153, 0.4); }
.story-dot--phosphor span { color: #0F172A; font-size: 32px; }
.story-dot--pathway  { background: #38BDF8; box-shadow: 0 0 12px rgba(56, 189, 248, 0.4); }
.story-dot--pathway span { color: #0F172A; font-size: 24px; }
.story-dot--white    { background: #FFFFFF; box-shadow: 0 0 12px rgba(255, 255, 255, 0.3); }
.story-dot--white span { color: #0F172A; font-size: 28px; font-weight: 800; }

.story-label {
  margin-top: 10px;
  font-family: var(--ds-font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.story-label--navy     { color: #94A3B8; }
.story-label--volt     { color: #FBBF24; }
.story-label--phosphor { color: #34D399; }
.story-label--pathway  { color: #38BDF8; }
.story-label--white    { color: #FFFFFF; }

.story-desc {
  margin-top: 4px;
  font-family: var(--ds-font-body);
  font-size: 13px;
  color: #CBD5E1;
  text-align: center;
  line-height: 1.3;
}

.story-arrow {
  color: #475569;
  font-size: 20px;
  margin-top: 14px;
  padding: 0 12px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .primaro-story-flow { flex-direction: column; align-items: center; gap: 4px; max-width: 200px; }
  .story-arrow { transform: rotate(90deg); margin: 0; padding: 0; }
}

/* ── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Value Props ──────────────────────────────────────── */
.primaro-compare-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-compare-section .section-inner { max-width: 900px; margin: 0 auto; }

.primaro-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ds-space-lg);
  margin-top: var(--ds-space-xl);
}

.primaro-value-card { text-align: center; padding: var(--ds-space-xl); }

.primaro-value-card h3 {
  font-family: var(--ds-font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--ds-text);
  margin: 0 0 8px;
}

.primaro-value-card p { font-size: 15px; color: var(--ds-text-secondary); line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .primaro-value-grid { grid-template-columns: 1fr; }
}

/* ── 15-Stufen Timeline ──────────────────────────────── */
.primaro-stages-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-stages-section .section-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.primaro-timeline-15 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--ds-space-xl);
}

.primaro-timeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--ds-radius-md);
  text-align: left;
}

.primaro-timeline-auto {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.primaro-timeline-manual {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--ds-border);
  opacity: 0.7;
}

.primaro-timeline-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34D399;
  background: rgba(52, 211, 153, 0.12);
  padding: 3px 10px;
  border-radius: 10px;
}

.primaro-timeline-divider {
  padding: 12px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-text-muted);
}

.primaro-stage-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #38BDF8, #38BDF8);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.primaro-stage-num-manual {
  background: var(--ds-bg-elevated);
  color: var(--ds-text-muted);
}

.primaro-stage-name { font-weight: 600; font-size: 14px; color: var(--ds-text); }

/* ── Pipeline Preview ──────────────────────────────────── */
.pipeline-preview-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.pipeline-preview {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: var(--ds-space-xl) auto 0;
  position: relative;
}

.pp-stage {
  flex: 1 1 0;
  min-width: 0;
  background: var(--ds-card-glass);
  border: 1px solid var(--ds-card-glass-border);
  border-radius: var(--ds-radius-lg);
  padding: var(--ds-space-lg) var(--ds-space-md);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pp-stage:hover { transform: translateY(-4px); box-shadow: var(--ds-shadow-md); }

.pp-stage-highlight {
  border-color: var(--ds-accent);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.pp-icon { font-size: 28px; margin-bottom: 8px; }
.pp-label { font-family: var(--ds-font-body); font-size: 15px; font-weight: 700; color: var(--ds-text); margin-bottom: 6px; }
.pp-detail { font-size: 12px; color: var(--ds-text-muted); line-height: 1.5; }

.pp-tiers { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.pp-tier { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; display: inline-block; }
.pp-tier-t1 { background: rgba(52, 211, 153, 0.15); color: #34D399; }
.pp-tier-t2 { background: rgba(56, 189, 248, 0.15); color: #38BDF8; }
.pp-tier-t3 { background: rgba(100, 116, 139, 0.15); color: #64748B; }

.pp-arrow { font-size: 24px; color: var(--ds-accent); padding: 0 8px; flex-shrink: 0; opacity: 0.6; display: flex; align-items: center; }

.pp-dots-layer { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }

.pp-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color, var(--ds-accent));
  box-shadow: 0 0 8px var(--dot-color, var(--ds-accent)), 0 0 16px color-mix(in srgb, var(--dot-color, var(--ds-accent)) 40%, transparent);
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}

.pp-stage-counter {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ds-accent);
  font-family: var(--ds-font-mono);
  opacity: 0.8;
}

.pp-arrow-text { display: inline-block; animation: pp-arrow-pulse 2s ease-in-out infinite; }

@keyframes pp-arrow-pulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3px); }
}

.pp-cta { text-align: center; margin-top: var(--ds-space-xl); }

.portfolio-header { text-align: center; margin-bottom: var(--ds-space-2xl); }

@media (max-width: 768px) {
  .pipeline-preview { flex-direction: column; gap: var(--ds-space-sm); }
  .pp-stage { max-width: 100%; width: 100%; }
  .pp-arrow { transform: rotate(90deg); padding: 4px 0; }
  .hero-demo-sequence { flex-direction: column; gap: 10px; padding: 12px; }
  .demo-step { padding: 10px 8px; }
  .demo-step-title { font-size: 12px; }
  .hero { padding: var(--ds-space-lg) var(--ds-space-md); padding-top: calc(56px + var(--ds-space-lg)); }
}

/* ── Comparison Table ──────────────────────────────────── */
.primaro-comptable-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-comptable-section .section-inner { max-width: 1000px; margin: 0 auto; }

.primaro-comptable-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

.primaro-compare-table {
  margin-top: var(--ds-space-xl);
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ds-border);
}

.primaro-compare-header,
.primaro-compare-row {
  display: grid;
  grid-template-columns: 120px repeat(4, 1fr);
  gap: 0;
}

.primaro-compare-header {
  background: var(--ds-bg-elevated);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.primaro-compare-col { padding: 14px 16px; border-bottom: 1px solid var(--ds-border); }
.primaro-compare-label { font-weight: 600; color: var(--ds-text); font-size: 14px; }
.primaro-compare-other { color: var(--ds-text-muted); font-size: 14px; }
.primaro-compare-primaro { color: #38BDF8; font-weight: 600; font-size: 14px; }
.primaro-compare-row:last-child .primaro-compare-col { border-bottom: none; }

@media (max-width: 768px) {
  .primaro-compare-header,
  .primaro-compare-row { grid-template-columns: 80px repeat(4, 1fr); }
  .primaro-compare-col { padding: 8px 6px; font-size: 11px; }
}

/* ── DSGVO ─────────────────────────────────────────────── */
.primaro-dsgvo-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-dsgvo-section .section-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.primaro-dsgvo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ds-space-lg);
  margin-top: var(--ds-space-xl);
}

.primaro-dsgvo-card { padding: var(--ds-space-xl); text-align: center; }
.primaro-dsgvo-card h4 { font-size: 18px; font-weight: 700; color: var(--ds-text); margin-bottom: 8px; }
.primaro-dsgvo-card p { font-size: 14px; color: var(--ds-text-secondary); line-height: 1.6; }

@media (max-width: 768px) {
  .primaro-dsgvo-grid { grid-template-columns: 1fr; }
}

/* ── ROI Calculator ────────────────────────────────────── */
.primaro-roi-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-roi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

.primaro-roi-section .section-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.primaro-roi-card { padding: var(--ds-space-xl); text-align: left; }

.primaro-roi-inputs { display: flex; flex-direction: column; gap: var(--ds-space-lg); margin-bottom: var(--ds-space-xl); }
.primaro-roi-group { display: flex; flex-direction: column; gap: 6px; }
.primaro-roi-group label { font-size: 14px; font-weight: 600; color: var(--ds-text-secondary); }
.primaro-roi-group input[type="range"] { width: 100%; accent-color: #38BDF8; }

.primaro-roi-value {
  font-family: var(--ds-font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--ds-accent);
  text-align: right;
}

.primaro-roi-result { text-align: center; padding-top: var(--ds-space-lg); border-top: 1px solid var(--ds-border); }
.primaro-roi-number { font-family: var(--ds-font-mono); font-size: 40px; font-weight: 700; color: #38BDF8; margin-bottom: 4px; }
.primaro-roi-label { font-size: 14px; color: var(--ds-text-secondary); margin-bottom: 12px; }
.primaro-roi-detail { font-size: 13px; color: var(--ds-text-muted); }

/* ── Mythologie ────────────────────────────────────────── */
.primaro-myth-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-myth-section .section-title { text-align: center; }

.primaro-myth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

/* ── Module Cards ──────────────────────────────────────── */
.primaro-systems-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-systems-section .section-title { text-align: center; }

.primaro-systems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ds-space-xl);
  max-width: 900px;
  margin: var(--ds-space-xl) auto 0;
}

.primaro-systems-grid-4 { grid-template-columns: repeat(4, 1fr); }

.primaro-system-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-decoration: none;
  color: var(--ds-text);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.primaro-system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
}

.primaro-system-card--primary { border-color: rgba(56, 189, 248, 0.25); }
.primaro-system-card--upcoming { opacity: 0.65; cursor: default; }

.system-card-logo { position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 700; }
.system-card-logo .primaro-brand { color: var(--ds-text); }
.system-card-logo .primaro-ai { color: var(--ds-cyan); }

.system-card-icon { font-size: 32px; margin-bottom: 12px; text-align: center; }

.primaro-system-card h3 {
  font-family: var(--ds-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: center;
}

.primaro-system-card p { font-size: 14px; line-height: 1.6; color: var(--ds-text-secondary); margin: 0 0 16px; flex: 1; }

.system-card-stats { display: flex; gap: 16px; margin-bottom: 16px; }
.system-stat { font-size: 13px; color: var(--ds-text-muted); }
.system-stat strong { color: var(--ds-cyan); font-weight: 700; }

.system-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-cyan);
  border: 1px solid var(--ds-cyan);
  border-radius: 6px;
  padding: 6px 16px;
  display: block;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.primaro-system-card:hover .system-card-cta { background: rgba(56, 189, 248, 0.1); }

.system-card-badge {
  display: inline-block;
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ds-text-muted);
  background: var(--ds-bg-elevated);
  padding: 4px 12px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .primaro-systems-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .primaro-systems-grid,
  .primaro-systems-grid-4 { grid-template-columns: 1fr; gap: var(--ds-space-lg); }
}

/* ── Social Proof ──────────────────────────────────────── */
.primaro-proof-section {
  padding: 60px var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-proof-section .section-inner { max-width: 1000px; margin: 0 auto; }

.primaro-proof-section h2 {
  text-align: center;
  font-family: var(--ds-font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--ds-text);
  margin-bottom: var(--ds-space-md);
}

.primaro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px auto;
  max-width: 800px;
  justify-items: center;
}

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

.primaro-proof-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  border: 1px solid var(--ds-border);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.primaro-proof-card:hover {
  border-color: #38BDF844;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.1);
}

.primaro-proof-label-title {
  font-size: 14px;
  font-weight: 600;
  color: #38BDF8;
  margin-top: 12px;
}

.primaro-proof-label-detail {
  font-size: 13px;
  color: var(--ds-text-muted);
  margin-top: 6px;
}

.primaro-proof-metric { font-size: 48px; font-weight: 700; color: #38BDF8; line-height: 1; display: inline; }
.primaro-proof-unit { font-size: 28px; font-weight: 600; color: #38BDF8; display: inline; }
.primaro-proof-label { font-size: 14px; color: var(--ds-text-secondary); margin-top: 8px; }

.primaro-testimonial { max-width: 700px; margin: 40px auto 0; text-align: center; }

.primaro-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--ds-text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
  padding: 0 20px;
  border: none;
  position: relative;
}

.primaro-quote::before {
  content: '\201E';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 60px;
  color: #38BDF833;
  line-height: 1;
}

.primaro-quote em { color: #38BDF8; font-style: italic; }
.primaro-quote-author { display: flex; flex-direction: column; gap: 2px; }
.primaro-quote-name { font-weight: 600; font-size: 14px; color: var(--ds-text); }
.primaro-quote-role { font-size: 13px; color: var(--ds-text-muted); }

/* ── Pricing Cards ─────────────────────────────────────── */
.primaro-pricing-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.primaro-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

.primaro-pricing-section .section-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.primaro-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ds-space-lg);
  margin-top: var(--ds-space-xl);
}

.primaro-pricing-card {
  padding: var(--ds-space-xl);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.primaro-pricing-card h3 { font-size: 22px; font-weight: 700; color: var(--ds-text); margin: 0 0 12px; }

.primaro-pricing-price {
  font-family: var(--ds-font-mono);
  font-size: 48px;
  font-weight: 800;
  color: #38BDF8;
  margin-bottom: var(--ds-space-lg);
}

.primaro-pricing-price span { font-size: 18px; font-weight: 400; color: var(--ds-text-muted); }

.primaro-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--ds-space-xl);
  text-align: left;
  flex: 1;
}

.primaro-pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ds-text-secondary);
  border-bottom: 1px solid var(--ds-border);
}

.primaro-pricing-features li::before {
  content: '\2713 ';
  color: #38BDF8;
  font-weight: 700;
  margin-right: 8px;
}

.primaro-pricing-popular {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

.primaro-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #38BDF8, #38BDF8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .primaro-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: var(--ds-space-xl) auto 0; }
}

/* Landing page: all buttons use slim outline style */
.cta-buttons .ds-btn,
.primaro-pricing-card .ds-btn {
  background: transparent !important;
  color: var(--ds-cyan) !important;
  border: 1px solid var(--ds-cyan) !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px !important;
  box-shadow: none !important;
  text-align: center;
  justify-content: center;
}

.cta-buttons .ds-btn:hover,
.primaro-pricing-card .ds-btn:hover {
  background: rgba(56, 189, 248, 0.1) !important;
}

/* ── Contact Form Section ──────────────────────────────── */
.contact-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  position: relative;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

.contact-section .section-inner { max-width: 700px; margin: 0 auto; }

.contact-form-card { padding: var(--ds-space-xl); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--ds-space-md);
  margin-bottom: var(--ds-space-md);
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-text-secondary);
}

.form-group-full { margin-bottom: var(--ds-space-lg); display: flex; flex-direction: column; gap: 6px; }

.form-group-full label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-text-secondary);
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px !important;
  padding: 14px 32px !important;
}

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

.contact-feedback {
  margin-top: var(--ds-space-md);
  padding: 12px 16px;
  border-radius: var(--ds-radius-md);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.contact-success {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.contact-error {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

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

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  padding: var(--ds-space-4xl) var(--ds-space-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section .section-inner { max-width: 600px; margin: 0 auto; }

.cta-section h2 {
  font-family: var(--ds-font-body);
  font-size: 32px;
  font-weight: 700;
  color: var(--ds-text);
  margin-bottom: var(--ds-space-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--ds-space-md);
  flex-wrap: wrap;
}

.cta-section .ds-btn-primary {
  position: relative;
  overflow: hidden;
}

.cta-section .ds-btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #38BDF8, #38BDF8);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.cta-section .ds-btn-primary:hover::before { opacity: 0.6; }

@media (max-width: 768px) {
  .cta-section h2 { font-size: 24px; }
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: var(--ds-space-2xl) var(--ds-space-lg);
  border-top: 1px solid var(--ds-border);
  color: var(--ds-text-muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* ── Section Dividers ──────────────────────────────────── */
.primaro-compare-section::before,
.primaro-stages-section::before,
.primaro-dsgvo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #38BDF8, transparent);
  opacity: 0.3;
}

/* ── Hero Gradient Background ──────────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   Light Theme Overrides
   ═══════════════════════════════════════════════════════ */

[data-theme="light"] .landing-nav {
  background: rgba(248, 250, 252, 0.9);
}

[data-theme="light"] .scroll-progress-bar {
  background: linear-gradient(90deg, #38BDF8, #0284C7);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

[data-theme="light"] .hero-demo-screen {
  background: rgba(245, 247, 250, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-demo-overlay {
  background: rgba(245, 247, 250, 0.6);
}

[data-theme="light"] .hero-demo-sequence {
  background: rgba(245, 247, 250, 0.95);
}

[data-theme="light"] .hero-demo-mock-header {
  background: rgba(0, 0, 0, 0.04);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-nav-item { background: rgba(0, 0, 0, 0.06); }
[data-theme="light"] .mock-kpi { background: rgba(0, 0, 0, 0.04); border-color: rgba(0, 0, 0, 0.08); }
[data-theme="light"] .mock-row { background: rgba(0, 0, 0, 0.04); }
[data-theme="light"] .demo-step { background: rgba(0, 0, 0, 0.03); border-color: rgba(0, 0, 0, 0.08); }

[data-theme="light"] .hero .primaro-noise   { text-decoration-color: #64748B; }
[data-theme="light"] .hero .primaro-pathway { text-decoration-color: #0284C7; }
[data-theme="light"] .hero .primaro-signal  { text-decoration-color: #059669; }

[data-theme="light"] .story-dot--navy { background: #94A3B8; }
[data-theme="light"] .story-dot--navy span { color: #FFFFFF; }
[data-theme="light"] .story-dot--white { background: #0F172A; }
[data-theme="light"] .story-dot--white span { color: #FFFFFF; }
[data-theme="light"] .story-label--navy { color: #94A3B8; }
[data-theme="light"] .story-label--phosphor { color: #059669; }
[data-theme="light"] .story-label--pathway { color: #0284C7; }
[data-theme="light"] .story-label--white { color: #0F172A; }
[data-theme="light"] .story-desc { color: #94A3B8; }
[data-theme="light"] .story-arrow { color: #CBD5E1; }

[data-theme="light"] .pp-stage {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--ds-border);
}

[data-theme="light"] .pp-stage-highlight {
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

[data-theme="light"] .primaro-timeline-auto {
  background: rgba(52, 211, 153, 0.06);
}

[data-theme="light"] .primaro-timeline-manual {
  background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .primaro-compare-header {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .primaro-pricing-popular {
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
}

[data-theme="light"] .primaro-proof-card {
  background: #fff;
  border-color: #e2e8f0;
}

[data-theme="light"] .primaro-proof-card:hover {
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.08);
}

[data-theme="light"] .animated-grid-bg::before {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .animated-grid-bg::after {
  background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
}
