/* ══════════════════════════════════════════
   SyncraOS.io — Stylesheet
   Desktop only · Inter font
══════════════════════════════════════════ */

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

:root {
  --font-sans: 'Inter', sans-serif;

  --blue-primary:   #2563EB;
  --blue-bright:    #3B82F6;
  --blue-light:     #60A5FA;
  --blue-sky:       #93C5FD;
  --cyan-sync:      #06B6D4;
  --cyan-speed:     #22D3EE;
  --indigo-deep:    #4F46E5;
  --indigo-soft:    #818CF8;
  --bg-void:        #020818;
  --bg-deep:        #050F24;
  --bg-navy:        #0A1628;
  --bg-raised:      #0F2040;
  --white:          #FFFFFF;
  --slate-300:      #CBD5E1;
  --muted:          #64748B;
  --border-blue:    #1E3A5F;

  --radius-sm:   8px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;

  --gradient-core:  linear-gradient(90deg, #2563EB, #22D3EE);
  --gradient-hero:  linear-gradient(90deg, #2563EB, #4F46E5, #22D3EE);
  --gradient-text:  linear-gradient(135deg, #60A5FA 0%, #3B82F6 35%, #06B6D4 65%, #22D3EE 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-void);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 56px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(2, 8, 24, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.4);
  transition: background 0.3s, border-color 0.3s;
}

.header.scrolled {
  background: rgba(2, 8, 24, 0.94);
  border-bottom-color: var(--border-blue);
}

.nav {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Logo slot */
.nav-logo-slot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 40px;
}

.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 36px;
  flex: 1;
}

.nav-links a {
  color: rgba(203, 213, 225, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.15px;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-login {
  color: rgba(203, 213, 225, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--white); }

.btn-nav-cta {
  background: var(--blue-primary);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 rgba(37,99,235,0);
}
.btn-nav-cta:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}

/* ══════════════════════════════════════════
   HERO — voller Bildschirm, dominant
══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 68px;
  background: var(--bg-void);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Ambient blobs — satter und größer ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
}

.hero-blob-1 {
  width: 900px;
  height: 800px;
  top: -180px;
  left: -280px;
  background: radial-gradient(circle, #2563EB 0%, transparent 65%);
  opacity: 0.22;
}

.hero-blob-2 {
  width: 700px;
  height: 700px;
  top: 80px;
  right: -180px;
  background: radial-gradient(circle, #4F46E5 0%, transparent 65%);
  opacity: 0.16;
}

.hero-blob-3 {
  width: 500px;
  height: 400px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #06B6D4 0%, transparent 65%);
  opacity: 0.09;
}

/* ── Hero Text Content ── */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  padding: 48px 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ── Pre-Headline ── */
.pre-headline-wrap {
  display: inline-flex;
}

.pre-headline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  color: var(--blue-sky);
  padding: 9px 20px 9px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.10);
  animation: borderPulse 2.8s ease-in-out infinite;
}

.pre-text-short { display: none; }
.pre-text-long { display: inline; }

.pre-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(96, 165, 250, 0.9);
  animation: dotPulse 2.8s ease-in-out infinite;
}

@keyframes borderPulse {
  0%   { border-color: rgba(37, 99, 235, 0.10); box-shadow: 0 0 0px rgba(37, 99, 235, 0); }
  50%  { border-color: rgba(37, 99, 235, 0.30); box-shadow: 0 0 22px rgba(37, 99, 235, 0.13); }
  100% { border-color: rgba(37, 99, 235, 0.10); box-shadow: 0 0 0px rgba(37, 99, 235, 0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.9); }
  50%       { opacity: 1;    transform: scale(1.2); }
}

/* ── Headline — Einblend-Animation ── */
.headline {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes heroReveal {
  0%   { opacity: 0; transform: translateY(40px) scale(0.97); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Staggered reveal für restliche Hero-Elemente */
.pre-headline-wrap {
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards;
}

/* ── Gradient text — statisch, elektrisch ── */
.headline-gradient {
  background: linear-gradient(
    115deg,
    #60A5FA  0%,
    #38BDF8 28%,
    #22D3EE 55%,
    #818CF8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subheadline ── */
.subheadline {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: -0.15px;
  color: rgba(203, 213, 225, 0.78);
  max-width: 800px;
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* ── CTA Row ── */
.cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 6px;
  opacity: 0;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #1E3A8A 0%, #3730A3 45%, #4338CA 55%, #1E3A8A 100%);
  background-size: 200% 200%;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding: 15px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 210, 254, 0.22);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 6px 20px rgba(30, 58, 138, 0.45),
    0 0 40px rgba(99, 102, 241, 0.22);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              background-position 0.8s ease,
              border-color 0.3s ease;
  animation: btnGradientShift 9s ease-in-out infinite;
}

.btn-cta > * {
  position: relative;
  z-index: 2;
}

/* Shine Sweep — dezenter, edler */
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.0) 30%,
    rgba(226, 232, 240, 0.22) 50%,
    rgba(255, 255, 255, 0.0) 70%,
    transparent 100%
  );
  transform: skewX(-22deg);
  z-index: 1;
  pointer-events: none;
  animation: btnShine 6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* Outer refined glow */
.btn-cta::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.18) 50%, rgba(129, 140, 248, 0.35));
  z-index: -1;
  opacity: 0.45;
  filter: blur(10px);
  animation: btnGlowPulse 5s ease-in-out infinite;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background-position: 100% 100%;
  border-color: rgba(199, 210, 254, 0.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 12px 32px rgba(30, 58, 138, 0.6),
    0 0 60px rgba(99, 102, 241, 0.4);
}
.btn-cta:active { transform: translateY(0); }

.btn-arrow { flex-shrink: 0; transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); }
.btn-cta:hover .btn-arrow { transform: translateX(5px); }

@keyframes btnShine {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes btnGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes btnGlowPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.7; }
}

/* ── Desktop-only: größerer CTA ── */
@media (min-width: 961px) {
  .btn-cta { font-size: 17px; padding: 18px 34px; }
}

.cta-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.1px;
}

.hint-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: hintPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(34, 197, 94, 0.5); }
  50%       { box-shadow: 0 0 14px rgba(34, 197, 94, 0.95); }
}

/* ══════════════════════════════════════════
   LOTTIE — Background Animation
══════════════════════════════════════════ */

.lottie-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0;
  margin-top: 0;
}

.lottie-area {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#lottieAnim,
#lottieAnim svg,
#lottieAnim canvas {
  background: transparent !important;
  -webkit-tap-highlight-color: transparent;
}

/* ══════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════ */

.features {
  background: var(--bg-void);
  padding: 100px 56px;
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.features-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-sync);
}

.features-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.08;
  color: var(--white);
}

/* ── Tab Pills ── */
.feat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.feat-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(30, 58, 95, 0.6);
  color: rgba(203, 213, 225, 0.65);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.feat-tab:hover {
  color: var(--white);
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.08);
}

.feat-tab.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
}

/* ── Panels ── */
.feat-panels {
  position: relative;
}

.feat-panel {
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.feat-panel.active {
  display: grid;
  animation: panelIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Feature Text ── */
.feat-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feat-text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--white);
}

.feat-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.75);
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.feat-list li {
  font-size: 14px;
  font-weight: 500;
  color: rgba(203, 213, 225, 0.8);
  padding-left: 20px;
  position: relative;
}

.feat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-sync);
}

/* ── Video Area ── */
.feat-video-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.6);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.08);
  background: var(--bg-navy);
  aspect-ratio: 16/10;
}

.feat-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feat-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(203, 213, 225, 0.3);
  font-size: 14px;
  min-height: 320px;
}

.feat-video-icon {
  font-size: 36px;
  opacity: 0.3;
}

/* ── Hidden until ready ── */
.hidden-until-ready {
  display: none !important;
}

/* ── Secondary CTA ── */
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  padding: 15px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   MORE FEATURES — Fliegende Badges
══════════════════════════════════════════ */

.more-feats {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.more-feats-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.25;
  color: var(--white);
  text-align: center;
  max-width: 900px;
}

.more-feats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1100px;
}

.more-feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30, 58, 95, 0.6);
  color: rgba(203, 213, 225, 0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  will-change: transform, opacity;
}

.more-feat-card:hover {
  border-color: rgba(37, 99, 235, 0.5);
  background: rgba(37, 99, 235, 0.08);
  color: var(--white);
  transform: translateY(-2px);
}

.more-feat-card.fly-in {
  animation: flyIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes flyIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Features CTA ── */
.features-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   FOUNDER MESSAGE
══════════════════════════════════════════ */

.founder {
  background: var(--bg-void);
  padding: 100px 56px;
  position: relative;
  overflow: hidden;
}

.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Text column ── */
.founder-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-sky);
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  text-transform: uppercase;
}

.founder-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2.2px;
  line-height: 1.08;
  color: var(--white);
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  max-width: 680px;
}

.founder-body p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(203, 213, 225, 0.82);
}

.founder-body strong {
  color: var(--white);
  font-weight: 600;
}

.founder-close {
  padding-top: 8px;
  border-top: 1px solid rgba(30, 58, 95, 0.4);
  margin-top: 4px;
}

/* ── Signature ── */
.founder-sign {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}

.founder-signature-img {
  max-width: 200px;
  max-height: 70px;
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 4px;
  filter: brightness(0) invert(1) opacity(0.92);
}

.founder-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(30, 58, 95, 0.4);
}

.founder-meta strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

.founder-meta span {
  font-size: 13px;
  color: rgba(203, 213, 225, 0.55);
  letter-spacing: 0.02em;
}

/* ── Photo column ── */
.founder-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
}

.founder-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(34, 211, 238, 0.15) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: founderGlowPulse 6s ease-in-out infinite;
}

@keyframes founderGlowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.08); opacity: 1; }
}

.founder-photo {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 800px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* ══════════════════════════════════════════
   CASE STUDY — Reale Ergebnisse
══════════════════════════════════════════ */

.case {
  background: var(--bg-void);
  padding: 100px 56px 60px;
  position: relative;
  overflow: hidden;
}

.case-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.case-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.case-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-sky);
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  text-transform: uppercase;
}

.case-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -2.6px;
  line-height: 1.05;
  color: var(--white);
  max-width: 1100px;
}

/* ── Stats Row ── */
.case-stats {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(30, 58, 95, 0.5);
}

.case-stat-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--white);
  line-height: 1.1;
}

.case-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(203, 213, 225, 0.55);
}

.case-stat-highlight {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.15) 0%, rgba(34, 211, 238, 0.06) 100%);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.18);
}

.case-stat-highlight .case-stat-num {
  background: linear-gradient(115deg, #60A5FA 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-stat-highlight .case-stat-label {
  color: var(--blue-sky);
}

/* ── Case Grid ── */
.case-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.case-card {
  background: rgba(10, 22, 40, 0.5);
  border: 1px solid rgba(30, 58, 95, 0.5);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.case-after {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.1);
}

.case-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-sync), transparent);
}

.case-card-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(30, 58, 95, 0.6);
  color: rgba(203, 213, 225, 0.75);
}

.case-after .case-card-tag {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
  color: var(--blue-sky);
}

.case-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.5);
}

.case-card-number {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.case-num-before {
  color: rgba(203, 213, 225, 0.45);
}

.case-num-after {
  background: linear-gradient(115deg, #60A5FA 0%, #22D3EE 60%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-card-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.case-card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

.case-image-fallback {
  display: none;
  text-align: center;
  color: rgba(30, 58, 95, 0.5);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.case-image-fallback span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
}

.case-card-image.placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(30, 58, 95, 0.6);
}

.case-card-image.placeholder .case-image-fallback {
  display: block;
  color: rgba(203, 213, 225, 0.4);
}

.case-card-sub {
  font-size: 13px;
  font-weight: 500;
  color: rgba(203, 213, 225, 0.55);
}

.case-sub-after {
  color: #4ADE80;
}

.case-card-total {
  text-align: center;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-top: 4px;
}

.case-total-before {
  background: rgba(255,255,255,0.04);
  color: rgba(203, 213, 225, 0.6);
  border: 1px solid rgba(30, 58, 95, 0.6);
}

.case-total-after {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

/* ── Arrow middle ── */
.case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-arrow-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1.5px solid rgba(37, 99, 235, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  animation: caseArrowPulse 2s ease-in-out infinite;
}

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

/* ── Callout ── */
.case-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(30, 58, 95, 0.5);
  border-radius: var(--radius-lg);
}

.case-callout > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-callout strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

.case-callout span:not(.hint-dot) {
  font-size: 14px;
  color: rgba(203, 213, 225, 0.65);
}

/* ══════════════════════════════════════════
   VS — Ohne uns vs Mit uns
══════════════════════════════════════════ */

.vs-section {
  background: var(--bg-void);
  padding: 100px 56px;
}

.vs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.vs-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.vs-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-sky);
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  text-transform: uppercase;
}

.vs-title {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2.4px;
  line-height: 1.1;
  color: var(--white);
}

.vs-title-red {
  color: rgba(248, 113, 113, 0.75);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(248, 113, 113, 0.5);
}

.vs-title-divider {
  color: rgba(203, 213, 225, 0.45);
  font-weight: 600;
  letter-spacing: -0.5px;
  padding: 0 6px;
}

/* ── Grid ── */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vs-col {
  padding: 36px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.vs-col-pain {
  background: rgba(239, 68, 68, 0.025);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.vs-col-gain {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.07) 0%, rgba(10, 22, 40, 0.6) 100%);
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.12);
}

.vs-col-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vs-col-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.vs-col-tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.vs-tag-red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #F87171;
}

.vs-tag-blue {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--blue-sky);
}

.vs-col h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.2;
  color: var(--white);
}

.vs-col-head p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.65);
}

/* ── Timeline (Ohne uns) ── */
.vs-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.vs-step {
  display: flex;
  gap: 16px;
  position: relative;
}

.vs-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.1));
}

.vs-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #F87171;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-step-num-final {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.45);
  font-size: 14px;
}

.vs-step-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}

.vs-step-body strong {
  font-size: 13px;
  font-weight: 700;
  color: #F87171;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vs-step-body span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.72);
}

.vs-step-final .vs-step-body strong {
  color: #EF4444;
  font-size: 14px;
}

/* ── List (Mit uns) ── */
.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.vs-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vs-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan-speed);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.vs-list li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.vs-list strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

.vs-list span {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.72);
}

.vs-final-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 10px 18px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* ══════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
══════════════════════════════════════════ */

.legal {
  background: var(--bg-void);
  padding: 140px 56px 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(203, 213, 225, 0.85);
  font-size: 15px;
  line-height: 1.75;
}

.legal-inner h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2.2px;
  color: var(--white);
  margin-bottom: 16px;
}

.legal-inner .legal-lead {
  font-size: 16px;
  color: rgba(203, 213, 225, 0.6);
  margin-bottom: 40px;
}

.legal-inner h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-inner p { margin-bottom: 14px; }

.legal-inner strong { color: var(--white); font-weight: 600; }

.legal-inner a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-inner a:hover { color: var(--cyan-speed); }

.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-inner ul li {
  margin-bottom: 6px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.7);
  text-decoration: none;
  margin-bottom: 32px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 95, 0.6);
  transition: all 0.2s;
}
.legal-back:hover {
  color: var(--white);
  border-color: rgba(37, 99, 235, 0.5);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.footer {
  background: var(--bg-deep);
  padding: 72px 56px 32px;
  border-top: 1px solid rgba(30, 58, 95, 0.4);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.6);
  max-width: 320px;
}

/* Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.5);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(203, 213, 225, 0.75);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: -0.1px;
}

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

/* CTA column */
.footer-cta-col {
  gap: 16px;
}

.footer-btn-cta {
  align-self: flex-start;
}

.footer-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(30, 58, 95, 0.4);
  font-size: 12px;
  color: rgba(203, 213, 225, 0.45);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   COMPARISON SECTION — Tool Chaos vs SyncraOS
══════════════════════════════════════════ */

.comparison {
  background: var(--bg-void);
  padding: 40px 56px 100px;
  position: relative;
  overflow: hidden;
}

.comparison-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* ── Headline ── */
.comparison-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-sky);
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  text-transform: uppercase;
}

.comparison-title {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -2.8px;
  line-height: 1.05;
  color: var(--white);
  max-width: 1000px;
}

.comparison-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.75);
  max-width: 720px;
}

/* ── Price Row ── */
.price-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  gap: 48px;
}

.price-pill {
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.price-red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #F87171;
}

.price-green {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ADE80;
}

/* ── Main comparison layout ── */
.comparison-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
  align-items: center;
}

/* ── Tools Stack (left) ── */
.tools-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 4s ease, filter 4s ease;
}

.tools-stack.dimmed {
  opacity: 0.2;
  filter: grayscale(0.8);
}

.tool-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30, 58, 95, 0.6);
  border-left: 3px solid var(--accent, var(--blue-bright));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-80px);
  will-change: transform, opacity;
  max-width: 280px;
}

.tool-card.fly-in {
  animation: toolFlyIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toolFlyIn {
  from { opacity: 0; transform: translateX(-80px) rotate(-3deg); }
  to   { opacity: 1; transform: translateX(0) rotate(0); }
}

/* Staggered offset for organic look */
.tool-card[data-tool="1"] { margin-left: 20px; }
.tool-card[data-tool="2"] { margin-left: 60px; }
.tool-card[data-tool="3"] { margin-left: 0px; }
.tool-card[data-tool="4"] { margin-left: 40px; }
.tool-card[data-tool="5"] { margin-left: 10px; }
.tool-card[data-tool="6"] { margin-left: 50px; }
.tool-card[data-tool="7"] { margin-left: 0px; }
.tool-card[data-tool="8"] { margin-left: 35px; }

/* ── Alles Weg (middle) ── */
.alles-weg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.5s ease 1.2s;
}

.alles-weg.show { opacity: 1; }

.alles-weg-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 99, 235, 0.6);
  background: rgba(37, 99, 235, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}

.alles-weg span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-sky);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.05);
}

/* ── SyncraOS Card (right) ── */
.syncra-card {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.04) 0%, rgba(10, 22, 40, 0.6) 100%);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  position: relative;
  box-shadow: 0 0 80px rgba(37, 99, 235, 0.12);
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

.syncra-card.reveal {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.syncra-card-top {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-sync), transparent);
}

.syncra-card-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--white);
  text-align: center;
}

.syncra-card-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(203, 213, 225, 0.5);
  text-align: center;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 24px;
}

.syncra-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.syncra-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.syncra-card-price {
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--blue-primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

/* ── Bottom line ── */
.comparison-bottom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(30, 58, 95, 0.6);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — bis 320px
══════════════════════════════════════════ */

/* ── Tablet / small desktop (≤960px) ── */
@media (max-width: 960px) {
  .header { padding: 0 20px; height: 60px; }
  .nav { justify-content: space-between; }
  .nav-links { display: none; }
  .nav-login { display: none; }
  .btn-nav-cta { padding: 8px 14px; font-size: 12px; margin-left: auto; }
  .nav-logo-slot, .nav-logo-img { height: 34px; width: 34px; }

  .hero { padding-top: 60px; }
  .hero-inner { padding: 32px 20px 20px; gap: 16px; }
  .headline { font-size: 44px; letter-spacing: -1.8px; }
  .subheadline { font-size: 15px; }
  .pre-headline { font-size: 13px; padding: 8px 16px 8px 12px; }
  .lottie-wrap { max-width: 100%; }
  .lottie-area { height: 240px; }

  .cta-row { flex-direction: column; gap: 14px; }

  .features { padding: 60px 20px; }
  .features-title { font-size: 32px; letter-spacing: -1.4px; }
  .feat-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .feat-tab {
    width: 100%;
    font-size: 13px;
    padding: 10px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  .feat-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .feat-text h3 { font-size: 22px; }
  .feat-text p { font-size: 15px; }

  .more-feats { margin-top: 56px; gap: 28px; }
  .more-feats-title { font-size: 24px; letter-spacing: -1px; }
  .more-feat-card { font-size: 13px; padding: 10px 16px; }

  .comparison { padding: 32px 20px 72px; }
  .comparison-title { font-size: 38px; letter-spacing: -1.6px; }
  .comparison-sub { font-size: 15px; }
  .price-row { flex-direction: column; gap: 12px; max-width: 100%; }
  .price-pill { text-align: center; font-size: 17px; padding: 12px 20px; }
  .comparison-main { grid-template-columns: 1fr; gap: 32px; }
  .alles-weg { flex-direction: row; gap: 14px; }
  .tool-card { max-width: 100%; margin-left: 0 !important; }

  .syncra-card { padding: 24px; }
  .syncra-card-title { font-size: 22px; }
  .syncra-card-list li { font-size: 14px; }

  .case { padding: 60px 20px 40px; }
  .case-head { align-items: center; text-align: center; }
  .case-title { font-size: 32px; letter-spacing: -1.3px; }
  .case-stats { gap: 10px; justify-content: center; }
  .case-stat { padding: 12px 18px; flex: 1 1 30%; min-width: 0; align-items: center; }
  .case-stat-num { font-size: 20px; }
  .case-stat-label { font-size: 11px; }
  .case-grid { grid-template-columns: 1fr; gap: 20px; }
  .case-arrow { transform: rotate(90deg); }
  .case-card { padding: 20px; }
  .case-card-number { font-size: 40px; }

  .case-callout { padding: 16px 20px; }
  .case-callout strong { font-size: 14px; }
  .case-callout span:not(.hint-dot) { font-size: 13px; }

  .founder { padding: 60px 20px; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-title { font-size: 34px; letter-spacing: -1.4px; }
  .founder-body p { font-size: 15px; }
  .founder-photo-wrap { min-height: auto; order: -1; }
  .founder-photo { max-height: 420px; }
  .founder-glow { width: 340px; height: 340px; }

  .vs-section { padding: 60px 20px; }
  .vs-title { font-size: 36px; letter-spacing: -1.4px; }
  .vs-grid { grid-template-columns: 1fr; gap: 20px; }
  .vs-col { padding: 24px; }
  .vs-col h3 { font-size: 22px; }
  .vs-step-body span { font-size: 13px; }
  .vs-list span { font-size: 13px; }

  .footer { padding: 56px 20px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; text-align: left; }

  .legal { padding: 100px 20px 60px; }
  .legal-inner h1 { font-size: 34px; letter-spacing: -1.4px; }
  .legal-inner h2 { font-size: 19px; margin-top: 30px; }
}

/* ── Mobile (≤640px): nur Typo-Scaling, Layout bleibt wie 540px ── */
@media (max-width: 640px) {
  .btn-cta { font-size: 14px; padding: 13px 22px; width: 100%; justify-content: center; }
  .btn-cta-secondary { font-size: 14px; padding: 13px 20px; width: 100%; justify-content: center; }
  .cta-hint { font-size: 13px; }

  .case-stats { flex-direction: row; }
  .case-stat { flex: 1 1 auto; padding: 10px 12px; }
  .case-stat-num { font-size: 18px; }
  .case-stat-label { font-size: 10px; }

  .features-cta { flex-direction: column; margin-top: 20px; }
  .features-cta .btn-cta,
  .features-cta .btn-cta-secondary { width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-tagline { font-size: 13px; }

  .founder-signature-img { max-width: 160px; max-height: 60px; }
}

/* ── Small mobile (≤480px): Typo weiter runter ── */
@media (max-width: 480px) {
  .hero-inner { padding: 28px 18px 18px; gap: 14px; }

  /* Alle Pre-Headlines / Labels einheitlich — kleiner & enger */
  .pre-headline,
  .features-label,
  .comparison-label,
  .case-label,
  .founder-label,
  .vs-label { font-size: 11px; padding: 7px 14px 7px 10px; gap: 7px; letter-spacing: -0.01em; white-space: nowrap; }
  .pre-dot { width: 5px; height: 5px; }

  /* Pre-Headline: Kurze Version auf Mobile */
  .pre-text-long { display: none; }
  .pre-text-short { display: inline; }

  /* Alle Headlines einheitlich auf 24px */
  .headline,
  .features-title,
  .comparison-title,
  .case-title,
  .founder-title,
  .vs-title { font-size: 24px; letter-spacing: -1px; line-height: 1.1; }

  /* Case-Title etwas kleiner damit sauber 3 Zeilen entstehen */
  .case-title { font-size: 18px; letter-spacing: -0.6px; line-height: 1.25; }
  .case-head { gap: 24px; }

  .subheadline { font-size: 13px; line-height: 1.6; }

  .feat-text h3 { font-size: 18px; letter-spacing: -0.6px; }
  .feat-text p { font-size: 13px; line-height: 1.6; }
  .feat-list li { font-size: 12px; }
  .feat-tab { font-size: 12px; padding: 9px 10px; }

  .more-feats { padding: 0 8px; gap: 20px; margin-top: 48px; }
  .more-feats-title { font-size: 18px; letter-spacing: -0.7px; padding: 0 4px; }
  .more-feats-grid { gap: 6px; }
  .more-feat-card { font-size: 11px; padding: 6px 12px; border-radius: 999px; }

  .comparison-sub { font-size: 13px; }

  /* Mobile: nur 800 € zeigen, das grüne 165 € ist schon in der SyncraOS-Card */
  .price-row .price-green { display: none; }
  .price-row { max-width: 100%; }
  .price-row .price-red { width: 100%; text-align: center; }
  .price-pill { font-size: 14px; padding: 10px 16px; }
  .tool-card { font-size: 13px; padding: 11px 16px; }
  .syncra-card { padding: 20px; }
  .syncra-card-title { font-size: 19px; }
  .syncra-card-list li { font-size: 13px; gap: 10px; }
  .syncra-card-price { font-size: 13px; padding: 11px 16px; }

  .case-card { padding: 18px; }
  .case-card-number { font-size: 28px; letter-spacing: -1px; }
  .case-card-tag { font-size: 10px; padding: 5px 10px; }
  .case-card-sub { font-size: 12px; }
  .case-card-total { font-size: 13px; padding: 10px 14px; }
  .case-stat-num { font-size: 16px; }
  .case-stat-label { font-size: 9px; letter-spacing: 0; }
  .case-callout { padding: 14px 16px; }
  .case-callout strong { font-size: 13px; }
  .case-callout span:not(.hint-dot) { font-size: 12px; }

  .founder-body p { font-size: 13px; line-height: 1.65; }
  .founder-meta strong { font-size: 14px; }
  .founder-meta span { font-size: 12px; }

  .vs-col { padding: 20px; }
  .vs-col h3 { font-size: 17px; }
  .vs-col-head p { font-size: 13px; }
  .vs-step-num { width: 30px; height: 30px; font-size: 12px; }
  .vs-step-body strong { font-size: 11px; }
  .vs-step-body span { font-size: 12px; line-height: 1.5; }
  .vs-check { width: 24px; height: 24px; }
  .vs-list strong { font-size: 13px; }
  .vs-list span { font-size: 12px; line-height: 1.5; }

  .footer { padding: 48px 18px 20px; }
  .footer-col-title { font-size: 11px; }
  .footer-col a { font-size: 13px; }
  .footer-bottom { font-size: 10px; gap: 6px; }

  .legal { padding: 88px 18px 48px; }
  .legal-inner h1 { font-size: 26px; letter-spacing: -1px; }
  .legal-inner h2 { font-size: 16px; margin-top: 26px; }
  .legal-inner, .legal-inner p, .legal-inner ul { font-size: 13px; line-height: 1.7; }
}

/* ── Ultra-small (≤360px): iPhone SE & 320px ── */
@media (max-width: 360px) {
  .header { padding: 0 12px; }
  .hero-inner { padding: 22px 14px 14px; gap: 12px; }

  /* Alle Pre-Headlines / Labels einheitlich auf 10px */
  .pre-headline,
  .features-label,
  .comparison-label,
  .case-label,
  .founder-label,
  .vs-label { font-size: 10px; padding: 6px 12px 6px 9px; gap: 6px; letter-spacing: 0; }

  /* Alle Headlines einheitlich auf 20px */
  .headline,
  .features-title,
  .comparison-title,
  .case-title,
  .founder-title,
  .vs-title { font-size: 20px; letter-spacing: -0.8px; line-height: 1.12; }

  .case-title { font-size: 14px; letter-spacing: -0.3px; line-height: 1.3; }

  .subheadline { font-size: 12px; }

  .feat-text h3 { font-size: 16px; }
  .feat-text p { font-size: 12px; }
  .feat-tab { font-size: 11px; padding: 8px 8px; }

  .price-pill { font-size: 13px; padding: 9px 14px; }
  .syncra-card-title { font-size: 17px; }

  .case-card { padding: 14px; }
  .case-card-number { font-size: 24px; }
  .case-stat { padding: 8px 10px; }
  .case-stat-num { font-size: 14px; }
  .case-stat-label { font-size: 8px; }

  .founder-body p { font-size: 12px; }

  .vs-col { padding: 16px; }
  .vs-col h3 { font-size: 15px; }

  .features { padding: 40px 12px; }
  .comparison { padding: 20px 12px 48px; }
  .case { padding: 40px 12px 28px; }
  .founder { padding: 40px 12px; }
  .vs-section { padding: 40px 12px; }
  .footer { padding: 40px 12px 16px; }
  .legal { padding: 80px 12px 40px; }
}
