/* ========================================
   CodeXaureus GmbH, Golden Code. Infinite Possibilities.
   Light Premium Design, Forest Green + Mint
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Instrument+Serif&display=swap');

:root {
  /* Brand */
  --forest: #0F3D3A;
  --forest-light: #1A5A55;
  --forest-deep: #0A2A28;
  --mint: #C8F8A9;
  --mint-soft: #E1F7CC;
  --cream: #F2F5F1;

  /* Legacy aliases (kept for selector compatibility) */
  --navy: #0F3D3A;
  --navy-light: #1A5A55;
  --navy-muted: #4A5C58;
  --navy-faded: rgba(15, 61, 58, 0.04);

  --white: #FFFFFF;
  --bg: #F2F5F1;
  --bg-warm: #ECF0EA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAF7;

  --text-primary: #0F3D3A;
  --text-secondary: #4A5C58;
  --text-tertiary: #6B7B77;
  --text-link: #0F3D3A;

  --accent: #0F3D3A;
  --accent-light: #1A5A55;
  --accent-dark: #0A2A28;
  --accent-bg: rgba(200, 248, 169, 0.35);
  --accent-border: rgba(15, 61, 58, 0.18);

  --border: rgba(15, 61, 58, 0.10);
  --border-hover: rgba(15, 61, 58, 0.18);
  --border-strong: rgba(15, 61, 58, 0.22);

  --success: #16a34a;
  --warning: #d97706;
  --error: #dc2626;

  --shadow-xs: 0 1px 2px rgba(15, 61, 58, 0.05);
  --shadow-sm: 0 2px 6px rgba(15, 61, 58, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 61, 58, 0.08);
  --shadow-lg: 0 12px 36px rgba(15, 61, 58, 0.10);
  --shadow-xl: 0 20px 56px rgba(15, 61, 58, 0.14);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --container: 1120px;
  --container-narrow: 680px;
  --nav-height: 110px;
  --section-pad: 120px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--mint); color: var(--forest); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.text-accent {
  color: var(--accent);
}

.text-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-gray {
  background: var(--bg-warm);
}

.section-navy {
  background: var(--forest);
  color: rgba(255,255,255,0.78);
}

.section-navy h2, .section-navy h3, .section-navy h4 {
  color: var(--cream);
}

.section-navy .text-accent {
  color: var(--mint);
}

.section-navy .eyebrow {
  background: rgba(200,248,169,0.14);
  border-color: rgba(200,248,169,0.28);
  color: var(--mint);
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.section-navy .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-header-left {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-header-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-header-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--mint);
  color: var(--forest);
  box-shadow: 0 4px 16px rgba(15, 61, 58, 0.10);
}

.btn-primary:hover {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 6px 22px rgba(15, 61, 58, 0.20);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--bg-warm);
  border-color: var(--forest);
}

.btn-accent {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(15, 61, 58, 0.18);
}

.btn-accent:hover {
  background: var(--forest-deep);
  box-shadow: 0 6px 22px rgba(15, 61, 58, 0.26);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* Forest section button overrides */
.section-navy .btn-primary {
  background: var(--mint);
  color: var(--forest);
}
.section-navy .btn-primary:hover {
  background: var(--cream);
  color: var(--forest);
}
.section-navy .btn-secondary {
  color: var(--cream);
  border-color: rgba(255,255,255,0.28);
}
.section-navy .btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--mint);
  color: var(--mint);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(242, 245, 241, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo img {
  height: 130px;
  width: auto;
}

/* Wordmark logo */
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  color: var(--forest);
  line-height: 1;
}
.brand-wordmark .x {
  color: var(--forest);
  background: var(--mint);
  padding: 2px 6px;
  border-radius: 6px;
  margin: 0 1px;
  font-weight: 900;
}
.brand-wordmark .gmbh {
  font-size: 0.62rem;
  font-weight: 600;
  margin-left: 8px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}
.footer .brand-wordmark { color: var(--cream); }
.footer .brand-wordmark .gmbh { color: rgba(255,255,255,0.5); }
.section-navy .brand-wordmark { color: var(--cream); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

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

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-xl);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
}

.dropdown-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.dropdown-icon-wrap svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-text span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dropdown-text small {
  font-size: 0.76rem;
  color: var(--text-tertiary);
}

.nav-cta-wrap { margin-left: 8px; }

/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    background: var(--cream);
    padding: 32px 28px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 0;
    margin: 0;
  }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(15,61,58,0.06);
    border-color: rgba(15,61,58,0.15);
  }
  .nav-links a.active {
    background: var(--mint);
    border-color: rgba(15,61,58,0.18);
    color: var(--forest);
  }
  .nav-dropdown-trigger {
    justify-content: space-between;
  }
  .nav-dropdown-trigger svg { transition: transform 0.3s ease; }
  .nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    background: rgba(15,61,58,0.04);
    border: 1px solid rgba(15,61,58,0.08);
    border-radius: 12px;
    padding: 6px;
    margin: 4px 0 8px;
    display: none; min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    max-height: 600px;
  }
  .nav-dropdown-menu a {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .nav-cta-wrap {
    margin-left: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(15,61,58,0.08);
  }
  .nav-cta-wrap .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }
  body.nav-open { overflow: hidden; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 80% 70% at 70% 40%, rgba(200,248,169,0.45) 0%, transparent 70%);
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 500px; }

.hero h1 { margin-bottom: 20px; }

.hero-description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

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

.hero-metrics {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-metric-value,
.hero-metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-metric-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero-product { min-height: 85vh; }

.hero-centered .hero-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.hero-centered .hero-description { max-width: 480px; margin: 0 auto 36px; }
.hero-centered .hero-actions { justify-content: center; }

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-metrics { gap: 28px; flex-wrap: wrap; }
  .hero::before { width: 100%; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 48px); padding-bottom: 64px; }
  .hero-product { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ---- Visual Card ---- */
.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  will-change: transform;
}
.visual-card:hover {
  box-shadow: 0 12px 40px rgba(15,61,58,0.12), var(--shadow-lg);
}

.visual-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.visual-row:last-child { margin-bottom: 0; }

.visual-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-dot svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

.visual-row-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.visual-row-sub {
  font-size: 0.76rem;
  color: var(--text-tertiary);
}

.visual-status {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--success);
  margin-left: auto;
}

/* ---- Cards ---- */
.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.section-navy .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
}

.section-navy .card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,248,169,0.30);
}

.section-navy .card h3,
.section-navy .card h4 { color: var(--cream); }
.section-navy .card p { color: rgba(255,255,255,0.72); }
.section-navy .card-icon-wrap {
  background: rgba(200,248,169,0.18);
  border-color: rgba(200,248,169,0.28);
}
.section-navy .card-icon-wrap svg { stroke: var(--mint); }
.section-navy .card-link { color: var(--mint); }

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.card-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9rem; line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.card-link:hover { gap: 9px; }

/* Product Cards */
.product-card { padding: 0; overflow: hidden; }

.product-card-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-visual svg {
  width: 40px; height: 40px;
  stroke: var(--forest); fill: none; stroke-width: 1.4;
}

.product-card-body {
  padding: 28px 28px 32px;
}
.product-card-body h3 { margin-bottom: 8px; }
.product-card-body p { font-size: 0.88rem; margin-bottom: 16px; }

/* ---- Feature List ---- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg {
  width: 10px; height: 10px;
  stroke: var(--success); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ---- Stats ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.section-navy .stat-number { color: var(--cream); }
.section-navy .stat-label { color: rgba(255,255,255,0.70); }

@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}

.section-navy .process-steps::before {
  background: rgba(255,255,255,0.1);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mint);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 auto 18px;
}

.section-navy .step-number {
  background: var(--mint);
  border-color: rgba(200,248,169,0.4);
  color: var(--forest);
}

.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; color: var(--text-tertiary); }

@media (max-width: 1024px) { .process-steps { grid-template-columns: repeat(2, 1fr); } .process-steps::before { display: none; } }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; } }

/* ---- Comparison ---- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-col { padding: 40px; }

.comparison-col-before { background: rgba(220, 38, 38, 0.05); }
.comparison-col-after {
  background: rgba(200, 248, 169, 0.30);
  border-left: 1px solid var(--border);
}

.comparison-col h3 { margin-bottom: 24px; }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.comparison-x, .comparison-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-x { background: rgba(220, 38, 38, 0.06); }
.comparison-x svg { width: 9px; height: 9px; stroke: var(--error); fill: none; stroke-width: 2.5; stroke-linecap: round; }

.comparison-check { background: rgba(22, 163, 74, 0.06); }

@media (max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
  .comparison-col-after { border-left: none; border-top: 1px solid var(--border); }
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.section-navy .testimonial-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}

.testimonial-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 15px; height: 15px;
  fill: var(--warning);
  stroke: none;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-navy .testimonial-quote { color: rgba(255,255,255,0.85); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--mint);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--forest);
}

.section-navy .testimonial-avatar {
  background: rgba(200,248,169,0.2);
  border-color: rgba(200,248,169,0.3);
  color: var(--mint);
}

.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.testimonial-role { font-size: 0.78rem; color: var(--text-tertiary); }
.section-navy .testimonial-name { color: var(--cream); }
.section-navy .testimonial-role { color: rgba(255,255,255,0.65); }

/* ---- CTA Section ---- */
.cta-section { padding: var(--section-pad) 0; }

.cta-box {
  background: var(--forest);
  border: 1px solid rgba(200,248,169,0.18);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  color: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-lg);
}

.cta-box h2 { color: var(--cream); margin-bottom: 14px; }
.cta-box .text-accent { color: var(--mint); }
.cta-box p { font-size: 1.05rem; margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-box .btn-primary { background: var(--mint); color: var(--forest); }
.cta-box .btn-primary:hover { background: var(--cream); color: var(--forest); }
.cta-box .btn-secondary { color: var(--cream); border-color: rgba(255,255,255,0.28); }
.cta-box .btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: var(--mint); color: var(--mint); }

@media (max-width: 768px) { .cta-box { padding: 48px 24px; } }

/* ---- Calendar ---- */
.calendar-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.calendar-header {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
}
.calendar-header h3 { margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.calendar-header h3 svg { width: 20px; height: 20px; stroke: var(--text-tertiary); fill: none; stroke-width: 1.5; }
.calendar-header p { font-size: 0.88rem; color: var(--text-tertiary); }

.calendar-body {
  padding: 24px;
  min-height: 420px;
}
.calendar-body .calendly-inline-widget {
  width: 100%;
  min-width: 100% !important;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.calendar-placeholder { text-align: center; }

.calendar-placeholder .cal-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.calendar-placeholder .cal-icon-wrap svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.calendar-placeholder p { margin-bottom: 20px; color: var(--text-tertiary); font-size: 0.9rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.4;
}

.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 14px;
  transition: all 0.3s ease;
}

.faq-toggle svg {
  width: 11px; height: 11px;
  stroke: var(--text-tertiary); fill: none; stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--accent-bg);
  border-color: var(--accent-border);
}

.faq-item.active .faq-toggle svg {
  transform: rotate(45deg);
  stroke: var(--accent);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-secondary); line-height: 1.75; font-size: 0.9rem; }

/* ---- Value Grid ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-item {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.2s ease;
}

.value-item:hover { background: var(--bg); }

.value-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.value-item h4 { margin-bottom: 6px; }
.value-item p { font-size: 0.85rem; color: var(--text-tertiary); }

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

/* ---- Trust Logos ---- */
.trust-bar { padding: 48px 0; }

.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-tertiary);
  opacity: 0.5;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 40px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border-strong);
}

.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-tertiary); }

/* ---- Contact ---- */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(15, 61, 58, 0.08);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238896a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-card h4 { margin-bottom: 2px; font-size: 0.9rem; }
.contact-card a { color: var(--accent); font-size: 0.88rem; }
.contact-card p { font-size: 0.82rem; color: var(--text-tertiary); }

.highlight-box {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.highlight-box h4 { margin-bottom: 6px; }
.highlight-box p { font-size: 0.88rem; margin-bottom: 18px; }

.trust-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

.trust-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.trust-check svg {
  width: 13px; height: 13px;
  stroke: var(--success); fill: none;
  stroke-width: 2.5; flex-shrink: 0;
}

/* ---- Urgency Banner ---- */
.urgency-banner {
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.urgency-banner svg { flex-shrink: 0; }

/* ---- Progress Bars ---- */
.progress-item { margin-bottom: 16px; }
.progress-item:last-child { margin-bottom: 0; }

.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-label { font-size: 0.82rem; color: var(--text-secondary); }
.progress-value { font-size: 0.78rem; font-weight: 700; }

.progress-track {
  height: 5px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
}

/* ---- Footer ---- */
.footer {
  background: var(--forest);
  color: rgba(255,255,255,0.70);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo img { height: 80px; }

.footer-brand p {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a, .footer-links li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }

/* ---- Scroll Top ---- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 999;
  box-shadow: var(--shadow-sm);
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---- Cookie / DSGVO Consent Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 24px 60px rgba(10,26,31,0.18), 0 0 0 1px rgba(15,61,58,0.04);
}
.cookie-banner.show { display: block; }
.cookie-banner h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.cookie-banner p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-banner a { color: var(--forest); text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions .btn { flex: 1; min-width: 140px; }
.cookie-toggle-details {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  cursor: pointer;
  text-transform: uppercase;
}
.cookie-toggle-details:hover { color: var(--forest); }
.cookie-details {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.cookie-details.open { display: block; }
.cookie-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat .cc-info strong {
  display: block;
  color: var(--forest);
  font-size: 0.88rem;
}
.cookie-cat .cc-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin-top: 2px;
}
.cookie-cat input[type="checkbox"] {
  appearance: none;
  width: 36px; height: 20px;
  border-radius: 999px;
  background: var(--border);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.2s var(--ease);
}
.cookie-cat input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: transform 0.25s var(--ease);
}
.cookie-cat input[type="checkbox"]:checked { background: var(--forest); }
.cookie-cat input[type="checkbox"]:checked::after { transform: translateX(16px); }
.cookie-cat input[type="checkbox"]:disabled { opacity: 0.6; cursor: not-allowed; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

/* ---- Floating Animations ---- */
/* ---- Animations & Keyframes ---- */

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

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15,61,58,0.18); }
  50% { box-shadow: 0 0 20px 4px rgba(15,61,58,0.10); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float-slow 5s ease-in-out infinite; }
.float-delayed { animation: float-delayed 4.5s ease-in-out 0.5s infinite; }

/* Hero visual floats */
.hero-visual .visual-card {
  animation: float-slow 5s ease-in-out infinite;
}

/* Eyebrow dot pulse */
.eyebrow-dot {
  animation: dot-pulse 2.5s ease-in-out infinite;
}

/* Gradient text shimmer on hover */
.text-gradient {
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* Card hover lift with glow */
.card:hover,
.step-card:hover,
.pricing-card:hover,
.problem-card:hover,
.team-card:hover {
  box-shadow: 0 8px 32px rgba(15,61,58,0.10), var(--shadow-md);
}

/* CTA button glow pulse */
.btn-primary {
  position: relative;
}
.hero-actions .btn-primary,
.final-cta .btn-primary,
.cta-box .btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Staggered reveal delays for grid children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* Visual card rows stagger */
.visual-card .visual-row {
  opacity: 0;
  transform: translateX(20px);
  animation: slide-in-right 0.5s var(--ease) forwards;
}
.visual-card .visual-row:nth-child(1) { animation-delay: 0.3s; }
.visual-card .visual-row:nth-child(2) { animation-delay: 0.5s; }
.visual-card .visual-row:nth-child(3) { animation-delay: 0.7s; }
.visual-card .visual-row:nth-child(4) { animation-delay: 0.9s; }

/* Hero background gradient animation */
.hero-bg {
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200,248,169,0.30) 0%, transparent 70%);
  animation: gradient-shift 8s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Stat numbers scale on reveal */
.stat-number {
  transition: transform 0.4s var(--ease);
}
.stat-number:hover {
  transform: scale(1.08);
}

/* Value icon float */
.value-icon-wrap {
  transition: transform 0.4s var(--ease);
}
.value-item:hover .value-icon-wrap {
  transform: translateY(-4px);
  animation: float 2s ease-in-out infinite;
}

/* Integration tags subtle float on light section */
.section-light .tag {
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.section-light .tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Smooth scroll progress indicator on navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.1s linear;
}

/* Parallax-ready elements */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Team card hover image zoom */
.team-card-img {
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-card-img {
  transform: scale(1.04);
}
.team-card {
  overflow: hidden;
}

/* Comparison card entrance */
.comp-col-before,
.comp-col-after {
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.comp-col-before:hover,
.comp-col-after:hover {
  transform: translateY(-4px);
}

/* Disable heavy animations on reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Colored Section Variants ---- */
.section-soft-blue {
  background: var(--mint-soft);
}

.section-soft-navy {
  background: var(--bg-warm);
}

.section-warm {
  background: var(--bg-warm);
}

/* Light section is the default theme, kept as alias */
.section-light {
  background: #FFFFFF;
}

/* ---- Trust Seals ---- */
.trust-seals { padding: 72px 0; background: var(--bg-warm); }
.trust-seals .trust-label {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 36px;
}
.seal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.seal-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 140px;
  box-shadow: 0 4px 14px rgba(15,61,58,0.06), 0 1px 3px rgba(15,61,58,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.seal-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,61,58,0.10); }

.flag-de {
  display: flex;
  flex-direction: column;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.flag-de span { flex: 1; }
.flag-de span:nth-child(1) { background: #000000; }
.flag-de span:nth-child(2) { background: #DD0000; }
.flag-de span:nth-child(3) { background: #FFCE00; }

.flag-brush {
  width: 88px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #000 0 33%, #DD0000 33% 66%, #FFCE00 66% 100%);
  -webkit-mask: radial-gradient(ellipse 90% 60% at 50% 50%, #000 60%, transparent 95%);
          mask: radial-gradient(ellipse 90% 60% at 50% 50%, #000 60%, transparent 95%);
  border-radius: 4px;
}

.seal-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.seal-text strong {
  font-weight: 800;
  font-size: 1rem;
  color: #0A0A0A;
  letter-spacing: -0.01em;
}
.seal-text small {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.seal-shield {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #4FC3F7, #1E88E5);
  border-radius: 12px 12px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30,136,229,0.35);
}
.seal-shield svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 768px) {
  .seal-grid { grid-template-columns: 1fr; gap: 16px; max-width: 360px; }
  .seal-card { min-height: 120px; padding: 24px; }
}

/* Accent stripe on top of section */
.section-accent-top {
  position: relative;
}

.section-accent-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---- Accent Box / Highlight Card ---- */
.accent-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: rgba(255,255,255,0.8);
}

.accent-card h3, .accent-card h4 { color: #fff; }
.accent-card p { color: rgba(255,255,255,0.65); }

/* ---- Decorative Elements ---- */
.deco-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}

.deco-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  opacity: 0.4;
}

.deco-line {
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent-border), transparent);
}

/* Hero decorative background shapes */
.hero-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-deco-1 {
  top: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200,248,169,0.30);
  animation: float 6s ease-in-out infinite;
}

.hero-deco-2 {
  bottom: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(200,248,169,0.22);
  animation: float-delayed 5s ease-in-out infinite;
}

.hero-deco-3 {
  top: 30%;
  left: 15%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
  animation: float 3.5s ease-in-out infinite;
}

/* ---- Stats Section Styled ---- */
.stats-section-styled {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 0 auto;
  max-width: var(--container);
}

.stats-section-styled .stat-number { color: #fff; }
.stats-section-styled .stat-label { color: rgba(255,255,255,0.65); }

/* ---- Section Divider Shapes ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 400px;
  margin: 0 auto;
}

/* ---- Feature Highlight Strip ---- */
.feature-strip {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.feature-strip-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ---- Card with color left border ---- */
.card-accent-left {
  border-left: 3px solid var(--accent);
}

.card-accent-left:hover {
  border-left-color: var(--accent-dark);
}

/* ---- Product card visual floating icons ---- */
.product-card-visual .floating-icon {
  position: absolute;
  opacity: 0.15;
  animation: float 4s ease-in-out infinite;
}

.product-card-visual .floating-icon:nth-child(2) {
  animation-delay: 1s;
}

.product-card-visual .floating-icon:nth-child(3) {
  animation-delay: 2s;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.pt-0 { padding-top: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ---- Text Gradient (dark theme) ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Fitness Landing Page ---- */

/* Problem Cards */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.problem-card .problem-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: 16px;
}

.problem-card h3 { color: #0A0A0A; margin-bottom: 10px; font-size: 1.1rem; }
.problem-card p { color: var(--text-tertiary); font-size: 0.9rem; line-height: 1.7; }

/* Dark Comparison */
.comparison-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .comparison-dark { grid-template-columns: 1fr; } }

.comparison-dark .comp-col {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
}

.comparison-dark .comp-col-before {
  background: #FFFFFF;
  border: 1px solid rgba(220,38,38,0.20);
}

.comparison-dark .comp-col-after {
  background: rgba(200,248,169,0.30);
  border: 1px solid rgba(15,61,58,0.20);
}

.comp-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.comp-col-label::after {
  content: '';
  flex: 1;
  height: 1px;
}

.comp-col-before .comp-col-label { color: #ef4444; }
.comp-col-before .comp-col-label::after { background: rgba(239,68,68,0.25); }
.comp-col-after .comp-col-label { color: var(--accent); }
.comp-col-after .comp-col-label::after { background: rgba(15,61,58,0.18); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.comp-col-before .comp-list li {
  color: var(--text-tertiary);
}
.comp-col-after .comp-list li {
  color: var(--text-primary);
}

.comp-list .comp-x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  margin-top: 1px;
}

.comp-list .comp-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(15,61,58,0.10);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}
.comp-list .comp-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* Process Steps Dark */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.step-card:hover {
  border-color: rgba(15,61,58,0.35);
  background: var(--bg-warm);
  box-shadow: var(--shadow-md);
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-tertiary); line-height: 1.6; }

/* Integration Tags */
.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.integration-tag {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1);
  background: #ffffff;
  color: #0A0A0A;
}

.integration-tag.tag-filled {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.integration-tag.tag-warning {
  background: transparent;
  color: var(--warning);
  border-color: rgba(245,158,11,0.3);
}

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}

.pricing-card.pricing-highlight {
  border-color: var(--accent-border);
  background: rgba(200,248,169,0.30);
}

.pricing-card .pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.pricing-card.pricing-highlight .pricing-label { color: var(--accent); }

.pricing-card .pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-card .pricing-unit {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.pricing-card .pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pricing-card .pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card .pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
  margin-top: 7px;
  flex-shrink: 0;
}

.pricing-card.pricing-highlight .pricing-features li { color: var(--accent-light); }
.pricing-card.pricing-highlight .pricing-features li::before { background: var(--accent); }

/* ROI Box */
.roi-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 24px;
}

.roi-box strong { color: var(--text-primary); }
.roi-box p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* FAQ Grid (non-accordion) */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.faq-card h4 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0A0A0A;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.faq-card h4::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.faq-card p { font-size: 0.88rem; color: var(--text-tertiary); line-height: 1.7; }

/* Final CTA Section */
.final-cta {
  padding: 120px 0;
  text-align: center;
}

.final-cta .eyebrow { margin: 0 auto 24px; }
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.final-cta .cta-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto 40px; }

.final-cta .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta .cta-email {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

/* Minimal Footer */
.footer-minimal {
  background: var(--forest);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-minimal .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-minimal .footer-logo img {
  height: 28px;
  opacity: 0.5;
}

.footer-minimal .footer-center {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-minimal .footer-center a {
  color: rgba(255,255,255,0.6);
  margin: 0 4px;
}

.footer-minimal .footer-right {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Stat accent colors */
.stat-accent { color: var(--accent) !important; }

/* Section dark variant */
.section-dark {
  background: var(--bg-warm);
}

/* ---- Responsive: Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }
  .nav-logo img { height: 90px; }
  .footer-brand .nav-logo img { height: 64px; }
}

/* ---- Responsive: Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
    --section-pad: 64px;
  }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .nav-logo img { height: 64px; }
  .footer-brand .nav-logo img { height: 56px; }
  .section-header { margin-bottom: 40px; }
  .section-header-left { margin-bottom: 40px; }
  .eyebrow { font-size: 0.7rem; padding: 6px 14px; }
  .hero-description { font-size: 1rem; }
  .hero-metrics { gap: 20px; margin-top: 36px; padding-top: 24px; }
  .hero-metric-value, .hero-metric-number { font-size: 1.4rem; }
  .testimonial-card { padding: 24px; }
  .cta-section { padding: 64px 0; }
  .cta-box h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .stats-section-styled { padding: 48px 0; }
  .cookie-inner { flex-direction: column; text-align: center; gap: 12px; }
  .cookie-actions { justify-content: center; }
  .scroll-top { width: 40px; height: 40px; bottom: 16px; right: 16px; }
}

/* ---- Responsive: Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }
  .container { padding: 0 16px; }
  .nav-logo img { height: 52px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding-bottom: 48px; }
  .hero-actions .btn { font-size: 0.9rem; padding: 14px 20px; }
  .card { padding: 24px; }
  .step-card { padding: 24px; }
  .pricing-card { padding: 28px; }
  .faq-card { padding: 24px; }
  .problem-card { padding: 24px; }
  .stats-bar { gap: 24px; }
  .stat-number { font-size: 2rem; }
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */

/* A) Hero Text Reveal, Simple Fade-in */
.hero h1,
.hero .hero-description {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .hero-description {
  animation-delay: 0.2s;
}
.hero .hero-actions {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.hero .hero-metrics {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* B) Cursor Spotlight in Hero */
.hero {
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-opacity: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--spot-x) var(--spot-y),
              rgba(200,248,169,0.30),
              transparent 60%);
  opacity: var(--spot-opacity);
  transition: opacity 0.4s ease;
  z-index: 0;
}
@media (max-width: 1024px) {
  .hero::after { display: none; }
}

/* C) Card Magnetic Border Glow */
.card,
.feature-card,
.value-card,
.solution-card,
.step-card,
.pricing-card,
.faq-card,
.problem-card {
  position: relative;
}
.card::before,
.feature-card::before,
.value-card::before,
.solution-card::before,
.step-card::before,
.pricing-card::before,
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(200,248,169,0.55),
              rgba(200,248,169,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.card:hover::before,
.feature-card:hover::before,
.value-card:hover::before,
.solution-card:hover::before,
.step-card:hover::before,
.pricing-card:hover::before,
.problem-card:hover::before { opacity: 1; }

/* E) Section Reveal Stagger 2.0, clip-path + children (disabled by default; only animates if .reveal-section is explicitly added) */
.reveal-section {
  opacity: 1;
  clip-path: none;
}
.reveal-section.visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.reveal-section > .container > * {
  opacity: 1;
  transform: none;
}
.reveal-section.visible > .container > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero .hero-description,
  .hero .hero-actions,
  .hero .hero-metrics,
  .reveal-section,
  .reveal-section > .container > * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }
}

/* ========================================
   AI Platform Polish, v2
   Sophisticated AI-startup components.
   Mono accents, neural grid, mockups,
   compliance row, sentiment meter.
   ======================================== */

:root {
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  --gold: #C9A227;
  --gold-soft: #E8C76A;
  --ink: #0A1A1F;
  --grid-line: rgba(15, 61, 58, 0.07);
}

.mono { font-family: var(--font-mono); font-feature-settings: "ss01","cv02"; letter-spacing: 0; }

/* AI badge */
.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(200, 248, 169, 0.45);
  border: 1px solid rgba(15, 61, 58, 0.18);
}
.ai-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 3px rgba(15,61,58,0.10);
  animation: aiPulse 2.4s ease-in-out infinite;
}
@keyframes aiPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(15,61,58,0.10); }
  50%     { box-shadow: 0 0 0 6px rgba(15,61,58,0.02); }
}

/* Neural grid background, for dark sections */
.section-grid {
  position: relative;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(200,248,169,0.10), transparent 70%),
    linear-gradient(180deg, #0A2A28 0%, #0F3D3A 100%);
  color: #E6F0EC;
  overflow: hidden;
}
.section-grid::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,248,169,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,248,169,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  pointer-events: none;
}
.section-grid .container { position: relative; z-index: 1; }
.section-grid h2, .section-grid h3, .section-grid h4 { color: #FFFFFF; }
.section-grid p { color: rgba(230,240,236,0.78); }
.section-grid .eyebrow { color: var(--mint); background: rgba(200,248,169,0.10); border-color: rgba(200,248,169,0.22); }
.section-grid .eyebrow-dot { background: var(--mint); }

/* AI Capability Card */
.ai-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.ai-cap {
  position: relative;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.16);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.ai-cap:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,248,169,0.32);
}
.ai-cap .ai-cap-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.ai-cap .ai-cap-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(200,248,169,0.14);
  border: 1px solid rgba(200,248,169,0.24);
}
.ai-cap .ai-cap-icon svg { width: 18px; height: 18px; stroke: var(--mint); fill: none; stroke-width: 2; }
.ai-cap .ai-cap-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(200,248,169,0.75);
  text-transform: uppercase;
}
.ai-cap h4 { color: #FFFFFF; font-size: 1rem; margin-bottom: 6px; }
.ai-cap p { font-size: 0.92rem; color: rgba(230,240,236,0.75); line-height: 1.55; }
@media (max-width: 880px) { .ai-cap-grid { grid-template-columns: 1fr; } }

/* Terminal / code-style block, used sparingly */
.code-block {
  background: #0A1A1F;
  border: 1px solid rgba(200,248,169,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #C9F0D8;
  line-height: 1.7;
  box-shadow: 0 20px 50px rgba(10,26,31,0.35);
  overflow: hidden;
}
.code-block .cb-head {
  display: flex; align-items: center; gap: 6px;
  margin: -4px -4px 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,248,169,0.10);
}
.code-block .cb-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(200,248,169,0.25); }
.code-block .cb-dot:nth-child(1) { background: #FF6B6B; opacity: .55; }
.code-block .cb-dot:nth-child(2) { background: #FFD66B; opacity: .55; }
.code-block .cb-dot:nth-child(3) { background: var(--mint); opacity: .8; }
.code-block .cb-title {
  margin-left: 10px;
  font-size: 0.72rem;
  color: rgba(200,248,169,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.code-block .ln { color: rgba(200,248,169,0.35); margin-right: 12px; user-select: none; }
.code-block .kw { color: #E8C76A; }
.code-block .str { color: #C8F8A9; }
.code-block .com { color: rgba(200,248,169,0.45); font-style: italic; }
.code-block .var { color: #9FE0FF; }

/* Compliance Bar */
.compliance-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.compliance-row .comp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 12px 8px;
  border-right: 1px dashed var(--border);
}
.compliance-row .comp-item:last-child { border-right: none; }
.comp-item .comp-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mint-soft), #fff);
  border: 1px solid var(--border);
}
.comp-item .comp-mark svg { width: 18px; height: 18px; stroke: var(--forest); fill: none; stroke-width: 2; }
.comp-item .comp-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--forest);
  text-transform: uppercase;
}
.comp-item .comp-sub {
  font-size: 11px;
  color: var(--text-tertiary);
  line-height: 1.4;
}
@media (max-width: 980px) {
  .compliance-row { grid-template-columns: repeat(3, 1fr); }
  .compliance-row .comp-item:nth-child(3n) { border-right: none; }
  .compliance-row .comp-item { border-bottom: 1px dashed var(--border); padding-bottom: 14px; }
  .compliance-row .comp-item:nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 600px) {
  .compliance-row { grid-template-columns: repeat(2, 1fr); }
}

/* Vision split */
.vision-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.vision-split .vision-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}
.vision-split h2 { color: #fff; margin-bottom: 22px; }
.vision-split .vision-quote {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.5;
  color: #FFFFFF;
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid var(--mint);
  margin-top: 24px;
}
.vision-split .vision-signer {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  color: rgba(230,240,236,0.7);
  font-size: 0.92rem;
}
.vision-split .vs-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--gold-soft));
  display: grid; place-items: center;
  color: var(--forest-deep); font-weight: 700; font-family: var(--font-mono);
}
@media (max-width: 880px) {
  .vision-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Stack / architecture diagram (textual but elegant) */
.stack-diagram {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.16);
}
.stack-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(10,26,31,0.55);
  border: 1px solid rgba(200,248,169,0.08);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.stack-row .sr-label {
  color: rgba(200,248,169,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}
.stack-row .sr-content {
  color: #E6F0EC;
}
.stack-row .sr-meta {
  color: var(--mint);
  font-size: 11px;
}

/* Call Center / Agent desktop mockup */
.cc-mockup {
  background: #0A1A1F;
  border: 1px solid rgba(200,248,169,0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,26,31,0.4);
  color: #E6F0EC;
  font-family: var(--font-body);
}
.cc-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(200,248,169,0.10);
}
.cc-bar .cb-dot { width: 10px; height: 10px; border-radius: 50%; }
.cc-bar .cb-dot.r { background: #FF6B6B; }
.cc-bar .cb-dot.y { background: #FFD66B; }
.cc-bar .cb-dot.g { background: var(--mint); }
.cc-bar .cb-title {
  margin-left: 12px; color: rgba(230,240,236,0.7);
  font-size: 0.78rem; font-family: var(--font-mono); letter-spacing: 0.06em;
}
.cc-bar .cb-live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--mint); font-size: 0.72rem; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.cc-bar .cb-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint); animation: aiPulse 1.6s ease-in-out infinite;
}
.cc-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  min-height: 360px;
}
@media (max-width: 760px) {
  .cc-body { grid-template-columns: 1fr; }
}
.cc-main { padding: 22px; }
.cc-side {
  background: rgba(255,255,255,0.02);
  border-left: 1px solid rgba(200,248,169,0.08);
  padding: 22px;
}
.cc-caller {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(200,248,169,0.08);
  margin-bottom: 16px;
}
.cc-caller .cc-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), #88c98f);
  color: var(--forest-deep); font-weight: 700;
  display: grid; place-items: center;
}
.cc-caller .cc-meta .n { color: #fff; font-weight: 600; font-size: 0.95rem; }
.cc-caller .cc-meta .s { color: rgba(230,240,236,0.6); font-size: 0.78rem; font-family: var(--font-mono); }
.cc-caller .cc-timer {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.9rem; color: var(--mint);
}
.cc-transcript {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 220px; overflow: hidden; position: relative;
  font-size: 0.86rem; line-height: 1.55;
}
.cc-transcript::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, transparent, #0A1A1F);
  pointer-events: none;
}
.cc-msg { display: flex; gap: 8px; }
.cc-msg .who {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: rgba(200,248,169,0.6); letter-spacing: 0.06em;
  min-width: 60px; text-transform: uppercase;
}
.cc-msg .txt { color: rgba(230,240,236,0.82); }
.cc-msg.ai .txt { color: var(--mint); }

/* Sentiment meter */
.sentiment {
  margin-top: 4px;
}
.sentiment-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(200,248,169,0.65); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 8px;
}
.sentiment-bar {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, #FF6B6B 0%, #FFD66B 50%, var(--mint) 100%);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(200,248,169,0.12);
}
.sentiment-marker {
  position: absolute; top: -4px;
  width: 4px; height: 16px; border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18);
  animation: sentimentDrift 4s ease-in-out infinite alternate;
}
@keyframes sentimentDrift {
  0%   { left: 38%; }
  50%  { left: 62%; }
  100% { left: 78%; }
}
.sentiment-score {
  margin-top: 14px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.ss-cell {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.10);
  text-align: center;
}
.ss-cell .v {
  font-family: var(--font-mono); font-weight: 700;
  color: #fff; font-size: 1.05rem;
}
.ss-cell .l {
  font-size: 10px; color: rgba(230,240,236,0.55);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px;
}

/* AI suggestion chip */
.cc-coach {
  margin-top: 18px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(200,248,169,0.10), rgba(200,248,169,0.04));
  border: 1px solid rgba(200,248,169,0.22);
  border-radius: 12px;
}
.cc-coach .lab {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 6px;
}
.cc-coach .msg { color: #E6F0EC; font-size: 0.86rem; line-height: 1.5; }

/* Physio / Pose mockup */
.pose-mockup {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(200,248,169,0.18), transparent 70%),
    linear-gradient(160deg, #0F3D3A, #0A2A28);
  border: 1px solid rgba(200,248,169,0.20);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.pose-mockup .pose-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,248,169,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,248,169,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pose-mockup svg.skeleton {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.pose-mockup .pose-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(10,26,31,0.55);
  border: 1px solid rgba(200,248,169,0.30);
  color: var(--mint); font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.pose-mockup .pose-badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); animation: aiPulse 1.6s ease-in-out infinite;
}
.pose-mockup .pose-feedback {
  position: absolute; right: 16px; bottom: 16px; left: 16px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(10,26,31,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,248,169,0.18);
  color: #E6F0EC; font-size: 0.85rem;
}
.pose-mockup .pose-feedback .lab {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--mint); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 4px;
}
.pose-joint {
  fill: var(--mint);
  stroke: #FFFFFF; stroke-width: 1.5;
  filter: drop-shadow(0 0 6px rgba(200,248,169,0.7));
}
.pose-bone {
  stroke: var(--mint);
  stroke-width: 2; stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(200,248,169,0.5));
}
.pose-angle {
  fill: none; stroke: var(--gold-soft);
  stroke-width: 1.6; stroke-dasharray: 3 3;
}
.pose-label {
  fill: var(--gold-soft);
  font-family: var(--font-mono); font-size: 10px;
}

/* Product split (text + visual) */
.split-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-product.reversed { direction: rtl; }
.split-product.reversed > * { direction: ltr; }
@media (max-width: 880px) {
  .split-product { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
}

/* Feature-grid (inside dark sections) */
.feat-mini-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 22px;
}
.feat-mini {
  display: flex; gap: 10px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.10);
}
.feat-mini .fm-ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(200,248,169,0.14);
  display: grid; place-items: center; flex-shrink: 0;
}
.feat-mini .fm-ico svg { width: 14px; height: 14px; stroke: var(--mint); fill: none; stroke-width: 2; }
.feat-mini .fm-text strong {
  display: block; color: #fff; font-weight: 600;
  font-size: 0.9rem; margin-bottom: 2px;
}
.feat-mini .fm-text span {
  color: rgba(230,240,236,0.7); font-size: 0.82rem; line-height: 1.5;
}
@media (max-width: 600px) { .feat-mini-grid { grid-template-columns: 1fr; } }

/* Manifesto / kpi badges */
.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 32px;
}
.kpi-card {
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
}
.kpi-card::before {
  content: ""; position: absolute; left: 0; top: 18px; bottom: 18px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--forest), var(--mint));
}
.kpi-card .kpi-v {
  font-size: 2rem; font-weight: 800; color: var(--forest);
  letter-spacing: -0.02em; line-height: 1;
}
.kpi-card .kpi-l {
  font-size: 0.85rem; color: var(--text-tertiary);
  margin-top: 8px; line-height: 1.5;
}
.kpi-card .kpi-sub {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--forest);
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 4px;
}
@media (max-width: 880px) { .kpi-row { grid-template-columns: repeat(2, 1fr); } }

/* Hero badge row */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.hero-badges .hb {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--forest);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
}
.hero-badges .hb svg { width: 12px; height: 12px; stroke: var(--forest); fill: none; stroke-width: 2.2; }

/* Pricing-light (used inside product pages, no money) */
.tier-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.tier-card {
  padding: 24px; border-radius: 16px;
  background: #FFFFFF; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.tier-card.featured {
  background: linear-gradient(180deg, #0F3D3A, #0A2A28);
  color: #E6F0EC; border-color: rgba(200,248,169,0.25);
  position: relative; transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.tier-card.featured h4, .tier-card.featured .tier-price { color: #fff; }
.tier-card.featured .tier-feat li { color: rgba(230,240,236,0.82); }
.tier-card.featured .tier-feat svg { stroke: var(--mint); }
.tier-card .tier-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: 10px;
}
.tier-card.featured .tier-tag { color: var(--mint); }
.tier-card .tier-price {
  font-weight: 800; font-size: 1.6rem; color: var(--forest);
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.tier-card .tier-feat { list-style: none; padding: 0; margin: 14px 0 18px; }
.tier-card .tier-feat li {
  display: flex; gap: 8px; padding: 6px 0;
  color: var(--text-secondary); font-size: 0.92rem;
}
.tier-card .tier-feat svg { width: 16px; height: 16px; stroke: var(--forest); fill: none; stroke-width: 2.2; flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) {
  .tier-row { grid-template-columns: 1fr; }
  .tier-card.featured { transform: none; }
}

/* Use-case strip */
.uc-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px;
}
.uc-tile {
  padding: 16px 18px; border-radius: 12px;
  background: #FFFFFF; border: 1px solid var(--border);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.uc-tile:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.uc-tile .uc-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--text-tertiary); margin-bottom: 6px;
}
.uc-tile strong { color: var(--forest); display: block; margin-bottom: 4px; }
.uc-tile span { color: var(--text-tertiary); font-size: 0.86rem; }
@media (max-width: 880px) { .uc-strip { grid-template-columns: repeat(2, 1fr); } }

/* Logo wall (clean monochrome) */
.logo-wall {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  align-items: center; margin-top: 22px;
}
.logo-wall .lw {
  text-align: center;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-tertiary); letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 8px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.logo-wall .lw:hover { color: var(--forest); border-color: var(--border-strong); }
@media (max-width: 880px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* Section utility, limit width */
.measure-md { max-width: 720px; margin: 0 auto; }

/* About / Standort hero cards */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}

/* About band, unified two-image strip */
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 36px;
  border-radius: 22px;
  overflow: hidden;
  background: #0F3D3A;
  box-shadow: 0 24px 60px rgba(10,26,31,0.18);
}
.about-band > .about-card {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 16 / 11;
}
.about-band > .about-card:hover img { transform: scale(1.03); }
.about-card-body-min h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .about-band { grid-template-columns: 1fr; gap: 2px; }
  .about-band > .about-card { aspect-ratio: 16/10; }
}
.about-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  background: #0F3D3A;
  box-shadow: 0 24px 60px rgba(10,26,31,0.18);
  isolation: isolate;
}
.about-card img,
.about-card .about-img-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.about-card .about-img-fallback {
  background:
    radial-gradient(60% 70% at 30% 40%, rgba(200,248,169,0.30), transparent 70%),
    linear-gradient(160deg, #0F3D3A 0%, #0A2A28 100%);
}
.about-card .about-img-fallback::after {
  content: "Bildplatzhalter";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(200,248,169,0.45);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-card:hover img { transform: scale(1.04); }
.about-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,31,0) 30%, rgba(10,26,31,0.78) 100%);
  z-index: 1;
}
.about-card-body {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 26px; left: 28px; right: 28px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 92px;
}
.about-card-body h3 {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.about-card-body p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}
.about-card-tag {
  position: absolute;
  top: 22px; left: 24px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(10,26,31,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .about-cards { grid-template-columns: 1fr; }
  .about-card { aspect-ratio: 16/11; }
}

/* ===== Premium v3 — animations & upgraded product cards ===== */

/* Refined ai-pill (no shimmer, smaller, calmer) */
.ai-pill {
  padding: 5px 11px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  background: rgba(15,61,58,0.06);
  border-color: rgba(15,61,58,0.12);
  font-weight: 500;
}
.ai-pill::before { width: 5px; height: 5px; box-shadow: 0 0 0 2px rgba(15,61,58,0.08); }
.section-grid .ai-pill {
  background: rgba(200,248,169,0.10);
  border-color: rgba(200,248,169,0.22);
  color: var(--mint);
}

/* Product cards — premium upgrade */
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.5s var(--ease);
  border: 1px solid var(--border);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(15,61,58,0.0), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease), background 0.5s var(--ease);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 30px 70px rgba(10,26,31,0.15), 0 0 0 1px rgba(200,248,169,0.40);
}
.product-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(200,248,169,0.55), rgba(15,61,58,0.0) 40%, rgba(200,248,169,0.35));
}

/* Subtle shine sweep on card hover */
.product-card .product-card-visual {
  position: relative;
  overflow: hidden;
}
.product-card .product-card-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(200,248,169,0.20) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.product-card:hover .product-card-visual::after {
  transform: translateX(110%);
}
.product-card .product-card-visual svg {
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-card-visual svg {
  transform: scale(1.08) rotate(-2deg);
}

/* (Removed: hero visual float + pulsing Live dots — too "AI startup template") */

/* ===== Voice waveform mockup (AureusNoa) ===== */
.voice-mockup {
  background: linear-gradient(160deg, #0A2A28 0%, #0F3D3A 60%, #1A5A55 100%);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(200,248,169,0.18);
  box-shadow: 0 30px 80px rgba(10,26,31,0.4);
  color: #E6F0EC;
  position: relative;
  overflow: hidden;
}
.voice-mockup::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 20%, rgba(200,248,169,0.18), transparent 60%);
  pointer-events: none;
}
.voice-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,248,169,0.65);
}
.voice-header .vh-live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--mint);
}
.voice-header .vh-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint); animation: aiPulse 1.6s ease-in-out infinite;
}
.voice-caller {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.12);
  margin-bottom: 22px;
}
.voice-caller .vc-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--mint));
  color: var(--forest-deep); font-weight: 800;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 14px;
}
.voice-caller .vc-meta .n { color: #fff; font-weight: 600; }
.voice-caller .vc-meta .s { font-family: var(--font-mono); font-size: 11px; color: rgba(230,240,236,0.6); letter-spacing: 0.06em; }
.voice-caller .vc-timer { margin-left: auto; font-family: var(--font-mono); color: var(--mint); }
.waveform {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  height: 80px;
  margin: 6px 0 18px;
}
.waveform span {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--mint), rgba(200,248,169,0.4));
  animation: wave 1.4s ease-in-out infinite;
}
.waveform span:nth-child(1)  { animation-delay: -1.3s; }
.waveform span:nth-child(2)  { animation-delay: -1.2s; }
.waveform span:nth-child(3)  { animation-delay: -1.1s; }
.waveform span:nth-child(4)  { animation-delay: -1.0s; }
.waveform span:nth-child(5)  { animation-delay: -0.9s; }
.waveform span:nth-child(6)  { animation-delay: -0.8s; }
.waveform span:nth-child(7)  { animation-delay: -0.7s; }
.waveform span:nth-child(8)  { animation-delay: -0.6s; }
.waveform span:nth-child(9)  { animation-delay: -0.5s; }
.waveform span:nth-child(10) { animation-delay: -0.4s; }
.waveform span:nth-child(11) { animation-delay: -0.3s; }
.waveform span:nth-child(12) { animation-delay: -0.2s; }
.waveform span:nth-child(13) { animation-delay: -0.1s; }
.waveform span:nth-child(14) { animation-delay: 0s; }
.waveform span:nth-child(15) { animation-delay: -0.5s; }
.waveform span:nth-child(16) { animation-delay: -1.0s; }
.waveform span:nth-child(17) { animation-delay: -0.7s; }
.waveform span:nth-child(18) { animation-delay: -0.4s; }
.waveform span:nth-child(19) { animation-delay: -1.1s; }
.waveform span:nth-child(20) { animation-delay: -0.3s; }
.waveform span:nth-child(21) { animation-delay: -0.9s; }
.waveform span:nth-child(22) { animation-delay: -0.6s; }
.waveform span:nth-child(23) { animation-delay: -1.2s; }
.waveform span:nth-child(24) { animation-delay: -0.2s; }
@keyframes wave {
  0%, 100% { height: 18%; opacity: 0.65; }
  50%      { height: 95%; opacity: 1; }
}
.voice-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(200,248,169,0.55);
  text-transform: uppercase;
}
.voice-tags {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 22px;
}
.voice-tags .vt {
  padding: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.10);
  text-align: center;
  font-family: var(--font-mono);
}
.voice-tags .vt .vt-v { color: #fff; font-weight: 700; font-size: 1rem; }
.voice-tags .vt .vt-l { font-size: 10px; color: rgba(230,240,236,0.55); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* ===== Animated transcript (Helpdesk) ===== */
.cc-transcript .cc-msg {
  animation: msgIn 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
.cc-transcript .cc-msg:nth-child(1) { animation-delay: 0.2s; }
.cc-transcript .cc-msg:nth-child(2) { animation-delay: 1.6s; }
.cc-transcript .cc-msg:nth-child(3) { animation-delay: 3.0s; }
.cc-transcript .cc-msg:nth-child(4) { animation-delay: 4.4s; }
@keyframes msgIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Sentiment cells pulse */
.ss-cell .v {
  animation: numPulse 3s ease-in-out infinite;
}
@keyframes numPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* ===== Kinetia pose breathing ===== */
.pose-mockup svg.skeleton {
  animation: breathe 5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes breathe {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.015) translateY(-2px); }
}
.pose-joint {
  animation: jointBlink 2.4s ease-in-out infinite;
}
.pose-joint:nth-child(odd)  { animation-delay: 0s; }
.pose-joint:nth-child(even) { animation-delay: -1.2s; }
@keyframes jointBlink {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(200,248,169,0.7)); }
  50%      { filter: drop-shadow(0 0 12px rgba(200,248,169,1.0)); }
}
.pose-bone {
  animation: bonePulse 3.6s ease-in-out infinite;
}
@keyframes bonePulse {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 0.55; }
}
.pose-angle {
  animation: dashFlow 4s linear infinite;
}
@keyframes dashFlow {
  0%   { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -24; }
}

/* ===== Kinetia therapist workflow ===== */
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.workflow::before {
  content: "";
  position: absolute;
  left: 6%; right: 6%; top: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200,248,169,0.4) 12%, rgba(200,248,169,0.4) 88%, transparent);
  z-index: 0;
}
.wf-step {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.16);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  z-index: 1;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.wf-step:hover { transform: translateY(-4px); border-color: rgba(200,248,169,0.32); }
.wf-step .wf-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  border: 1px solid rgba(200,248,169,0.28);
  box-shadow: 0 0 0 6px rgba(15,61,58,1), 0 12px 30px rgba(10,26,31,0.4);
  position: relative;
}
.wf-step .wf-icon svg { width: 24px; height: 24px; stroke: var(--mint); fill: none; stroke-width: 2; }
.wf-step .wf-icon::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200,248,169,0.20);
  animation: ring 3s ease-out infinite;
}
@keyframes ring {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wf-step h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.wf-step p  { color: rgba(230,240,236,0.72); font-size: 0.86rem; line-height: 1.55; }
.wf-step .wf-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(200,248,169,0.5);
}
@media (max-width: 900px) {
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .workflow::before { display: none; }
}
@media (max-width: 520px) {
  .workflow { grid-template-columns: 1fr; }
}

/* Card icon idle pulse (subtle) */
.card-icon-wrap {
  position: relative;
}
.card-icon-wrap::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(15,61,58,0.10);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.card:hover .card-icon-wrap::after {
  opacity: 1;
  transform: scale(1.06);
}

/* Stat-number subtle accent line */
.stat-item {
  position: relative;
}

/* (Removed: animated grid drift on dark sections + image float — too restless) */

/* ===== Bento Grid for Products (Homepage) ===== */
.bento-products {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.5s var(--ease);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(10,26,31,0.18);
  border-color: rgba(15,61,58,0.30);
}
.bento-card .bento-body {
  position: relative;
  z-index: 2;
  padding: 30px 32px 24px;
}
.bento-card .bento-body h3 {
  font-size: 1.7rem;
  margin: 8px 0 8px;
  letter-spacing: -0.02em;
}
.bento-card .bento-body p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.bento-card .bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}
.bento-card .bento-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.4s var(--ease); }
.bento-card:hover .bento-link svg { transform: translateX(4px); }
.bento-card .bento-mock {
  position: relative;
  margin-top: auto;
  flex: 1;
  min-height: 200px;
  background: linear-gradient(160deg, #0F3D3A 0%, #0A2A28 100%);
  overflow: hidden;
}
.bento-card .bento-mock::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,248,169,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,248,169,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.bento-mock-shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(200,248,169,0.20) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 5;
}
.bento-card:hover .bento-mock-shine { transform: translateX(110%); }

/* Grid placements */
.bp-aureus   { grid-row: 1 / 3; }
.bp-helpdesk { grid-row: 1; }
.bp-kinetia  { grid-row: 2; }
.bp-incluvia { grid-column: 1 / 3; grid-row: 3; }
.bp-incluvia { display: grid; grid-template-columns: 1.3fr 1fr; min-height: 280px; }
.bp-incluvia .bento-body { padding: 36px 36px 30px; display: flex; flex-direction: column; justify-content: center; }
.bp-incluvia .bento-mock { min-height: 100%; }

/* AureusNoa large card mock — full waveform */
.bp-aureus .bento-mock { padding: 26px; }
.mini-voice {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 18px;
  height: 100%;
  justify-content: center;
}
.mini-voice-head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(200,248,169,0.7); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-voice-head::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); animation: aiPulse 1.6s ease-in-out infinite;
}
.mini-wave {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  height: 100px;
}
.mini-wave span {
  display: block; width: 5px; border-radius: 4px;
  background: linear-gradient(180deg, var(--mint), rgba(200,248,169,0.4));
  animation: wave 1.4s ease-in-out infinite;
}
.mini-wave span:nth-child(1)  { animation-delay: -1.3s; }
.mini-wave span:nth-child(2)  { animation-delay: -0.4s; }
.mini-wave span:nth-child(3)  { animation-delay: -1.0s; }
.mini-wave span:nth-child(4)  { animation-delay: -0.2s; }
.mini-wave span:nth-child(5)  { animation-delay: -0.7s; }
.mini-wave span:nth-child(6)  { animation-delay: -1.1s; }
.mini-wave span:nth-child(7)  { animation-delay: -0.5s; }
.mini-wave span:nth-child(8)  { animation-delay: -0.9s; }
.mini-wave span:nth-child(9)  { animation-delay: -0.3s; }
.mini-wave span:nth-child(10) { animation-delay: -1.2s; }
.mini-wave span:nth-child(11) { animation-delay: -0.6s; }
.mini-wave span:nth-child(12) { animation-delay: -0.1s; }
.mini-wave span:nth-child(13) { animation-delay: -0.8s; }
.mini-wave span:nth-child(14) { animation-delay: -0.4s; }
.mini-wave span:nth-child(15) { animation-delay: -1.0s; }
.mini-wave span:nth-child(16) { animation-delay: -0.2s; }
.mini-wave span:nth-child(17) { animation-delay: -1.3s; }
.mini-wave span:nth-child(18) { animation-delay: -0.6s; }
.mini-voice-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.mini-voice-meta .mvc {
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,248,169,0.12);
  text-align: center;
  font-family: var(--font-mono);
}
.mini-voice-meta .mvc .v { color: #fff; font-size: 0.92rem; font-weight: 700; }
.mini-voice-meta .mvc .l { font-size: 9.5px; color: rgba(200,248,169,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* Helpdesk mini sentiment */
.mini-sent {
  padding: 22px; height: 100%;
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
  position: relative; z-index: 1;
}
.mini-sent-row {
  display: flex; align-items: center; gap: 10px;
}
.mini-bubble {
  flex: 1;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(230,240,236,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,248,169,0.10);
  animation: msgIn 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
.mini-bubble.ai {
  color: var(--mint);
  background: rgba(200,248,169,0.10);
  border-color: rgba(200,248,169,0.20);
}
.mini-sent-row:nth-child(2) .mini-bubble { animation-delay: 0.6s; }
.mini-sent-bar {
  margin-top: auto;
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF6B6B 0%, #FFD66B 50%, var(--mint) 100%);
  box-shadow: inset 0 0 0 1px rgba(200,248,169,0.10);
}
.mini-sent-bar::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 3px; height: 12px; border-radius: 3px;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
  animation: sentimentDrift 4s ease-in-out infinite alternate;
}

/* Kinetia mini skeleton */
.mini-pose {
  padding: 18px;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.mini-pose svg {
  width: 100%; height: 100%; max-height: 200px;
}
.mini-pose .mp-readout {
  position: absolute;
  right: 18px; bottom: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(10,26,31,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200,248,169,0.20);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 0.06em;
}
.mini-pose .mp-readout strong { color: #fff; }

/* Incluvia mini scan */
.mini-scan {
  padding: 26px; height: 100%;
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
  position: relative; z-index: 1;
}
.mini-scan-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.14);
  border-radius: 10px;
  color: #E6F0EC;
  font-size: 0.88rem;
  animation: scanRow 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.mini-scan-item:nth-child(1) { animation-delay: 0.2s; }
.mini-scan-item:nth-child(2) { animation-delay: 0.5s; }
.mini-scan-item:nth-child(3) { animation-delay: 0.8s; }
.mini-scan-item:nth-child(4) { animation-delay: 1.1s; }
.mini-scan-item .msi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(200,248,169,0.20);
  animation: aiPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.mini-scan-item .msi-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(200,248,169,0.12);
  border: 1px solid rgba(200,248,169,0.22);
}

/* Bento responsive */
@media (max-width: 900px) {
  .bento-products { grid-template-columns: 1fr; grid-template-rows: none; gap: 14px; }
  .bp-aureus, .bp-helpdesk, .bp-kinetia, .bp-incluvia {
    grid-row: auto; grid-column: auto;
  }
  .bp-incluvia { display: flex; flex-direction: column; }
  .bp-incluvia .bento-mock { min-height: 220px; }
}

/* Cleaner bento polish */
.bento-card { color: inherit; text-decoration: none; }
.bento-card .bento-body h3 {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--forest);
}
.bento-card .bento-body { padding: 28px 30px 22px; }
.bp-aureus   .bento-body { padding: 36px 36px 24px; }
.bp-aureus   .bento-body h3 { font-size: 2rem; }
.bp-incluvia .bento-body h3 { font-size: 1.8rem; }
.bento-card .bento-mock {
  min-height: 180px;
  border-top: 1px solid rgba(15,61,58,0.10);
}
.bp-aureus .bento-mock { min-height: 280px; }
.bp-incluvia .bento-mock { border-top: none; border-left: 1px solid rgba(15,61,58,0.10); }
@media (max-width: 900px) {
  .bp-incluvia .bento-mock { border-left: none; border-top: 1px solid rgba(15,61,58,0.10); }
}

/* ===== Service Strip (KI Transformation) ===== */
.service-strip {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 26px 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0A2A28 0%, #0F3D3A 60%, #0A2A28 100%);
  border: 1px solid rgba(200,248,169,0.18);
  color: #E6F0EC;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              border-color 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
}
.service-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,248,169,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,248,169,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at right, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at right, #000 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.service-strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(200,248,169,0.10) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 1;
}
.service-strip:hover {
  transform: translateY(-3px);
  border-color: rgba(200,248,169,0.35);
  box-shadow: 0 30px 70px rgba(10,26,31,0.4);
}
.service-strip:hover::after { transform: translateX(110%); }
.service-strip-glow {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,248,169,0.20), transparent 70%);
  right: -60px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.service-strip-icon {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(200,248,169,0.18), rgba(200,248,169,0.04));
  border: 1px solid rgba(200,248,169,0.30);
  box-shadow: 0 0 0 6px rgba(15,61,58,0.40), 0 0 30px rgba(200,248,169,0.15);
}
.service-strip-icon svg {
  width: 28px; height: 28px;
  stroke: var(--mint); fill: none; stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(200,248,169,0.5));
}
.service-strip-body {
  position: relative;
  z-index: 2;
}
.service-strip-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 6px;
  opacity: 0.85;
}
.service-strip-body h3 {
  color: #FFFFFF;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.service-strip-body p {
  color: rgba(230,240,236,0.78);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}
.service-strip-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(200,248,169,0.10);
  border: 1px solid rgba(200,248,169,0.30);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-strip:hover .service-strip-cta {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--forest-deep);
}
.service-strip-cta .ssc-arrow {
  display: inline-flex;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(200,248,169,0.20);
  align-items: center; justify-content: center;
  transition: background 0.4s var(--ease), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-strip-cta .ssc-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--mint); fill: none; stroke-width: 2;
  transition: stroke 0.4s var(--ease), transform 0.5s var(--ease);
}
.service-strip:hover .service-strip-cta .ssc-arrow {
  background: rgba(10,26,31,0.20);
  transform: translateX(4px);
}
.service-strip:hover .service-strip-cta .ssc-arrow svg { stroke: var(--forest-deep); }
@media (max-width: 760px) {
  .service-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }
  .service-strip-cta { justify-self: start; }
}

/* ===== Incluvia Live-Scan mockup ===== */
.incluvia-scan {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(15,61,58,0.10);
  position: relative;
  overflow: hidden;
}
.incluvia-scan::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(200,248,169,0.12), transparent 30%);
  pointer-events: none;
}
.scan-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  position: relative;
}
.scan-title { color: var(--forest); }
.scan-live {
  color: var(--forest);
  display: inline-flex; align-items: center; gap: 6px;
}
.scan-live::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest);
  animation: aiPulse 1.6s ease-in-out infinite;
}
.scan-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.scan-stat {
  padding: 14px;
  border-radius: 12px;
  background: var(--mint-soft);
  border: 1px solid rgba(15,61,58,0.10);
}
.scan-stat .ss-v {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
}
.scan-stat .ss-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.scan-stat .ss-num span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.6;
}
.scan-stat .ss-num-warn { color: #16a34a; }
.scan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.scan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  animation: scanRow 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.scan-list li:nth-child(1) { animation-delay: 0.1s; }
.scan-list li:nth-child(2) { animation-delay: 0.4s; }
.scan-list li:nth-child(3) { animation-delay: 0.7s; }
.scan-list li:nth-child(4) { animation-delay: 1.0s; }
.scan-list li:nth-child(5) { animation-delay: 1.3s; }
.scan-list li:nth-child(6) { animation-delay: 1.6s; }
.scan-list li:last-child { border-bottom: none; }
.scan-list li .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  flex-shrink: 0;
}
.scan-list li .txt { flex: 1; }
.scan-list li .txt code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--forest);
  background: var(--mint-soft);
  padding: 1px 6px;
  border-radius: 4px;
}
.scan-list li .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--forest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@keyframes scanRow {
  0%   { opacity: 0; transform: translateX(-6px); }
  100% { opacity: 1; transform: translateX(0); }
}
.scan-footer {
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}
.scan-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest);
  animation: aiPulse 1.6s ease-in-out infinite;
}

/* ===== Agent-graph (KI Transformation) ===== */
.agent-graph {
  background: linear-gradient(160deg, #0F3D3A 0%, #0A2A28 100%);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(200,248,169,0.18);
  color: #E6F0EC;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 30px 80px rgba(10,26,31,0.4);
}
.agent-graph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,248,169,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,248,169,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
}
.agent-graph-header {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,248,169,0.6);
  margin-bottom: 18px;
  position: relative;
}
.ag-orchestrator {
  position: relative;
  width: 100%; height: 240px;
}
.ag-node {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,248,169,0.25);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.ag-node.center {
  background: linear-gradient(135deg, var(--mint), #88c98f);
  color: var(--forest-deep);
  font-weight: 700;
  border-color: var(--mint);
  box-shadow: 0 0 30px rgba(200,248,169,0.4);
}
.ag-node .lbl {
  font-size: 9.5px;
  display: block;
  color: rgba(200,248,169,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ag-node.center .lbl { color: rgba(10,26,31,0.7); }
.ag-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,248,169,0.5), transparent);
  transform-origin: 0 0;
  animation: agPulse 3s ease-in-out infinite;
}
@keyframes agPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* ===== Editorial polish v4 ===== */

/* ===== Hero Growth Animation ===== */
.hero-anim {
  position: relative;
  width: 100%;
}
.hero-anim-frame {
  position: relative;
  aspect-ratio: 4/4.4;
  border-radius: 24px;
  background: linear-gradient(160deg, #0F3D3A 0%, #0A2A28 100%);
  border: 1px solid rgba(200,248,169,0.18);
  box-shadow: 0 30px 80px rgba(10,26,31,0.30);
  overflow: hidden;
  isolation: isolate;
}
.hero-anim-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 80% 10%, rgba(200,248,169,0.12), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(232,199,106,0.06), transparent 70%);
  pointer-events: none;
}
.hero-anim-frame::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,248,169,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,248,169,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-anim-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 70%;
  padding: 8% 6% 0;
}

/* Timeline: 7s loop
   0   - 2.6s : line draws + dots pop
   2.4 - 3.0s : end-point pulses
   2.8 - 4.0s : chart dims, logo fades in
   4.0 - 6.0s : hold logo
   6.0 - 7.0s : everything fades out, ready for restart
*/

.ha-line {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: haLine 7s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes haLine {
  0%       { stroke-dashoffset: 720; opacity: 0; }
  4%       { opacity: 1; }
  38%      { stroke-dashoffset: 0;   opacity: 1; }
  55%      { opacity: 0.9; }
  72%      { opacity: 0.25; }
  90%      { opacity: 0.25; }
  100%     { stroke-dashoffset: 720; opacity: 0; }
}

.ha-fill {
  opacity: 0;
  animation: haFill 7s ease-in-out infinite;
}
@keyframes haFill {
  0%, 6%     { opacity: 0; }
  40%        { opacity: 1; }
  72%        { opacity: 0.2; }
  90%        { opacity: 0.2; }
  100%       { opacity: 0; }
}

.ha-points circle {
  opacity: 0;
  transform-origin: center;
  animation: haPoint 7s ease-in-out infinite;
}
.ha-points circle:nth-child(1) { animation-delay: 0.0s; }
.ha-points circle:nth-child(2) { animation-delay: 0.4s; }
.ha-points circle:nth-child(3) { animation-delay: 0.8s; }
.ha-points circle:nth-child(4) { animation-delay: 1.2s; }
.ha-points circle:nth-child(5) { animation-delay: 1.6s; }
.ha-points circle:nth-child(6) { animation-delay: 2.0s; }
@keyframes haPoint {
  0%       { opacity: 0; transform: scale(0.4); }
  4%, 38%  { opacity: 1; transform: scale(1); }
  72%      { opacity: 0.5; }
  90%      { opacity: 0.5; }
  100%     { opacity: 0; }
}

.ha-end {
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(200,248,169,0.7));
  animation: haEnd 7s ease-in-out infinite;
}
@keyframes haEnd {
  0%, 32%   { opacity: 0; transform: scale(0.4); transform-origin: 365px 50px; }
  40%       { opacity: 1; transform: scale(1.4); transform-origin: 365px 50px; }
  48%       { transform: scale(1); transform-origin: 365px 50px; }
  72%       { opacity: 0.6; }
  90%       { opacity: 0.6; }
  100%      { opacity: 0; }
}
.ha-end-pulse {
  opacity: 0;
  transform-origin: 365px 50px;
  animation: haEndPulse 7s ease-out infinite;
}
@keyframes haEndPulse {
  0%, 36%   { opacity: 0; transform: scale(1); }
  40%       { opacity: 0.8; transform: scale(1); }
  60%       { opacity: 0; transform: scale(3.5); }
  100%      { opacity: 0; transform: scale(3.5); }
}

.ha-labels text { opacity: 0; animation: haLabels 7s ease-in-out infinite; }
@keyframes haLabels {
  0%, 8%    { opacity: 0; }
  18%, 72%  { opacity: 1; }
  90%       { opacity: 0.3; }
  100%      { opacity: 0; }
}

/* Logo wordmark fade in */
.hero-anim-logo {
  position: absolute;
  left: 0; right: 0;
  bottom: 16%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  animation: haLogo 7s ease-in-out infinite;
}
.hero-anim-logo .brand-wordmark {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.hero-anim-logo .brand-wordmark .x {
  background: var(--mint);
  color: var(--forest-deep);
  padding: 1px 9px;
  border-radius: 7px;
  margin: 0 1px;
}
.hero-anim-tag {
  display: block;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(200,248,169,0.7);
}
@keyframes haLogo {
  0%, 38%   { opacity: 0; transform: translateY(8px); }
  50%, 84%  { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(8px); }
}

/* Meta strip at bottom */
.hero-anim-meta {
  position: absolute;
  left: 22px; right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  z-index: 2;
}
.ham-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,248,169,0.10);
  backdrop-filter: blur(4px);
}
.ham-row .ham-l {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(200,248,169,0.55);
  text-transform: uppercase;
}
.ham-row .ham-v {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .ha-line, .ha-fill, .ha-points circle, .ha-end, .ha-end-pulse, .ha-labels text, .hero-anim-logo {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* Hero figure (replaces 5-row visual-card) */
.hero-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-fig-image {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--forest);
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 30px 80px rgba(10,26,31,0.20);
}
.hero-fig-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.5s cubic-bezier(0.16,1,0.3,1);
}
.hero-fig-image:hover img { transform: scale(1.03); }
.hero-fig-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,26,31,0.55) 100%);
}
.hero-fig-image figcaption {
  position: absolute;
  bottom: 18px; left: 20px;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-fig-quote {
  padding: 0 4px;
}
.hero-fig-quote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--forest);
  font-style: italic;
}
.hero-fig-quote p::before { content: "„"; color: var(--forest); margin-right: 2px; }
.hero-fig-quote p::after  { content: """; color: var(--forest); }
.hero-fig-author {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .hero-fig-image { aspect-ratio: 16/10; }
}

/* Section header refinement (more editorial) */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  letter-spacing: -0.025em;
  margin: 14px 0 14px;
}
.section-header p {
  color: var(--text-tertiary);
  font-size: 1rem;
}

/* Buttons: a touch more refined */
.btn-primary {
  font-weight: 600;
  letter-spacing: 0;
}

/* Mute neon glows in dark sections */
.section-grid h2 strong, .section-grid h2 span { color: #FFFFFF !important; }
.ai-cap { background: rgba(255,255,255,0.03); }
.ai-cap:hover { background: rgba(255,255,255,0.05); }

/* Calm down ring animation on Kinetia workflow */
.wf-step .wf-icon::after { animation-duration: 5s; }

/* Reduce bento mock visual chrome */
.bento-card .bento-mock::before { opacity: 0.6; }

/* Refined trust label spacing */
.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 24px !important;
}

/* About intro text grid */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: end;
}
.about-intro h2 { margin-bottom: 0; }
.about-intro p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 800px) {
  .about-intro { grid-template-columns: 1fr; gap: 18px; }
}
