/* ============================================================
   index_draft.css — LAD Brand Landing Page
   Brand: Cyan #009FE3 · Navy #1B2B6B · Purple #544495 · Magenta #E6007E
   ============================================================ */

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

/* --- Global Background Blobs --- */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  will-change: transform;
}
.bg-blob--cyan {
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, #00c8ff 0%, #009FE3 50%, transparent 100%);
  top: -10%; left: -15%;
  animation: bg-drift-1 30s infinite ease-in-out;
}
.bg-blob--purple {
  width: 900px; height: 900px;
  background: radial-gradient(circle, #7b68c4 0%, #544495 50%, transparent 100%);
  top: 40%; right: -10%;
  animation: bg-drift-2 26s infinite ease-in-out;
}
.bg-blob--magenta {
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, #ff3da5 0%, #E6007E 50%, transparent 100%);
  bottom: -5%; left: 20%;
  animation: bg-drift-3 34s infinite ease-in-out;
}

@keyframes bg-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(12vw, 15vh) scale(1.08); }
  50%  { transform: translate(5vw, 30vh) scale(0.95); }
  75%  { transform: translate(-8vw, 10vh) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes bg-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-10vw, -12vh) scale(1.1); }
  50%  { transform: translate(-15vw, 8vh) scale(0.92); }
  75%  { transform: translate(5vw, -5vh) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes bg-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(8vw, -10vh) scale(0.95); }
  50%  { transform: translate(-5vw, -20vh) scale(1.1); }
  75%  { transform: translate(10vw, -8vh) scale(0.98); }
  100% { transform: translate(0, 0) scale(1); }
}

:root {
  /* Brand Colours */
  --color-primary: #009FE3;
  --color-primary-dark: #0080B8;
  --color-dark: #1B2B6B;
  --color-dark-card: #162256;
  --color-accent: #E6007E;
  --color-purple: #544495;
  --color-white: #ffffff;
  --color-off-white: #f5f7fb;
  --color-text: #1a1a2e;
  --color-text-light: #4a4a6a;
  --color-text-muted: #7a7a9a;
  --color-border: #dde0ea;

  /* Brand Gradients */
  --gradient-brand: linear-gradient(135deg, #009FE3, #544495, #E6007E);
  --gradient-brand-subtle: linear-gradient(135deg, rgba(0,159,227,.06), rgba(84,68,149,.04), rgba(230,0,126,.06));
  --gradient-accent-text: linear-gradient(90deg, #009FE3, #544495, #E6007E);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --fs-hero: clamp(2.5rem, 5vw, 3.75rem);
  --fs-h2: clamp(2rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1.125rem;
  --fs-small: 0.9375rem;
  --lh-body: 1.7;
  --lh-heading: 1.2;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 120px);
  --container-max: 1200px;
  --container-px: clamp(20px, 5vw, 40px);

  /* Shapes */
  --radius-card: 16px;
  --radius-pill: 999px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

section, .hero, footer {
  position: relative;
  z-index: 1;
}

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

/* --- Pill Button --- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
}
.btn-white:hover { background: #f0f0f5; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  padding: 10px 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV Logo — animated gradient masked through white logo PNG */
.nav-logo { display: flex; align-items: center; }
.nav-logo-animated {
  width: 80px;
  height: 44px;
  background: linear-gradient(135deg, #1B2B6B, #544495, #E6007E, #544495, #1B2B6B);
  background-size: 300% 300%;
  animation: nav-logo-gradient 6s ease infinite;
  -webkit-mask-image: url('../img/logo_lad_freigestellt.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../img/logo_lad_freigestellt.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@keyframes nav-logo-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-primary); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-select {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-white);
  font-size: var(--fs-small);
  cursor: pointer;
  color: var(--color-text);
}
.nav-cta {
  padding: 10px 24px;
  font-size: var(--fs-small);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO — Aurora Logo top center, Text+Mockup two-column below
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(-45deg, #ffffff, #f0f8ff, #faf0ff, #fff0f8, #f0f5ff, #ffffff);
  background-size: 400% 400%;
  animation: hero-bg-breathe 20s ease infinite;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

@keyframes hero-bg-breathe {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 50% 0%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  box-sizing: border-box;
}

/* Top row: centered Aurora logo */
.hero-logo-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 280px;
}

.hero-aurora {
  position: absolute;
  inset: -40px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.aurora-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.65;
  mix-blend-mode: multiply;
  will-change: transform, filter, opacity;
}
.aurora-blob--cyan {
  background: radial-gradient(circle, #00c8ff 0%, #009FE3 60%, transparent 100%);
  width: 320px; height: 320px;
  animation: aurora-1 12s infinite ease-in-out, aurora-pulse-1 6s infinite ease-in-out;
}
.aurora-blob--purple {
  background: radial-gradient(circle, #7b68c4 0%, #544495 60%, transparent 100%);
  width: 180px; height: 180px;
  animation: aurora-2 10s infinite ease-in-out, aurora-pulse-2 5s infinite ease-in-out;
}
.aurora-blob--magenta {
  background: radial-gradient(circle, #ff3da5 0%, #E6007E 60%, transparent 100%);
  width: 340px; height: 340px;
  animation: aurora-3 11s infinite ease-in-out, aurora-pulse-3 7s infinite ease-in-out;
}

/* Orbit-artige Bewegungen */
@keyframes aurora-1 {
  0%   { transform: translate(calc(-50% - 100px), calc(-50% + 60px)) scale(0.85) rotate(0deg); }
  33%  { transform: translate(calc(-50% + 80px), calc(-50% - 90px)) scale(1.15) rotate(5deg); }
  66%  { transform: translate(calc(-50% + 40px), calc(-50% + 70px)) scale(0.95) rotate(-3deg); }
  100% { transform: translate(calc(-50% - 100px), calc(-50% + 60px)) scale(0.85) rotate(0deg); }
}
@keyframes aurora-2 {
  0%   { transform: translate(calc(-50% + 70px), calc(-50% + 50px)) scale(1) rotate(0deg); }
  33%  { transform: translate(calc(-50% - 80px), calc(-50% - 30px)) scale(0.8) rotate(-8deg); }
  66%  { transform: translate(calc(-50% + 20px), calc(-50% - 70px)) scale(1.1) rotate(4deg); }
  100% { transform: translate(calc(-50% + 70px), calc(-50% + 50px)) scale(1) rotate(0deg); }
}
@keyframes aurora-3 {
  0%   { transform: translate(calc(-50% - 50px), calc(-50% + 80px)) scale(1.1) rotate(0deg); }
  25%  { transform: translate(calc(-50% + 90px), calc(-50% + 10px)) scale(0.85) rotate(6deg); }
  50%  { transform: translate(calc(-50% + 30px), calc(-50% - 80px)) scale(1.05) rotate(-4deg); }
  75%  { transform: translate(calc(-50% - 80px), calc(-50% - 20px)) scale(0.9) rotate(3deg); }
  100% { transform: translate(calc(-50% - 50px), calc(-50% + 80px)) scale(1.1) rotate(0deg); }
}

/* Glow blob — heller Kern für Tiefe */
.aurora-blob--glow {
  background: radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(200,230,255,.4) 40%, transparent 70%);
  width: 200px; height: 200px;
  filter: blur(30px);
  opacity: 0.8;
  mix-blend-mode: screen;
  animation: aurora-glow 14s infinite ease-in-out;
}
@keyframes aurora-glow {
  0%   { transform: translate(calc(-50% + 20px), calc(-50% - 10px)) scale(0.8); }
  33%  { transform: translate(calc(-50% - 30px), calc(-50% + 30px)) scale(1.2); }
  66%  { transform: translate(calc(-50% + 40px), calc(-50% + 10px)) scale(0.9); }
  100% { transform: translate(calc(-50% + 20px), calc(-50% - 10px)) scale(0.8); }
}

/* Pulsieren (Blur + Opacity) */
@keyframes aurora-pulse-1 {
  0%, 100% { filter: blur(45px); opacity: 0.6; }
  50%      { filter: blur(55px); opacity: 0.75; }
}
@keyframes aurora-pulse-2 {
  0%, 100% { filter: blur(40px); opacity: 0.55; }
  50%      { filter: blur(50px); opacity: 0.7; }
}
@keyframes aurora-pulse-3 {
  0%, 100% { filter: blur(50px); opacity: 0.55; }
  50%      { filter: blur(60px); opacity: 0.7; }
}

.hero-logo {
  position: relative;
  z-index: 2;
  max-width: 340px;
  width: 100%;
}
.hero-logo img {
  width: 100%;
  height: auto;
}
.hero-logo-sub {
  text-align: center;
  font-size: clamp(0.7rem, 2.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: clamp(0.05em, 1vw, 0.2em);
  text-transform: uppercase;
  background: linear-gradient(135deg, #1B2B6B, #544495, #E6007E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 12px;
}

/* Bottom row: two-column text + mockup */
.hero-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 100%;
  overflow: visible;
}

.hero-text {
  max-width: 560px;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(90deg, rgba(0,159,227,.1), rgba(84,68,149,.08), rgba(230,0,126,.1));
  background-size: 200% auto;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 24px;
  animation: badge-shimmer 4s linear infinite;
}

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

.hero h1 {
  font-size: var(--fs-hero);
  line-height: var(--lh-heading);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: min(480px, 100%);
}
.hero-trust {
  font-size: 1.05rem;
  color: var(--color-text-light);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
  font-weight: 500;
}

/* Hero Mockup (right column) */
.hero-mockup {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(27,43,107,.1);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  padding: 0;
  position: relative;
  overflow: hidden;
  animation: slow-zoom 12s ease-in-out infinite alternate;
}
.hero-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: #f5f5f8;
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.hero-mockup-app {
  display: flex;
  width: 100%;
  margin-top: 40px;
  flex: 1;
  min-height: 0;
}
.hm-sidebar {
  width: 48px;
  background: #fafafe;
  border-right: 1px solid var(--color-border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hm-sidebar-icon { width: 28px; height: 28px; border-radius: 6px; background: #e5e5ea; }
.hm-sidebar-icon--active { background: var(--color-primary); opacity: .4; }
.hm-main {
  flex: 1;
  padding: 20px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.hm-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.hm-title { width: 80px; height: 14px; border-radius: 4px; background: #d1d5db; margin-bottom: 6px; }
.hm-subtitle { width: 120px; height: 9px; border-radius: 4px; background: #e5e7eb; }
.hm-toggle { width: 36px; height: 18px; border-radius: 9px; background: var(--color-primary); opacity: .5; }
.hm-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-top: 1px solid #f3f4f6; }
.hm-row-text { flex: 1; min-width: 0; }
.hm-row-name { width: 55%; height: 10px; border-radius: 4px; background: #d1d5db; margin-bottom: 5px; }
.hm-row-name.short { width: 38%; }
.hm-row-desc { width: 75%; height: 8px; border-radius: 4px; background: #e5e7eb; }
.hm-row-desc.short { width: 50%; }
.hm-row-actions { display: flex; gap: 6px; flex-shrink: 0; margin-left: 16px; }
/* Scan line that sweeps over the mockup */
.hm-scan-line {
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), rgba(0,159,227,.3), transparent);
  z-index: 10;
  opacity: 0.7;
  animation: hm-scan 4s ease-in-out infinite;
}
@keyframes hm-scan {
  0%   { top: 40px; opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

/* Live status indicator */
.hm-status-live {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,.1);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  animation: hm-live-pulse 2s ease-in-out infinite;
}
@keyframes hm-live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* Row entrance animation */
.hm-row--anim {
  opacity: 0;
  transform: translateX(-8px);
  animation: hm-row-enter 0.5s ease forwards, hm-row-process 8s ease-in-out infinite 0.5s;
}
@keyframes hm-row-enter {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes hm-row-process {
  0%, 100% { background: transparent; }
  15%      { background: rgba(0,159,227,.04); }
  30%      { background: transparent; }
}

/* Status badges */
.hm-badge {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hm-badge--done {
  background: rgba(16,185,129,.15);
  color: #059669;
  animation: hm-badge-pop 8s ease-in-out infinite;
}
@keyframes hm-badge-pop {
  0%, 90%, 100% { transform: scale(1); }
  95%           { transform: scale(1.2); }
}
.hm-badge--running {
  background: rgba(0,159,227,.15);
  color: var(--color-primary);
  animation: hm-badge-spin 2s linear infinite;
}
@keyframes hm-badge-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.hm-badge--wait {
  background: rgba(0,0,0,.05);
  color: #aaa;
}

/* Progress bars */
.hm-progress {
  width: 60px;
  height: 6px;
  background: #f0f0f4;
  border-radius: 3px;
  overflow: hidden;
}
.hm-progress-bar {
  height: 100%;
  border-radius: 3px;
  width: 100%;
  background: #10b981;
}
.hm-progress-bar--active {
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  animation: hm-progress-fill 4s ease-in-out infinite;
}
@keyframes hm-progress-fill {
  0%   { width: 0%; }
  60%  { width: 85%; }
  80%  { width: 100%; }
  100% { width: 100%; }
}
.hm-progress-bar--wait {
  width: 0%;
  background: #ddd;
}

/* ============================================================
   SECTION DECORATIVE AURORA BLOBS (reusable)
   ============================================================ */
.section-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section-aurora .aurora-blob {
  opacity: 0.2;
  filter: blur(80px);
}

/* ============================================================
   RIPPLE RINGS — Brand colors
   ============================================================ */
.ripple-wrap {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(600px) rotateX(55deg);
  width: 0; height: 0;
  z-index: 1;
  pointer-events: none;
}
.ripple-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 42%,
    rgba(0,159,227,.06) 44%,
    rgba(84,68,149,.14) 47%,
    rgba(230,0,126,.25) 49.5%,
    rgba(84,68,149,.14) 52%,
    rgba(0,159,227,.06) 55%,
    transparent 57%
  );
  opacity: 0;
  will-change: transform, opacity;
  animation: ripple-expand 14s ease-out infinite;
}
.ripple-ring--2 { animation-delay: 2.8s; }
.ripple-ring--3 { animation-delay: 5.6s; }
.ripple-ring--4 { animation-delay: 8.4s; }
.ripple-ring--5 { animation-delay: 11.2s; }

@keyframes ripple-expand {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* --- Feature Tagline --- */
.tagline {
  padding: var(--section-py) 0;
  background: var(--color-off-white);
  text-align: center;
}
.tagline h2 {
  font-size: var(--fs-h2);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 800;
  background: linear-gradient(90deg, #009FE3, #544495, #E6007E, #544495, #009FE3);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 6s linear infinite;
}

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

.tagline-answer {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 24px auto 0;
  background: linear-gradient(135deg, #E6007E, #544495);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* --- Automate the Ordinary --- */
.automate {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #f0f5fc 0%, #f5f7fb 60%, var(--color-white) 100%);
  text-align: center;
  overflow: hidden;
}
.automate-content { position: relative; z-index: 3; }
.automate h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  margin-bottom: 16px;
}
.automate-content > p {
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* --- Scrolling bubble marquee --- */
.bubble-marquee-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.bubble-row {
  overflow: hidden;
  white-space: nowrap;
}
.bubble-track {
  display: inline-flex;
  gap: 12px;
  animation: marquee-scroll 35s linear infinite;
}
.bubble-row--2 .bubble-track { animation-duration: 28s; animation-direction: reverse; }
.bubble-row--3 .bubble-track { animation-duration: 40s; }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bubble {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  white-space: nowrap;
}
.bubble-row--2 .bubble { background: rgba(0,159,227,.08); border-color: rgba(0,159,227,.2); color: #0070A0; }
.bubble-row--3 .bubble { background: rgba(230,0,126,.06); border-color: rgba(230,0,126,.15); color: #B0006A; }

/* --- Automate mockup --- */
.automate-mockup {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(27,43,107,.1);
  overflow: hidden;
  animation: slow-zoom 10s ease-in-out infinite alternate;
}
.automate-mockup > .hero-mockup-dots {
  position: absolute;
  top: 14px; left: 16px;
  z-index: 3;
}
.automate-mockup::before {
  content: '';
  display: block;
  height: 40px;
  background: #f5f5f8;
  border-bottom: 1px solid var(--color-border);
}
.hero-mockup-dots {
  position: absolute;
  top: 14px;
  left: 16px;
  display: flex;
  gap: 6px;
}
.hero-mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-mockup-dots span:nth-child(1) { background: #ff5f57; }
.hero-mockup-dots span:nth-child(2) { background: #febc2e; }
.hero-mockup-dots span:nth-child(3) { background: #28c840; }
.automate-mockup-body {
  display: flex;
  min-height: 340px;
}
.automate-mockup-sidebar {
  width: 180px;
  background: #fafafe;
  border-right: 1px solid var(--color-border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-sidebar-item {
  height: 14px;
  border-radius: 6px;
  background: #e5e5ea;
}
.mockup-sidebar-item.active {
  background: var(--color-primary);
  opacity: .35;
}
.automate-mockup-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mockup-row {
  height: 12px;
  border-radius: 6px;
  background: #e5e5ea;
}
.mockup-row.short { width: 60%; }
.mockup-cards {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.mockup-mini-card {
  flex: 1;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,159,227,.15), rgba(84,68,149,.1));
}

/* --- Recognise Trends / ROI --- */
.trends {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #edf5fc 0%, #f0f2fa 100%);
  overflow: hidden;
}
.trends-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.trends-text h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  margin-bottom: 20px;
}
.trends-text p {
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* Wavy SVG background */
.trends-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.trends-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Chart area */
.trends-visual { position: relative; }
.trends-chart-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px 20px;
  box-shadow: 0 12px 40px rgba(27,43,107,.08);
}
.trends-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.trends-chart-title { font-size: 1rem; font-weight: 700; }
.trends-chart-sub { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 2px; }
.trends-chart-legend { display: flex; gap: 6px; align-items: center; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.trends-bars {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 160px;
}
.trends-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.bar-stack {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
}
.bar-seg {
  width: 100%;
  border-radius: 4px;
  min-height: 4px;
}
.bar-label {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* Insight card with gradient border */
.trends-insight {
  position: relative;
  margin-top: 20px;
  background: var(--color-white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(27,43,107,.08);
  border: 1.5px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #009FE3, #544495, #E6007E);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.trends-insight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,159,227,0.1), rgba(230,0,126,0.1));
}
.trends-insight-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 500;
}

.trends-pill {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(27,43,107,.2);
}

/* --- Carousel Cards --- */
.carousel-section {
  padding: var(--section-py) 0 calc(var(--section-py) * 0.6);
  background: var(--color-off-white);
  overflow: hidden;
}
.carousel-section h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading);
  text-align: center;
  margin-bottom: 48px;
}

.carousel-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: carousel-scroll 50s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-card {
  flex-shrink: 0;
  width: 320px;
  min-height: 400px;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.carousel-card--photo {
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  color: var(--color-white);
}
.carousel-card--photo .carousel-card-body { padding: 32px 28px; }
.carousel-card--photo h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.carousel-card--photo p { font-size: 0.9375rem; line-height: 1.6; color: rgba(255,255,255,.85); }

.carousel-card--stat {
  background: var(--color-white);
  padding: 40px 32px;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.carousel-stat-value {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.carousel-stat-label { font-size: 1rem; line-height: 1.5; color: var(--color-text-light); margin-bottom: auto; }
.carousel-stat-logo { margin-top: 32px; font-size: 0.875rem; font-weight: 600; color: var(--color-text-muted); letter-spacing: 0.02em; }
.carousel-card--stat-teal .carousel-stat-value {
  background: var(--gradient-accent-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-card--quote {
  background: linear-gradient(135deg, rgba(0,159,227,.1), rgba(84,68,149,.08), rgba(230,0,126,.06));
  padding: 36px 28px;
  justify-content: space-between;
}
.carousel-card--quote blockquote { font-size: 1rem; line-height: 1.7; color: var(--color-text); margin: 0; }
.carousel-card--quote cite {
  display: block;
  margin-top: 24px;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-light);
}
.carousel-card--quote-dark { background: var(--color-dark); }
.carousel-card--quote-dark blockquote { color: rgba(255,255,255,.9); }
.carousel-card--quote-dark cite { color: rgba(255,255,255,.5); }

@media (max-width: 640px) {
  .carousel-card { width: 270px; min-height: 340px; }
  .carousel-stat-value { font-size: 3rem; }
}

/* --- Dark Section --- */
.dark-section {
  padding: var(--section-py) 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.dark-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dark-section h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); margin-bottom: 20px; }
.dark-section p { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.dark-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-card);
  padding: 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0,159,227,.15);
}
.dark-card h4 { font-size: 1.125rem; margin-bottom: 12px; color: var(--color-primary); }
.dark-card p { font-size: var(--fs-small); }
.dark-card .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.dark-card .stat-value { font-size: 2rem; font-weight: 700; color: var(--color-white); margin-bottom: 4px; }
.dark-card .stat-label { font-size: var(--fs-small); color: rgba(255,255,255,.5); }

/* --- Use-Cases --- */
.use-cases {
  padding: var(--section-py) 0;
  background: var(--color-off-white);
}
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 48px;
}
.uc-column {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.uc-column h2 { font-size: var(--fs-h3); line-height: 1.35; margin-bottom: 28px; max-width: 380px; }
.uc-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-dark);
  color: var(--color-white);
  margin-bottom: 16px;
}

.wf-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.wf-card-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.wf-card-icon--green { background: rgba(0,159,227,.12); color: #0070A0; }
.wf-card-icon--outline { background: transparent; border: 2px solid var(--color-border); color: var(--color-text-muted); }
.wf-card-title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 2px; }
.wf-card-sub { font-size: 0.8125rem; color: var(--color-text-muted); }
.wf-tag-row { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.wf-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--color-off-white);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
}

.recruit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  margin-bottom: 16px;
}
.recruit-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
}
.recruit-info { flex: 1; }
.recruit-name { font-size: 1rem; font-weight: 700; }
.recruit-role { font-size: 0.8125rem; color: var(--color-text-muted); }
.recruit-status {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0,159,227,.12);
  color: #0070A0;
}
.recruit-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.uc-testimonial {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.uc-testimonial .uc-badge { margin-bottom: 12px; }
.uc-testimonial blockquote { font-size: 1.0625rem; line-height: 1.7; margin: 0 0 16px; color: var(--color-text); max-width: 700px; }
.uc-testimonial cite { font-style: normal; font-size: 0.8125rem; font-weight: 600; color: var(--color-text-muted); }

/* --- Case Timeline (Procamed) --- */
.case-timeline {
  padding: var(--section-py) 0;
  background: var(--color-off-white);
}
.case-timeline h2 { font-size: var(--fs-h2); margin-bottom: 12px; }
.timeline-intro {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.6;
}
.case-timeline .uc-badge { margin-bottom: 16px; display: inline-block; }

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-purple), var(--color-accent));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s ease;
}
.timeline.tl-active::before {
  transform: scaleY(1);
}
.timeline-step {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-icon {
  position: absolute;
  left: -48px;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,159,227,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step.visible .timeline-icon {
  animation: tl-pulse 2s ease-in-out 0.6s;
}
@keyframes tl-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.timeline-step:nth-child(3) .timeline-icon,
.timeline-step:nth-child(4) .timeline-icon { border-color: var(--color-purple); box-shadow: 0 2px 8px rgba(84,68,149,0.15); }
.timeline-step:nth-child(5) .timeline-icon,
.timeline-step:nth-child(6) .timeline-icon { border-color: var(--color-accent); box-shadow: 0 2px 8px rgba(230,0,126,0.15); }

.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  flex: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}
.timeline-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.timeline-step:nth-child(3) .timeline-label,
.timeline-step:nth-child(4) .timeline-label { color: var(--color-purple); }
.timeline-step:nth-child(5) .timeline-label,
.timeline-step:nth-child(6) .timeline-label { color: var(--color-accent); }

.timeline-actor {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-off-white);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.timeline-result {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--color-border);
}
.timeline-result-stat { text-align: center; }
.timeline-result-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.timeline-result-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .timeline { padding-left: 40px; }
  .timeline-icon { left: -40px; width: 30px; height: 30px; font-size: 0.85rem; }
  .timeline-result { flex-direction: column; gap: 24px; align-items: center; }
}

/* --- Product Highlight --- */
.product-highlight {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, #edf2fa 0%, #f0f5fc 100%);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
}
.product-highlight .container { text-align: center; position: relative; z-index: 2; }
.product-highlight h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); margin-bottom: 16px; }
.product-highlight > .container > p { color: var(--color-text-light); max-width: 600px; margin: 0 auto 48px; }
.product-screenshot {
  border: 1px solid rgba(27,43,107,.08);
  border-radius: var(--radius-card);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,43,107,.1);
}
.product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  animation: slow-zoom 8s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* --- Social Proof --- */
.social-proof {
  padding: var(--section-py) 0;
  background: var(--color-white);
  text-align: center;
}
.social-proof h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); margin-bottom: 48px; }
/* Logo ticker (scrolling) */
.logo-ticker {
  overflow: hidden;
  margin-bottom: 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-ticker:hover .logo-ticker-track {
  animation-play-state: paused;
}

.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.logo-client {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  flex-shrink: 0;
}
.logo-client img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}
.logo-client:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-client--text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.45;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.logo-client--text:hover {
  opacity: 1;
}
.logo-placeholder {
  width: 120px;
  height: 48px;
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: 500;
}
.industry-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}
.industry-badge {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
  color: #544495;
  background: rgba(84,68,149,0.1);
  border: 1px solid rgba(84,68,149,0.15);
  white-space: nowrap;
}
.industry-badge:nth-child(1) { background: rgba(0,159,227,0.1); color: #0080B8; border-color: rgba(0,159,227,0.2); }
.industry-badge:nth-child(2) { background: rgba(27,43,107,0.08); color: #1B2B6B; border-color: rgba(27,43,107,0.15); }
.industry-badge:nth-child(3) { background: rgba(84,68,149,0.1); color: #544495; border-color: rgba(84,68,149,0.18); }
.industry-badge:nth-child(4) { background: rgba(230,0,126,0.08); color: #C00068; border-color: rgba(230,0,126,0.15); }
.industry-badge:nth-child(5) { background: rgba(0,159,227,0.08); color: #0080B8; border-color: rgba(0,159,227,0.15); }
.industry-badge:nth-child(6) { background: rgba(27,43,107,0.1); color: #1B2B6B; border-color: rgba(27,43,107,0.18); }

/* --- 3 Steps Section --- */
.steps-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
  text-align: center;
}
.steps-section h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); margin-bottom: 12px; }
.steps-sub { color: var(--color-text-light); margin-bottom: 48px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.step-card {
  background: var(--color-off-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--color-text); }
.step-card p { font-size: var(--fs-small); color: var(--color-text-light); line-height: 1.6; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* --- FAQ Section --- */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--color-off-white);
}
.faq-section h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); margin-bottom: 48px; text-align: center; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.faq-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--color-text); }
.faq-item p { font-size: var(--fs-small); color: var(--color-text-light); line-height: 1.6; }
@media (max-width: 640px) { .faq-grid { grid-template-columns: 1fr; } }

/* --- Booking / Calendly --- */
.booking {
  padding: var(--section-py) 0;
  background: var(--color-off-white);
  text-align: center;
}
.booking h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); margin-bottom: 16px; }
.booking > .container > p { color: var(--color-text-light); max-width: 560px; margin: 0 auto 40px; }

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 40px;
}
.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: var(--fs-small);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-brand img { height: 32px; width: auto; }
.footer-logo-animated {
  width: 70px;
  height: 38px;
  background: linear-gradient(135deg, #66D4FF, #a78bfa, #ff6eb4, #a78bfa, #66D4FF);
  background-size: 300% 300%;
  animation: nav-logo-gradient 8s ease infinite;
  -webkit-mask-image: url('../img/logo_lad_freigestellt.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../img/logo_lad_freigestellt.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.footer-col h4 {
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.5);
}
.footer-col a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-small);
  color: rgba(255,255,255,.4);
  grid-column: 1 / -1;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 var(--container-px) 24px;
  display: flex;
  justify-content: center;
  animation: cookie-slide-up 0.4s ease;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  max-width: 720px;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: 0 -4px 40px rgba(27,43,107,.12), 0 0 0 1px rgba(27,43,107,.06);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.cookie-accept {
  padding: 10px 20px;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .hero-columns,
  .trends-inner,
  .dark-section .container,
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer .container { grid-template-columns: 1fr 1fr; }
  .automate-mockup-sidebar { width: 120px; }
  .automate-mockup-body { min-height: 260px; }
  .hero-text { max-width: 100%; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-white);
    padding: 24px var(--container-px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    gap: 16px;
  }

  .hero-columns { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-text {
    max-width: 100%;
    padding: 0 var(--container-px);
  }
  .hero-visual { width: 240px; height: 180px; }
  .hero-logo { max-width: 180px; }
  .hero-mockup { min-height: 260px; }

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

  .logo-grid { gap: 24px; }
  .logo-placeholder { width: 100px; height: 40px; }
}
