/* ═══════════════════════════════════════════
   INTER (Variable Font, selbst gehostet - DSGVO-clean)
═══════════════════════════════════════════ */
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter/inter-variable-latin.woff2') format('woff2-variations'),
       url('fonts/inter/inter-variable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════
   ARLON FONT FACES
═══════════════════════════════════════════ */
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-Thin.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-UltraLight.otf') format('opentype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-UltraBold.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Arlon'; src: url('fonts/Arlon-Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── humatter Styleguide v4 ──────────────────────── */
  /* Primary Colors                                     */
  --navy:          #0B1444;   /* Deep Navy – primary brand  */
  --blue:          #2D7BFF;   /* Soft Blue – highlight/CTAs */
  --blue-dark:     #1A5FD4;   /* Darker Blue – hover states */
  --blue-light:    #6AABFF;   /* Light Blue – tints         */
  --blue-soft:     #C2D9FF;   /* Very Light Blue            */
  /* Secondary Colors                                   */
  --slate:         #E6EEF5;   /* Slate Gray – supporting UI */
  --light-gray:    #F4F6F9;   /* Light Gray – backgrounds   */
  --gray-mid:      #C8D8EC;   /* Mid Gray – dividers        */
  --white:         #FFFFFF;
  /* Navy Shades – dark sections                        */
  --navy-2:        #08102F;   /* Deeper Navy                */
  --navy-3:        #131E55;   /* Mid Navy                   */
  --navy-4:        #1E2A66;   /* Muted Navy                 */
  /* Semantic alias – legacy slots, all map to brand     */
  --indigo:        #2D7BFF;   /* alias → blue               */
  --indigo-dark:   #1A5FD4;
  --indigo-light:  #6AABFF;
  --cyan:          #6AABFF;   /* alias → blue-light         */
  --green:         #10B981;   /* success state only         */
  /* Text                                               */
  --text-primary:  #E6EEF5;
  --text-secondary:#B8C8DC;
  --text-muted:    #7090A8;
  --text-dark:     #0B1444;
  --text-dark-2:   #1E2A66;
  --text-dark-3:   #4A5680;
  /* Backgrounds & Borders                              */
  --bg-light:      #F4F6F9;
  --bg-light-2:    #E6EEF5;
  --border:        rgba(255,255,255,0.08);
  --border-light:  #C8D8EC;
  /* Radii & Shadows                                    */
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow-sm:     0 1px 3px rgba(11,20,68,0.08), 0 1px 2px rgba(11,20,68,0.06);
  --shadow-md:     0 4px 16px rgba(11,20,68,0.12);
  --shadow-lg:     0 20px 60px rgba(11,20,68,0.15);
  --shadow-glow:   0 0 60px rgba(45,123,255,0.3);
}

html { scroll-behavior: smooth; }

body {
  /* Inter as primary UI font per Brand Guidelines v1.0 */
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Arlon exclusively for brand headlines & wordmark (Brand Guidelines) */
h1, h2, h3, h4, h5, h6,
.hero-headline, .section-headline, .beta-headline,
.nav-logo-text, .pricing-price, .stat-number {
  font-family: 'Arlon', 'Inter', system-ui, sans-serif;
}
/* Typography Hierarchy per Brand Guidelines v1.0 */
/* H1 = Bold (700) */
h1, .hero-headline { font-weight: 700; }
/* H2 = SemiBold (600) */
h2, .section-headline, .beta-headline { font-weight: 600; }
/* H3 = Medium (500) */
h3 { font-weight: 500; }
/* H4-H6, util classes */
h4, h5, h6, .nav-logo-text, .pricing-price, .stat-number { font-weight: 700; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(45,123,255,0.18);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label-light { color: var(--blue-light); background: rgba(45,123,255,0.15); }

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; /* H2 SemiBold per Brand Guidelines */
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 18px;
  color: var(--text-dark-3);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(45,123,255,0.4);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,123,255,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn-outline:hover {
  background: rgba(45,123,255,0.06);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   NAVIGATION  — light theme
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,20,68,0.08);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(11,20,68,0.08);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.humatter-nav-logo {
  display: block;
  width: 200px;
  max-width: 200px;
  height: auto;
  aspect-ratio: 2603 / 535;
  flex-shrink: 0;
}
/* Logo darf laut Styleguide §7.3 nicht gefiltert werden –
   stattdessen helle Card-Fläche im Footer, behält Originalfarben. */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(11,20,68,0.25);
}
.humatter-footer-logo {
  display: block;
  width: 180px;
  max-width: 180px;
  height: auto;
  aspect-ratio: 2603 / 535;
}
.nav-logo-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  font-family: 'Arlon', sans-serif;
}
.nav-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--blue);
  color: var(--navy);
  padding: 2px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .nav-cta {
  background: var(--blue);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(45,123,255,0.4);
}
.nav-links .nav-cta:hover {
  background: var(--blue-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,123,255,0.5);
}

.nav-links .nav-login,
.nav-mobile .nav-login {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid rgba(11,20,68,0.25);
  background: transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-links .nav-login:hover,
.nav-mobile .nav-login:hover {
  background: rgba(11,20,68,0.05);
  border-color: rgba(11,20,68,0.4);
  transform: translateY(-1px);
  color: var(--navy);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background: var(--white);
  border-top: 1px solid rgba(11,20,68,0.08);
}
.nav-mobile a {
  padding: 12px 0;
  color: var(--text-dark-2);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(11,20,68,0.06);
}
.nav-mobile .nav-cta {
  margin-top: 16px;
  text-align: center;
  background: var(--blue);
  color: var(--navy);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   HERO — light theme, white bg + lilac blob
═══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--white);
  padding: 100px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* Large soft blue-gray blob — top right */
.hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, #D6E8F5 0%, #E6EEF5 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}
/* Smaller secondary blob */
.hero::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #C8E0F0 0%, #E6EEF5 70%, transparent 100%);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg { display: none; } /* hide old dark glows */

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: var(--light-gray);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}
.dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline {
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 700; /* H1 Bold per Brand Guidelines */
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-dark-3);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Override btn-ghost for light hero */
.hero .btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11,20,68,0.2);
  backdrop-filter: none;
}
.hero .btn-ghost:hover {
  background: rgba(11,20,68,0.05);
  border-color: rgba(11,20,68,0.3);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(11,20,68,0.08);
  padding-top: 24px;
}
.hero-trust span {
  font-size: 13px;
  color: var(--text-dark-3);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════
   HERO — PRODUCT GALLERY
═══════════════════════════════════════════ */
.hero .container {
  grid-template-columns: 52fr 48fr;
}

.hero-gallery {
  position: relative;
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-frame {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(11,20,68,0.18),
    0 6px 16px rgba(11,20,68,0.08);
  border: 1px solid rgba(11,20,68,0.06);
  animation: gallery-float 8s ease-in-out infinite;
}
@keyframes gallery-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gallery-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: var(--light-gray);
  border-bottom: 1px solid rgba(11,20,68,0.06);
}
.gallery-mac-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.gallery-mac-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gray-mid);
}
.gallery-mac-dots span:nth-child(1) { background: #FF5F57; }
.gallery-mac-dots span:nth-child(2) { background: #FEBC2E; }
.gallery-mac-dots span:nth-child(3) { background: #28C840; }

.gallery-url {
  flex: 1;
  background: var(--white);
  color: var(--text-dark-3);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  border: 1px solid rgba(11,20,68,0.06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--light-gray);
  overflow: hidden;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-caption {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark-2);
  letter-spacing: -0.01em;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

.gallery-dots-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--blue);
}
.gallery-dot:hover:not(.active) {
  background: var(--text-dark-3);
}

/* Dashed connection lines */
.match-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.match-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(11,20,68,0.1), 0 4px 12px rgba(11,20,68,0.06);
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  animation: float 6s ease-in-out infinite;
}
.match-card:nth-child(3) { animation-delay: -2s; }
.match-card:nth-child(4) { animation-delay: -4s; }
.match-card:hover { transform: translateY(-6px) !important; }

/* Top card – Top Match (larger, centered) */
.match-card-top {
  top: 20px;
  left: calc(50% - 120px); /* centered in right column */
  width: 240px;
  /* "stacked card" effect: lilac card peeks out to the right */
  box-shadow:
    14px 10px 0 0 #E6EEF5,
    0 16px 48px rgba(11,20,68,0.1),
    0 4px 12px rgba(11,20,68,0.06);
}
/* Bottom-left card (medium, lower-left) */
.match-card-bl {
  bottom: 60px;
  left: 5px;
  width: 162px;
  animation-delay: -1.5s;
  /* "stacked card" effect: lilac card peeks out to the left */
  box-shadow:
    -10px 10px 0 0 #E6EEF5,
    0 16px 48px rgba(11,20,68,0.1),
    0 4px 12px rgba(11,20,68,0.06);
}
/* Bottom-right card (medium, lower-right) */
.match-card-br {
  bottom: 40px;
  right: 8px;
  width: 162px;
  animation-delay: -3.5s;
  /* "stacked card" effect: lilac card peeks out to the right */
  box-shadow:
    14px 12px 0 0 #E6EEF5,
    0 16px 48px rgba(11,20,68,0.1),
    0 4px 12px rgba(11,20,68,0.06);
}

/* Avatar circle – realistic person placeholder */
.match-avatar-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: #E6EEF5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 2px 12px rgba(11,20,68,0.1);
}
.match-card-bl .match-avatar-wrap,
.match-card-br .match-avatar-wrap {
  width: 92px;
  height: 92px;
}

.match-card-info { text-align: center; width: 100%; }
.match-card-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.match-card-pct {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  font-family: 'Arlon', sans-serif;
}
.match-card-bl .match-card-pct,
.match-card-br .match-card-pct { font-size: 30px; }
.match-card-pct.top-match { color: var(--blue); }

/* Good/Top badge */
.match-badge-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.match-badge-top  { background: var(--navy); color: white; }
.match-badge-good { background: var(--light-gray); color: var(--navy); }

/* ═══════════════════════════════════════════
   DASHBOARD MOCK
═══════════════════════════════════════════ */
.dashboard-mock {
  background: var(--navy-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(45,123,255,0.2);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mock-header {
  background: var(--navy-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #EF4444; }
.mock-dots span:nth-child(2) { background: #F59E0B; }
.mock-dots span:nth-child(3) { background: #10B981; }

.mock-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.mock-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.mock-kanban { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

.mock-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-count {
  background: var(--navy-4);
  color: var(--text-secondary);
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 10px;
}

.mock-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 6px;
  transition: transform 0.2s;
}
.mock-card:hover { transform: translateY(-1px); }
.mock-card-high { border-left: 3px solid #10B981; }
.mock-card-active { border-left: 3px solid var(--indigo); }
.mock-card-success { border-left: 3px solid #10B981; background: rgba(16,185,129,0.08); }

.mock-card-name { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.mock-card-role { font-size: 10px; color: var(--text-muted); margin: 2px 0 6px; }
.mock-card-tag { font-size: 10px; color: var(--text-muted); margin-top: 4px; }
.mock-tag-success { color: #10B981; }

.mock-score {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-score-bar {
  height: 4px;
  background: var(--navy-4);
  border-radius: 2px;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.mock-score-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: inherit;
  background: var(--text-muted);
  border-radius: 2px;
}
.mock-score-high .mock-score-bar::after { background: #10B981; width: 92%; }
.mock-score-med .mock-score-bar::after { background: #F59E0B; width: 74%; }
.mock-score span { font-size: 10px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }

.mock-ai-panel {
  background: rgba(45,123,255,0.06);
  border: 1px solid rgba(45,123,255,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.mock-ai-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-ai-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.mock-ai-tags span {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
}
.tag-green { background: rgba(16,185,129,0.15); color: #10B981; }
.tag-blue { background: rgba(45,123,255,0.15); color: var(--indigo-light); }
.mock-ai-text { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════════════════════════════════════
   SO ARBEITET HUMATTER – 4-Schritte-Prozess
═══════════════════════════════════════════ */
.how-humatter {
  padding: 80px 0 100px;
  background: var(--bg-light);
}
.how-humatter .section-label {
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}
.how-humatter .section-headline {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.how-step-num {
  font-family: 'Arlon', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--blue);
  background: rgba(45,123,255,0.10);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.how-step-frame {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(11,20,68,0.10),
    0 2px 6px rgba(11,20,68,0.06);
  border: 1px solid rgba(11,20,68,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-step:hover .how-step-frame {
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(11,20,68,0.14),
    0 4px 10px rgba(11,20,68,0.08);
}
.how-step-chrome {
  display: flex;
  gap: 5px;
  padding: 7px 10px;
  background: var(--light-gray);
  border-bottom: 1px solid rgba(11,20,68,0.06);
}
.how-step-chrome span {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.how-step-chrome span:nth-child(1) { background: #FF5F57; }
.how-step-chrome span:nth-child(2) { background: #FEBC2E; }
.how-step-chrome span:nth-child(3) { background: #28C840; }
.how-step-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: top center;
}
.how-step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 4px;
  line-height: 1.3;
}
.how-step-desc {
  font-size: 14px;
  color: var(--text-dark-3);
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; padding: 0 24px; }
.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--indigo-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

/* ═══════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════ */
.problem {
  padding: 100px 0;
  background: var(--bg-light);
}
.problem .section-headline { color: var(--text-dark); }
.problem .container > .section-label { margin-bottom: 12px; }
.problem .container > .section-headline { margin-bottom: 48px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo);
}
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(45,123,255,0.10);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.problem-icon svg { width: 26px; height: 26px; }
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.problem-card p { font-size: 14px; color: var(--text-dark-3); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card-highlight {
  background: linear-gradient(135deg, #E6EEF5, #E6EEF5);
  border-color: rgba(45,123,255,0.2);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-dark-3);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--text-dark-3);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
}
.how-it-works .section-label { color: var(--cyan); background: rgba(45,123,255,0.15); }
.how-it-works .section-headline { color: var(--white); margin-bottom: 60px; }

.steps { display: flex; align-items: flex-start; gap: 40px; }
.step { flex: 1; }
.step-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--indigo-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ZIELGRUPPEN
═══════════════════════════════════════════ */
.zielgruppen {
  padding: 100px 0;
  background: var(--bg-light);
}
.zielgruppen .section-headline { color: var(--text-dark); margin-bottom: 12px; }
.zielgruppen .container > .section-label { margin-bottom: 12px; }
.zielgruppen .container > p { margin-bottom: 48px; }

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

.zg-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.zg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.zg-card-highlight {
  background: var(--navy);
  border-color: var(--indigo);
  box-shadow: 0 0 40px rgba(45,123,255,0.2);
}
.zg-card.zg-card-highlight h3 { color: var(--white); }
.zg-card.zg-card-highlight p { color: var(--text-secondary); }
.zg-card-highlight .zg-list li { color: var(--text-secondary); }
.zg-card-highlight .zg-list li::before { color: var(--cyan); }
.zg-card-highlight .zg-tier {
  background: rgba(255,255,255,0.1);
  color: var(--cyan);
}

.zg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zg-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(45,123,255,0.10);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.zg-icon svg { width: 30px; height: 30px; }
.zg-card-highlight .zg-icon {
  background: rgba(45,123,255,0.18);
  color: var(--blue-light);
}
.zg-card h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.zg-card p { font-size: 14px; color: var(--text-dark-3); line-height: 1.7; margin-bottom: 20px; }

.zg-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.zg-list li {
  font-size: 14px;
  color: var(--text-dark-3);
  padding-left: 20px;
  position: relative;
}
.zg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-weight: 700;
}

.zg-tier {
  display: inline-block;
  background: rgba(45,123,255,0.08);
  color: var(--indigo);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing .section-headline { color: var(--text-dark); margin-bottom: 12px; }
.pricing .section-sub { margin-bottom: 56px; }

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

.pricing-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-featured {
  background: var(--navy);
  border: 2px solid var(--indigo);
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(45,123,255,0.25);
}
.pricing-card-featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--indigo);
  margin-bottom: 12px;
}
.pricing-card-featured .pricing-tier { color: var(--cyan); }

.pricing-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-card-featured .pricing-price { color: var(--white); }
.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark-3);
}
.pricing-card-featured .pricing-price span { color: var(--text-secondary); }

.pricing-desc { font-size: 14px; color: var(--text-dark-3); margin-bottom: 8px; }
.pricing-card-featured .pricing-desc { color: var(--text-muted); }

.pricing-users {
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo);
  background: rgba(45,123,255,0.08);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}
.pricing-users-light {
  color: var(--cyan);
  background: rgba(45,123,255,0.12);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-dark);
}
.pricing-card-featured .pricing-features li { color: var(--text-secondary); }

.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-dark-3);
  background: linear-gradient(135deg, rgba(45,123,255,0.06), rgba(45,123,255,0.06));
  border: 1px solid rgba(45,123,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}

/* ═══════════════════════════════════════════
   BETA SECTION
═══════════════════════════════════════════ */
.beta-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.beta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--cyan), transparent);
}
.beta-bg { position: absolute; inset: 0; pointer-events: none; }
.beta-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: var(--indigo);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.beta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.beta-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.beta-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.beta-perks { display: flex; flex-direction: column; gap: 20px; }
.beta-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.beta-perk-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--blue-light);
}
.beta-perk div { display: flex; flex-direction: column; gap: 2px; }
.beta-perk strong { font-size: 14px; color: var(--white); font-weight: 600; }
.beta-perk span { font-size: 13px; color: var(--text-muted); }

/* Form Card */
.beta-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(45,123,255,0.15);
}
.beta-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--text-dark-3); margin-bottom: 24px; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(45,123,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #CBD5E1; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--indigo);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check label {
  font-size: 12px;
  color: var(--text-dark-3);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: var(--indigo); }

/* Success State */
.beta-success {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(45,123,255,0.12);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { width: 40px; height: 40px; }
.beta-success h3 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.beta-success p { font-size: 15px; color: var(--text-dark-3); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-brand p a { color: var(--indigo-light); text-decoration: none; }
.footer-brand p a:hover { color: var(--white); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-compliance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-compliance svg { color: var(--blue-light); }
.footer-compliance-sep { margin: 0 4px; opacity: 0.5; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ── Wide-Desktop: Hero-Container breiter, Gallery dominanter ── */
@media (min-width: 1280px) {
  .hero .container {
    max-width: 1320px;
    grid-template-columns: 48fr 52fr;
    gap: 80px;
  }
}
@media (min-width: 1536px) {
  .hero .container {
    max-width: 1440px;
    grid-template-columns: 44fr 56fr;
    gap: 96px;
  }
}
@media (min-width: 1800px) {
  .hero .container {
    max-width: 1560px;
    grid-template-columns: 42fr 58fr;
  }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-gallery { margin: 0 auto; max-width: 700px; }
  .dashboard-mock { max-width: 560px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 32px; }
}

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

  .hero { padding: 120px 0 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-divider { display: none; }

  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .zg-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .beta-inner { grid-template-columns: 1fr; gap: 48px; }
  .beta-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .mock-kanban { grid-template-columns: 1fr; }
  .hero-countdown { padding: 12px 16px; }
  .countdown-units { gap: 8px; }
  .countdown-unit span { font-size: 22px; }
}

/* ═══════════════════════════════════════════
   HERO COUNTDOWN
═══════════════════════════════════════════ */
.hero-countdown {
  display: inline-flex;
  margin-bottom: 28px;
}
.countdown-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 10px 20px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}
.countdown-rocket { font-size: 16px; }
.countdown-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.countdown-units {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  min-width: 38px;
}
.countdown-unit span {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.countdown-unit em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.countdown-sep {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1;
}
.countdown-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 12px;
}

/* ═══════════════════════════════════════════
   HERO SLIDESHOW – WRAPPER & TRANSITIONS
═══════════════════════════════════════════ */
.mock-slides-wrapper {
  position: relative;
  min-height: 290px;
}
.mock-slide {
  width: 100%;
  transition: opacity 0.55s ease;
}
.mock-slide:not(.active) {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
}
.mock-slide.active {
  opacity: 1;
}

/* Dot Navigation */
.slide-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
}
.slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-4);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  position: relative;
}
.slide-dot.active {
  width: 22px;
  border-radius: 3px;
  background: var(--indigo);
}
.slide-dot:hover:not(.active) {
  background: var(--text-muted);
}

/* ── Slide 2: KI-Analyse ── */
.mock-profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.mock-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.mock-profile-info { flex: 1; min-width: 0; }
.mock-profile-name {
  font-size: 12px; font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-profile-role { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.mock-match-chip {
  font-size: 11px; font-weight: 700;
  background: rgba(16,185,129,0.15);
  color: #10B981;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.mock-skill-bars { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.mock-skill-row { display: flex; align-items: center; gap: 8px; }
.mock-skill-label { font-size: 10px; color: var(--text-muted); width: 68px; flex-shrink: 0; }
.mock-skill-track {
  flex: 1;
  height: 5px;
  background: var(--navy-4);
  border-radius: 3px;
  overflow: hidden;
}
.mock-skill-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--text-muted);
}
.mock-skill-green { background: #10B981; }
.mock-skill-amber { background: #F59E0B; }
.mock-skill-pct { font-size: 10px; color: var(--text-muted); font-weight: 600; width: 28px; text-align: right; flex-shrink: 0; }

/* ── Slide 3: Scheduling ── */
.mock-cal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mock-cal-month { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.mock-cal-week { font-size: 10px; color: var(--text-muted); }
.mock-schedule { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.mock-sched-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.mock-sched-booked { background: var(--navy-2); }
.mock-sched-free { background: rgba(45,123,255,0.04); border-style: dashed; }
.mock-sched-time { font-size: 10px; font-weight: 700; color: var(--text-muted); width: 50px; flex-shrink: 0; }
.mock-sched-info { flex: 1; min-width: 0; }
.mock-sched-name { font-size: 11px; color: var(--text-secondary); font-weight: 500; }
.mock-sched-tag { font-size: 9px; color: var(--text-muted); margin-top: 1px; }
.mock-sched-status { font-size: 10px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.mock-status-conf { color: #10B981; }
.mock-status-pend { color: #F59E0B; }
.mock-status-free { color: var(--indigo-light); }
.mock-cal-note {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(45,123,255,0.06);
  border: 1px solid rgba(45,123,255,0.15);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
}

/* ── Slide 4: Agentur ── */
.mock-agency-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mock-agency-label { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.mock-agency-stat { font-size: 10px; color: var(--cyan); font-weight: 600; }
.mock-tenants { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.mock-tenant {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.mock-tenant-icon { font-size: 14px; flex-shrink: 0; }
.mock-tenant-info { flex: 1; min-width: 0; }
.mock-tenant-name { font-size: 11px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-tenant-meta { font-size: 9px; color: var(--text-muted); }
.mock-tenant-bar-wrap { width: 56px; height: 4px; background: var(--navy-4); border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.mock-tenant-bar { height: 100%; background: var(--indigo); border-radius: 2px; }
.mock-tenant-bar-cyan { background: var(--cyan); }
.mock-tenant-bar-green { background: #10B981; }
.mock-tenant-bar-amber { background: #F59E0B; }
.mock-tenant-pct { font-size: 10px; color: var(--text-muted); font-weight: 600; width: 26px; text-align: right; flex-shrink: 0; }
.mock-agency-note {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(45,123,255,0.06);
  border: 1px solid rgba(45,123,255,0.15);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
}

/* ── Slide 5: Analytics ── */
.mock-analytics-header { margin-bottom: 12px; }
.mock-analytics-label { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.mock-stats-row { display: flex; gap: 8px; margin-bottom: 12px; }
.mock-stat-box {
  flex: 1;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
}
.mock-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo-light);
  line-height: 1;
}
.mock-stat-cyan { color: var(--cyan); }
.mock-stat-green { color: #10B981; }
.mock-stat-gold { color: #F59E0B; }
.mock-stat-lbl { font-size: 9px; color: var(--text-muted); margin-top: 4px; }
.mock-pipeline { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.mock-pipeline-row { display: flex; align-items: center; gap: 8px; }
.mock-pipeline-label { font-size: 10px; color: var(--text-muted); width: 134px; flex-shrink: 0; }
.mock-pipeline-bar-wrap { flex: 1; height: 5px; background: var(--navy-4); border-radius: 3px; overflow: hidden; }
.mock-pipeline-bar { height: 100%; border-radius: 3px; }
.mock-pipeline-indigo { background: var(--indigo); }
.mock-pipeline-cyan { background: var(--cyan); }
.mock-pipeline-green { background: #10B981; }
.mock-pipeline-pct { font-size: 10px; color: var(--text-muted); font-weight: 600; width: 28px; text-align: right; flex-shrink: 0; }
.mock-time-to-hire {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 10px;
  background: rgba(45,123,255,0.06);
  border: 1px solid rgba(45,123,255,0.15);
  border-radius: var(--radius-sm);
}
.mock-time-to-hire strong { color: var(--text-primary); }
.mock-tth-good { color: #10B981; font-weight: 600; margin-left: auto; }

/* ═══════════════════════════════════════════
   MINDSEWN LOGO IN FOOTER
═══════════════════════════════════════════ */
.footer-madeby {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.footer-madeby span {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.footer-mindsewn-link {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.footer-mindsewn-link:hover { opacity: 1; }
.mindsewn-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════
   DISCORD BUTTON & PERK
═══════════════════════════════════════════ */
.btn-discord {
  background: #5865F2;
  color: white;
  box-shadow: 0 4px 14px rgba(88,101,242,0.4);
}
.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88,101,242,0.5);
}
.discord-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BOT PROTECTION
═══════════════════════════════════════════ */

/* Honeypot – invisible to humans, traps bots */
.form-honeypot {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -999;
}

/* Cloudflare Turnstile wrapper */
.turnstile-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.turnstile-wrap .cf-turnstile {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.turnstile-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}
.turnstile-note a {
  color: var(--indigo);
  text-decoration: none;
}
.turnstile-note a:hover { text-decoration: underline; }

/* Error message for failed bot checks */
.form-bot-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-sm);
  color: #EF4444;
  font-size: 13px;
  padding: 10px 14px;
  text-align: center;
  display: none;
}
.form-bot-error.visible { display: block; }

