/* =============================================
   EVO MEDICA – Premium Design System
   ============================================= */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---- DESIGN TOKENS ---- */
:root {
  --blue: #0EA5E9;
  --blue-dark: #0284C7;
  --blue-light: #E0F2FE;
  --teal: #14B8A6;
  --teal-dark: #0D9488;
  --teal-light: #CCFBF1;
  --lime: #84CC16;
  --lime-light: #ECFCCB;
  --purple: #8B5CF6;
  --purple-light: #EDE9FE;
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-400: #94A3B8;
  --slate-600: #475569;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --grad-main: linear-gradient(135deg, #0EA5E9 0%, #14B8A6 100%);
  --grad-hero: linear-gradient(135deg, #0EA5E9 0%, #8B5CF6 100%);
  --grad-text: linear-gradient(135deg, #0EA5E9, #14B8A6);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(14, 165, 233, .15);
  --shadow-xl: 0 24px 60px rgba(14, 165, 233, .2);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

/* ---- TYPOGRAPHY HELPERS ---- */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
}

.gradient-text-white {
  background: linear-gradient(135deg, #fff 0%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.1em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.btn-pulse {
  animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(14, 165, 233, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

.btn-outline {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  color: var(--slate-800);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.btn-outline:hover {
  background: white;
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.btn-white {
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Premium Grain Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

/* ---- SECTION SHARED ---- */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--slate-900);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--slate-900);
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 48px !important;
  min-width: 80px;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 500;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.logo-text strong {
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-link {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--grad-main);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  border-bottom: 0px solid transparent;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: max-height .4s ease, padding .4s ease, opacity .4s ease, visibility .4s ease;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--slate-200);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--slate-800);
  transition: var(--transition);
}

.mobile-link:hover {
  background: var(--slate-100);
  color: var(--blue);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(at 0% 0%, rgba(14, 165, 233, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(20, 184, 166, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(52, 211, 153, 0.1) 0px, transparent 50%),
    #f8fafc;
  position: relative;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .65;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #7dd3fc 0%, rgba(125, 211, 252, 0) 70%);
  top: -250px;
  right: -150px;
  animation: orb-float 20s ease-in-out infinite alternate;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #99f6e4 0%, rgba(153, 246, 228, 0) 70%);
  bottom: -150px;
  left: -100px;
  animation: orb-float 25s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ddd6fe 0%, rgba(221, 214, 254, 0) 70%);
  top: 25%;
  left: 10%;
  animation: orb-float 18s ease-in-out infinite alternate;
}

.orb-4 {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .45;
  background: radial-gradient(circle, #fde047 0%, rgba(253, 224, 71, 0) 70%);
  bottom: 10%;
  right: 15%;
  animation: orb-float 22s ease-in-out infinite alternate-reverse;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }

  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--slate-200);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, .25);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(20, 184, 166, .25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(20, 184, 166, .1);
  }
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 28px;
  position: relative;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--slate-600);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* New Mockup Visual */
.mockup-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 620px;
  perspective: 1000px;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-container:hover .hero-mockup-img {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

/* Stat Bubbles (Wow Effect) */
.stat-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(14, 165, 233, 0.05);
  z-index: 20;
  animation: float-y 5s ease-in-out infinite;
}

.bubble-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.bubble-2 {
  bottom: 15%;
  right: -30px;
  animation-delay: 1s;
}

.bubble-3 {
  bottom: -10px;
  left: 20%;
  animation-delay: 2s;
}

.bubble-icon {
  font-size: 1.2rem;
}

.bubble-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--slate-900);
  white-space: nowrap;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-case-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
}

.trust-stars {
  font-size: 1.2rem;
  color: #f59e0b;
}

.trust-case-name {
  font-size: 0.9rem;
  color: var(--slate-700);
}

.trust-case-result {
  font-size: .78rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* ====================================================
   SCHEMATIC DEVICE SCENE (SVG-Wireframe, kein echter Content)
   ==================================================== */
.schematic-scene {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  padding: 30px 20px 60px;
}

.schematic-laptop {
  flex: 1;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.15));
}

.schematic-phone {
  width: 110px;
  flex-shrink: 0;
  z-index: 3;
  margin-bottom: 8px;
  position: relative;
  filter: drop-shadow(0 16px 32px rgba(14, 165, 233, 0.18));
}

.schematic-svg {
  width: 100%;
  height: auto;
  display: block;
}


.mockup-glow {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(14, 165, 233, .25) 0%, rgba(20, 184, 166, .12) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.mockup-live-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--teal-light);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal-dark);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(20, 184, 166, .18);
  z-index: 20;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}

/* ---- LAPTOP FRAME ---- */
.device-laptop {
  position: relative;
  flex: 1;
  z-index: 2;
}

.laptop-lid {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 6px;
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
  position: relative;
}

.laptop-screen-bezel {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  padding: 4px 4px 2px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.laptop-webcam {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  margin: 0 auto 3px;
}

.laptop-screen {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}

.device-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.laptop-hinge {
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 1px 1px;
  margin: 0 -4px;
}

.laptop-base {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 6px 10px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.laptop-keyboard-area {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.laptop-keys {
  width: 85%;
  height: 24px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

.laptop-trackpad {
  width: 30%;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ---- PHONE FRAME ---- */
.device-phone {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  z-index: 3;
  margin-bottom: 10px;
}

.phone-frame {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 8px 6px 10px;
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.15);
  position: relative;
}

.phone-notch {
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  margin: 0 auto 6px;
}

.phone-screen {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}

.phone-screen-img {
  object-position: top center;
  transform: scale(1.5) translateY(10%);
  transform-origin: top center;
}

.phone-home-indicator {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  margin: 6px auto 0;
}

/* ---- ABSTRACT UI (MOCKUP) ---- */
.abstract-ui {
  background: #f8fafc;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 6%;
  gap: 8%;
  box-sizing: border-box;
}

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

.ab-logo {
  width: 20%;
  height: 8px;
  background: var(--slate-300);
  border-radius: 4px;
}

.ab-nav {
  display: flex;
  gap: 6px;
}

.ab-nav span {
  display: block;
  width: 12px;
  height: 4px;
  background: var(--slate-200);
  border-radius: 2px;
}

.ab-nav.ab-nav-mobile span {
  width: 16px;
  height: 6px;
}

.ab-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 4%;
}

.ab-hero.ab-hero-mobile {
  align-items: flex-start;
  margin-top: 8%;
  gap: 6px;
}

.ab-title {
  width: 65%;
  height: 16px;
  background: var(--grad-main);
  border-radius: 8px;
  margin-bottom: 4px;
}

.ab-hero-mobile .ab-title {
  width: 80%;
  height: 10px;
}

.ab-text {
  width: 85%;
  height: 6px;
  background: var(--slate-200);
  border-radius: 3px;
}

.ab-hero-mobile .ab-text {
  width: 90%;
  height: 5px;
}

.ab-text.short {
  width: 50%;
}

.ab-btn {
  width: 25%;
  height: 18px;
  background: var(--blue);
  border-radius: 9px;
  margin-top: 8px;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
}

.ab-hero-mobile .ab-btn {
  width: 40%;
  height: 12px;
  margin-top: 6px;
  border-radius: 6px;
}

.ab-img {
  width: 100%;
  height: 25%;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 100%);
  border-radius: 10px;
  margin-top: 10%;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.8);
}

.ab-cards {
  display: flex;
  gap: 5%;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding-bottom: 2%;
}

.ab-cards.ab-cards-mobile {
  flex-direction: column;
  gap: 8px;
  margin-top: 15%;
  padding-bottom: 0;
}

.ab-card {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  height: 35px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
}

.ab-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--slate-100);
}

.ab-cards-mobile .ab-card {
  height: 28px;
}

.ab-cards-mobile .ab-card::after {
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
}

/* Float cards positioning für schematic scene */
.schematic-scene .float-card {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.schematic-scene .float-card-1 {
  top: 5%;
  left: -50px;
  animation: float-y 6s ease-in-out infinite;
}

.schematic-scene .float-card-2 {
  bottom: 20%;
  right: -45px;
  animation: float-y 6s ease-in-out infinite;
  animation-delay: 3s;
}

.schematic-scene .float-card-3 {
  bottom: -15px;
  left: 15%;
  animation: float-y 6s ease-in-out infinite;
  animation-delay: 1.6s;
}

.schematic-scene .float-card-4 {
  top: -15px;
  right: -25px;
  animation: float-y 6s ease-in-out infinite;
  animation-delay: 4.4s;
}

.schematic-scene .float-card-5 {
  top: 42%;
  left: -65px;
  animation: float-y 6s ease-in-out infinite;
  animation-delay: 2.2s;
}

/* Tablet: Float-Cards innerhalb der sichtbaren Fläche halten */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Kacheln kompakter machen damit keine sich überlappt */
  .schematic-scene .float-card {
    padding: 7px 11px;
    gap: 7px;
    border-radius: 11px;
  }
  .schematic-scene .float-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .schematic-scene .float-card-icon svg {
    width: 14px;
    height: 14px;
  }
  .schematic-scene .float-card-value {
    font-size: 0.78rem;
  }
  .schematic-scene .float-card-label {
    font-size: 0.64rem;
  }
  /* Positionen */
  .schematic-scene .float-card-1 {
    left: 0;
    top: 2%;
  }
  .schematic-scene .float-card-2 {
    right: 0;
    bottom: 18%;
  }
  .schematic-scene .float-card-3 {
    bottom: 0;
    left: 10%;
  }
  .schematic-scene .float-card-4 {
    right: 0;
    top: 0;
  }
  .schematic-scene .float-card-5 {
    left: 0;
    top: 40%;
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float-card-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.f-icon-blue { background: var(--blue-light); color: var(--blue); }
.f-icon-teal { background: var(--teal-light); color: var(--teal-dark); }
.f-icon-purple { background: var(--purple-light); color: var(--purple); }
.f-icon-lime { background: var(--lime-light); color: #4d7c0f; }
.f-icon-green { background: #dcfce7; color: #16a34a; }


.float-card-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}


.float-card-label {
  font-size: .75rem;
  color: var(--slate-500);
  font-weight: 600;
  margin-top: 2px;
}


/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--slate-400);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--slate-400);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ========================================
   ROI SECTION (MEHRWERT)
   ======================================== */
.roi-section {
  padding: 80px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.roi-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
              radial-gradient(circle at bottom right, rgba(20, 184, 166, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.roi-banner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.roi-headline {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  position: relative;
}

.roi-text {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}

.roi-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  position: relative;
  z-index: 2;
}

.roi-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-100);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.roi-benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.roi-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
}

/* ========================================
   PROBLEM / SOLUTION
   ======================================== */
.problem-solution {
  background: var(--slate-50);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.ps-problems {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-problem-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--slate-100);
  border: 1px solid var(--slate-300);
  border-left: 4px solid var(--slate-400);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  filter: grayscale(0.8);
}

.ps-problem-card:hover,
.ps-problem-card.hover-active {
  transform: translateX(-4px);
  background: #fef2f2;
  border-left-color: #ef4444;
  border-color: #fca5a5;
  filter: grayscale(0);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}

.ps-problem-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.ps-problem-card:hover .ps-problem-icon,
.ps-problem-card.hover-active .ps-problem-icon {
  opacity: 1;
  transform: scale(1.1);
  transition: transform 0.2s;
}

.ps-problem-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--slate-600);
  margin-bottom: 4px;
}

.ps-problem-card:hover h3,
.ps-problem-card.hover-active h3 {
  color: #991b1b;
}

.ps-problem-card p {
  font-size: .85rem;
  color: var(--slate-500);
}

.ps-problem-card:hover p,
.ps-problem-card.hover-active p {
  color: #7f1d1d;
}

.ps-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.arrow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.arrow-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--slate-500);
  text-align: center;
  line-height: 1.4;
}

.ps-solutions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-solution-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
  border: 2px solid var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ps-solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ps-solution-card:hover::after,
.ps-solution-card.hover-active::after {
  left: 150%;
}

.ps-solution-card:hover,
.ps-solution-card.hover-active {
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.3);
  transform: translateX(8px) scale(1.02);
  border-color: var(--teal);
  background: linear-gradient(135deg, #ffffff 0%, #ccfbf1 100%);
}

.ps-solution-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.ps-solution-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.ps-solution-card p {
  font-size: .85rem;
  color: var(--slate-700);
  font-weight: 500;
  line-height: 1.5;
}

/* ========================================
   FEATURES
   ======================================== */
.features {
  background: #fff;
}

.features-hero-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 0; /* carousel controls spacing */
}

/* ========================================
   CAROUSEL DIVIDER (Zwischenüberschrift)
   ======================================== */
.carousel-divider {
  text-align: center;
  padding: 52px 0 40px;
  position: relative;
}

.carousel-divider-line {
  width: 64px;
  height: 3px;
  background: var(--grad-main);
  border-radius: 100px;
  margin: 0 auto 20px;
  opacity: 0.7;
}

.carousel-divider-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.carousel-divider-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1px solid rgba(20,184,166,0.25);
  padding: 4px 14px;
  border-radius: 100px;
}

.carousel-divider-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

.carousel-divider-sub {
  font-size: 0.95rem;
  color: var(--slate-500);
  margin: 0;
  max-width: 420px;
}



/* ========================================
   VERTICAL BIG-TILE CAROUSEL
   ======================================== */
.vcarousel-outer {
  margin-bottom: 40px;
  position: relative;
}

/* Top bar: counter + arrows */
.vcarousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vcarousel-counter {
  font-size: 0.78rem;
  font-weight: 700;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--slate-700);
  font-variant-numeric: tabular-nums;
}

.vcarousel-scroll-hint {
  font-size: 0.72rem;
  color: var(--slate-400);
  margin-left: 12px;
  font-weight: 500;
}

.vcarousel-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vcarousel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 100px;
  background: #fff;
  border: 2px solid var(--slate-200);
  cursor: pointer;
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 0 3px 14px rgba(0,0,0,0.09);
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.vcarousel-btn:hover {
  background: linear-gradient(135deg, #0EA5E9, #14B8A6);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(14,165,233,0.3);
  transform: translateY(-2px);
}

.vcarousel-btn:active { transform: translateY(0); }
.vcarousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

/* Layout row: viewport + dots side by side */
.vcarousel-layout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Viewport clips the sliding track */
.vcarousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

/* Track: stacks slides vertically */
.vcarousel-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.58s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide must be exactly the viewport height */
.vcarousel-track > div {
  flex-shrink: 0;
  width: 100%;
}

/* Vertical dot strip on the right */
.vcarousel-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  flex-shrink: 0;
}

.vcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vcarousel-dot.active {
  background: var(--blue);
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(14,165,233,0.35);
}

.vcarousel-dot:hover:not(.active) {
  background: var(--slate-400);
  transform: scale(1.2);
}

/* Hide slide transition shadows of inner cards when animating */
.vcarousel-viewport .feature-big-card {
  box-shadow: none;
}


.feature-big-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px 64px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.feature-big-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity .3s;
  border-radius: var(--radius-xl);
}

.feature-big-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-big-card-alt {
  background: linear-gradient(135deg, #f0fdf4, #f0f9ff);
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .feature-big-card,
  .feature-big-card-alt {
    flex-direction: column;
    padding: 32px 24px;
    gap: 32px;
    text-align: center;
  }
}

.feature-big-content {
  flex: 1;
}

.feature-big-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.feature-big-content p {
  font-size: .9rem;
  color: var(--slate-600);
  margin-bottom: 24px;
  line-height: 1.65;
}

.feature-big-visual {
  width: 180px;
  flex-shrink: 0;
}

.feature-big-visual--enhanced {
  width: 400px;
  max-width: 100%;
}

@media (max-width: 900px) {
  .feature-big-visual--enhanced {
    width: 280px;
  }
}

.feature-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.feature-img--shadow {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-icon-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.feature-icon-teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.feature-icon-lime {
  background: var(--lime-light);
  color: #4d7c0f;
}

.feature-icon-purple {
  background: var(--purple-light);
  color: var(--purple);
}

/* Perf bars */
.perf-bar-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perf-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  color: var(--slate-600);
}

.perf-bar {
  flex: 1;
  height: 8px;
  background: var(--slate-200);
  border-radius: 4px;
  overflow: hidden;
}

.perf-fill {
  height: 100%;
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.perf-fill-good {
  background: var(--grad-main);
}

.perf-fill-bad {
  background: linear-gradient(135deg, #f87171, #fb923c);
}

.perf-score {
  font-weight: 700;
  font-size: .85rem;
  color: var(--slate-900);
  min-width: 24px;
}

.perf-label {
  font-size: .72rem;
  color: var(--slate-400);
  font-weight: 600;
  letter-spacing: .04em;
  margin-top: 4px;
}

/* SEO rank */
.seo-rank-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  font-size: .85rem;
}

.rank-1 {
  border-color: var(--teal);
  background: var(--teal-light);
}

.rank-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.rank-2 .rank-num,
.rank-3 .rank-num {
  background: var(--slate-200);
  color: var(--slate-600);
}

.rank-text {
  flex: 1;
  font-weight: 600;
  color: var(--slate-700);
}

.rank-badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: rgba(20, 184, 166, .2);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Online-Rezeption tile elements */
.rezeption-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1px solid rgba(20, 184, 166, .3);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.rezeption-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.rezeption-feature-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.05);
}

.rezeption-feature-badge:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.15);
}

.rezeption-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(20, 184, 166, 0.12));
  color: var(--teal-dark);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .rezeption-features {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FEATURES CAROUSEL
   ======================================== */

/* Outer wrapper: positions arrows outside the viewport */
.features-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Viewport: clips the sliding track */
.fcarousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Track: slides sit side-by-side */
.fcarousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* Individual slide — keeps existing .feature-card look */
.fcarousel-slide {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 visible on desktop */
  min-width: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* Centre slide subtle highlight (desktop) */
.fcarousel-slide.fcarousel-center {
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.14);
  border-color: rgba(14, 165, 233, 0.28);
  background: #fff;
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
  position: relative;
}

/* Arrow buttons */
.fcarousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-700);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: all 0.25s ease;
  align-self: center;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.fcarousel-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.18);
  transform: scale(1.08);
}

.fcarousel-btn:active {
  transform: scale(0.96);
}

.fcarousel-btn-prev { margin-right: 14px; }
.fcarousel-btn-next { margin-left: 14px; }

/* Dots */
.fcarousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.fcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.fcarousel-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.35);
}

.fcarousel-dot:hover:not(.active) {
  background: var(--slate-400);
  transform: scale(1.2);
}

/* ---- Responsive ---- */

/* Tablet: 2 tiles visible */
@media (max-width: 900px) {
  .fcarousel-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .fcarousel-slide.fcarousel-center {
    transform: none;
  }
}

/* Mobile: 1 tile visible */
@media (max-width: 560px) {
  .fcarousel-slide {
    flex: 0 0 100%;
  }
  .fcarousel-btn {
    width: 40px;
    height: 40px;
  }
  .fcarousel-btn-prev { margin-right: 10px; }
  .fcarousel-btn-next { margin-left: 10px; }
  .fcarousel-slide.fcarousel-center {
    transform: none;
    box-shadow: none;
    border-color: var(--slate-200);
  }
}

.feature-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  background: #fff;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .875rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
  background: var(--slate-50);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 72px;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  z-index: 0;
}

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

.step-number {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.step-card p {
  font-size: .85rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-duration {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Process CTA */
.process-cta {
  display: flex;
  align-items: center;
  gap: 64px;
  background: var(--grad-main);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  overflow: hidden;
}

.process-img {
  width: 220px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.process-cta-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.process-cta-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  background: #fff;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate-700);
}

.pricing-toggle {
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background: var(--slate-200);
  padding: 3px;
  transition: var(--transition);
  position: relative;
}

.pricing-toggle[aria-checked="true"] {
  background: var(--grad-main);
}

.toggle-thumb {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  display: block;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle[aria-checked="true"] .toggle-thumb {
  transform: translateX(24px);
}

.toggle-badge {
  background: var(--lime-light);
  color: #4d7c0f;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  margin-left: 4px;
}

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

.pricing-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.pricing-card-featured {
  background: var(--slate-900);
  border-color: var(--blue);
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}

.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.pricing-tier {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.pricing-card-featured .pricing-tier {
  color: var(--teal);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.04em;
  line-height: 1;
}

.price-period {
  font-size: .9rem;
  color: var(--slate-500);
}

.pricing-card-featured .price-currency,
.pricing-card-featured .price-amount {
  color: #fff;
}

.pricing-card-featured .price-period {
  color: rgba(255, 255, 255, .6);
}

.pricing-desc {
  font-size: .875rem;
  color: var(--slate-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-card-featured .pricing-desc {
  color: rgba(255, 255, 255, .65);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: var(--slate-700);
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, .9);
}

.pricing-feature-no {
  opacity: .45;
}

.check {
  color: var(--teal);
  font-weight: 900;
  flex-shrink: 0;
}

.no {
  color: var(--slate-400);
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

.pricing-card-featured .btn-outline {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}

.pricing-card-featured .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

/* Add-ons */
.addons-section {
  border-top: 1px solid var(--slate-200);
  padding-top: 48px;
}

.addons-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 24px;
  text-align: center;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: var(--transition);
}

.addon-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.addon-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 2px;
}

.addon-desc {
  font-size: .8rem;
  color: var(--slate-500);
}

.addon-price {
  font-size: .9rem;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--slate-50);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ta1 {
  background: linear-gradient(135deg, #0EA5E9, #14B8A6);
}

.ta2 {
  background: linear-gradient(135deg, #8B5CF6, #0EA5E9);
}

.ta3 {
  background: linear-gradient(135deg, #84CC16, #14B8A6);
}

.testimonial-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--slate-900);
}

.testimonial-role {
  font-size: .78rem;
  color: var(--slate-500);
}

/* ========================================
   FINAL CTA
   ======================================== */
.cta-final {
  background: linear-gradient(135deg, #0c1a3a 0%, #0f2a4a 50%, #0a2038 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -200px;
  left: -100px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -150px;
  right: -100px;
}

.cta-final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-final-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  background: rgba(20, 184, 166, .1);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(20, 184, 166, .2);
}

.cta-final-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}

.cta-final-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin-bottom: 24px;
}

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

.cta-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  transition: var(--transition);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.cta-input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(255, 255, 255, .12);
}

/* Select Dropdowns im Kontaktformular */
.cta-select {
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
}

.cta-select option {
  background: #0f2a4a;
  color: #fff;
  font-family: inherit;
}

.cta-select:focus {
  color: #fff;
}

.cta-select:hover {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .11);
}

.cta-submit-btn {
  width: 100%;
  justify-content: center;
}

.cta-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}

.cta-final-img {
  width: 280px;
  border-radius: var(--radius-xl);
  opacity: .92;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--slate-900);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  font-size: .875rem;
  color: var(--slate-500);
  margin: 16px 0 24px;
  line-height: 1.6;
}

.footer .logo-text {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--blue);
  color: #fff;
}

.footer-links-group {
  display: flex;
  gap: 56px;
}

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

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .875rem;
  color: var(--slate-400);
  transition: var(--transition);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--slate-600);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-sub {
    max-width: 600px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  .schematic-scene {
    max-width: 480px;
    margin: 0 auto;
  }

  .schematic-phone {
    width: 90px;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .ps-arrow {
    flex-direction: row;
    justify-content: center;
    padding: 8px 0;
  }

  .arrow-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .features-hero-row {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 56px;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-6px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .cta-final-inner {
    grid-template-columns: 1fr;
  }

  .cta-final-img {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Tight nav: shrink padding + gap between 960px–1280px */
@media (max-width: 1280px) {
  .nav-inner {
    gap: 16px;
  }

  .nav-link {
    padding: 7px 9px;
    font-size: .82rem;
  }

  .nav-cta .btn {
    padding: 11px 18px;
    font-size: .85rem;
  }
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }


  .stats-grid {
    flex-direction: column;
    gap: 28px;
    padding: 28px 24px;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .stat-item {
    padding: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-cta {
    flex-direction: column;
    padding: 36px 28px;
  }

  .process-img {
    width: 160px;
  }

  .process-cta-text h3 {
    font-size: 1.4rem;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Float-Cards: sichtbar, aber innerhalb der Fläche (keine negativen Positionen) */
  .schematic-scene .float-card {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 11px;
  }
  .schematic-scene .float-card-icon {
    width: 30px;
    height: 30px;
  }
  .schematic-scene .float-card-value {
    font-size: 0.82rem;
  }
  .schematic-scene .float-card-label {
    font-size: 0.68rem;
  }
  /* Positionen angepasst für Mobile, um Überlappungen zu vermeiden */
  .schematic-scene .float-card-1 {
    top: -2%;
    left: -2%;
  }
  .schematic-scene .float-card-2 {
    bottom: 24%;
    right: -2%;
  }
  .schematic-scene .float-card-3 {
    bottom: 6%;
    left: -2%;
  }
  .schematic-scene .float-card-4 {
    top: 18%;
    right: -2%;
  }
  /* card-5 ausblenden – würde card-1 überlappen */
  .schematic-scene .float-card-5 {
    display: none;
  }

  .ps-arrow {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    text-align: center;
  }

  .proof-logos {
    gap: 16px 28px;
  }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--slate-200);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  justify-content: center;
  padding: 24px;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.cookie-actions .btn-outline {
  background: #fff;
  border: 1.5px solid var(--slate-400);
  color: var(--slate-800);
}

.cookie-actions .btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--slate-50);
}

@media (max-width: 900px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}
/* ========================================
   COOKIE MODAL
   ======================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.cookie-modal.show .cookie-modal-content {
  transform: translateY(0) scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--slate-200);
}

.cookie-modal-header h3 {
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
  margin: 0;
}

.cookie-modal-close {
  background: var(--slate-100);
  color: var(--slate-600);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.2s ease;
}

.cookie-modal-close:hover {
  background: var(--slate-200);
  color: var(--slate-900);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal-body > p {
  font-size: 0.95rem;
  color: var(--slate-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.cookie-option:hover {
  border-color: var(--slate-300);
}

.cookie-option:last-child {
  margin-bottom: 0;
}

.cookie-option-info {
  flex: 1;
  padding-right: 20px;
}

.cookie-option-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.cookie-option-info p {
  font-size: 0.85rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--slate-400);
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: var(--teal);
}

.cookie-toggle input:disabled + .cookie-slider {
  background-color: var(--teal);
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(22px);
}

.cookie-modal-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  justify-content: flex-end;
  background: var(--slate-50);
}

@media (max-width: 600px) {
  .cookie-modal-header, .cookie-modal-body, .cookie-modal-footer {
    padding: 20px;
  }

  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-option-info {
    padding-right: 0;
  }
  .cookie-modal-footer .btn {
    width: 100%;
  }
}

/* ========================================
   CONTACT MODAL
   ======================================== */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 20px;
}

.contact-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-content {
  background: linear-gradient(135deg, #0c1a3a 0%, #0f2a4a 50%, #0a2038 100%);
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-modal.show .contact-modal-content {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 10;
}

.contact-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.contact-modal-body {
  padding: 40px 32px 32px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .contact-modal-body {
    padding: 30px 20px 20px;
  }
}

/* ========================================
   REFERENZ SECTION – Device Showcase (v4)
   Focused single-device view + sidebar selector
   Scroll mechanics: 100% unchanged.
   ======================================== */

.referenz-section {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

/* Background decoration orbs */
.referenz-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.referenz-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  top: -100px;
  right: -150px;
}

.referenz-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.referenz-section .container {
  position: relative;
  z-index: 1;
}

/* ---- DEVICE SHOWCASE CONTAINER ---- */
.device-showcase {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 48px 20px 40px;
}

/* ==================================
   DS-MAIN – the focused device stage
   ================================== */
.ds-main {
  flex: 1 1 auto;
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  /* Sized to Desktop: 16:10 + ~32px browser bar + ~16px stand */
  aspect-ratio: 16 / 11.5;
  max-width: 760px;
  width: 100%;
}

/* Shared glow effect */
.referenz-mockup-glow {
  position: absolute;
  top: -10%;
  left: -5%;
  right: -5%;
  bottom: -10%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(14,165,233,0.14) 0%,
    rgba(20,184,166,0.08) 45%,
    transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(50px);
}

/* ---- SCROLLABLE AREA (shared by all devices) ---- */
/* overflow-y: auto makes it scrollable; height:100% fills the screen area */
.device-scroll-area {
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.device-scroll-area:active {
  cursor: grabbing;
}

.device-scroll-area::-webkit-scrollbar {
  display: none;
}

/* Screenshots fill width, height auto = natural full-page height */
.device-screenshot {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ---- All device wrappers: stacked, only one visible at a time ---- */
.device-desktop-wrap,
.device-tablet-wrap,
.device-mobile-wrap {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.96);
  z-index: 1;
  pointer-events: none;
  transition:
    opacity 350ms cubic-bezier(.4,0,.2,1),
    transform 350ms cubic-bezier(.4,0,.2,1);
}

/* Active device: visible and interactive */
.device-desktop-wrap.ds-active,
.device-tablet-wrap.ds-active,
.device-mobile-wrap.ds-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

/* ---- DESKTOP positioning ---- */
.device-desktop-wrap {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: flex-end;
}

/* Ultra-thin elegant desktop frame */
.device-desktop-frame {
  width: 100%;
  background: #d1d5db;
  border-radius: 10px 10px 6px 6px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #9ca3af,
    0 24px 60px -12px rgba(14,165,233,0.28),
    0 8px 24px rgba(0,0,0,0.18);
}

/* macOS-style browser chrome – slim */
.device-browser-bar {
  display: flex;
  align-items: center;
  height: 32px;
  background: #f1f5f9;
  padding: 0 10px;
  gap: 8px;
  flex-shrink: 0;
  border-bottom: 1px solid #e2e8f0;
}

.device-browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.dot-red   { display: block; width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.dot-yellow{ display: block; width: 10px; height: 10px; border-radius: 50%; background: #febc2e; }
.dot-green { display: block; width: 10px; height: 10px; border-radius: 50%; background: #28c840; }

.device-browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: #475569;
  font-weight: 500;
  max-width: 260px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

.device-browser-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.device-browser-actions span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #e2e8f0;
}

/* Desktop screen: 16:10 exact aspect ratio, scrollable */
.device-screen {
  line-height: 0;
  background: #fff;
  aspect-ratio: 16 / 10;
  overflow: hidden;       /* clips the scrollable area to device size */
  position: relative;
  /* NO mask-image – the scroll area handles navigation */
}

/* Thin laptop stand */
.device-laptop-stand {
  width: 24%;
  height: 8px;
  background: linear-gradient(to bottom, #cbd5e1 0%, #94a3b8 100%);
  border-radius: 0 0 2px 2px;
  position: relative;
}

.device-laptop-foot {
  position: absolute;
  bottom: -4px;
  left: -20%;
  right: -20%;
  height: 4px;
  background: #94a3b8;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ---- TABLET positioning (centered in stage) ---- */
.device-tablet-wrap {
  width: 55%;
  max-width: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47%) scale(0.96);
}

.device-tablet-wrap.ds-active {
  transform: translate(-50%, -47%) scale(1);
}

/* Ultra-thin tablet frame */
.device-tablet-frame {
  width: 100%;
  background: #d1d5db;
  border-radius: 10px;
  padding: 8px 5px 12px;  /* very thin bezels */
  box-shadow:
    0 0 0 1px #9ca3af,
    0 16px 40px -8px rgba(14,165,233,0.2),
    0 6px 18px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.device-tablet-camera {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}

/* iPad portrait: 3:4 */
.device-screen-tablet {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  /* NO mask-image */
}

.device-tablet-home {
  width: 28px;
  height: 3px;
  background: #9ca3af;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ---- MOBILE positioning (centered in stage) ---- */
.device-mobile-wrap {
  width: 28%;
  max-width: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47%) scale(0.96);
}

.device-mobile-wrap.ds-active {
  transform: translate(-50%, -47%) scale(1);
}

/* Ultra-thin mobile frame */
.device-mobile-frame {
  width: 100%;
  background: #d1d5db;
  border-radius: 22px;
  padding: 10px 4px 12px;  /* very thin bezels */
  box-shadow:
    0 0 0 1px #9ca3af,
    0 16px 40px -8px rgba(14,165,233,0.2),
    0 6px 18px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.device-mobile-notch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48%;
  height: 12px;
  background: #6b7280;
  border-radius: 0 0 8px 8px;
  flex-shrink: 0;
}

.device-mobile-speaker {
  width: 14px;
  height: 2px;
  background: #9ca3af;
  border-radius: 10px;
}

.device-mobile-cam {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9ca3af;
}

/* Smartphone screen: 9:19.5 */
.device-screen-mobile {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
  /* NO mask-image */
}

.device-mobile-home-bar {
  width: 32px;
  height: 3px;
  background: #9ca3af;
  border-radius: 10px;
  flex-shrink: 0;
}

/* ================================================
   DS-SIDEBAR – device selector panel
   ================================================ */
.ds-sidebar {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 16px 0;
  width: 100px;
}

/* ---- Individual thumb button ---- */
.ds-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 11px;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  transition:
    transform 0.3s cubic-bezier(.4,0,.2,1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  outline: none;
  font-family: inherit;
}

.ds-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(20,184,166,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ds-thumb:hover {
  transform: translateY(-4px);
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 8px 24px rgba(14,165,233,0.15);
}

.ds-thumb:hover::before {
  opacity: 1;
}

/* Active thumb */
.ds-thumb.active {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(20,184,166,0.08));
  box-shadow:
    0 0 0 1.5px rgba(14,165,233,0.5),
    0 8px 28px rgba(14,165,233,0.2),
    0 0 0 6px rgba(14,165,233,0.07);
}

.ds-thumb.active .ds-thumb-icon {
  color: var(--blue);
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(20,184,166,0.12));
}

.ds-thumb.active .ds-thumb-label {
  color: var(--blue-dark);
  font-weight: 700;
}

/* Icon pip */
.ds-thumb-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  color: var(--slate-500);
  transition: background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

/* Label */
.ds-thumb-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* ---- Schematic mini-preview inside thumb ---- */
.ds-thumb-preview {
  border-radius: 4px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px;
  width: 100%;
}

.ds-thumb-preview--desktop { aspect-ratio: 16 / 10; }
.ds-thumb-preview--tablet  { aspect-ratio: 3 / 4; padding: 3px; gap: 3px; }
.ds-thumb-preview--mobile  { aspect-ratio: 9 / 19.5; padding: 3px; gap: 3px; width: 55%; }

.ds-thumb-bar {
  display: flex;
  gap: 2px;
  width: 100%;
  background: #e8edf2;
  padding: 2px 3px;
  border-radius: 2px 2px 0 0;
}

.ds-thumb-bar span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c8d3df;
}

.ds-thumb-lines {
  flex: 1;
  width: 100%;
  padding: 3px 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ds-thumb-line {
  height: 3px;
  background: linear-gradient(90deg, rgba(14,165,233,0.3), rgba(20,184,166,0.2));
  border-radius: 10px;
  width: 100%;
}

.ds-thumb-line.ds-line-title {
  height: 4px;
  background: linear-gradient(90deg, #0EA5E9, #14B8A6);
  width: 70%;
}

.ds-thumb-line.ds-line-short { width: 55%; }

.ds-thumb-cards {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.ds-thumb-cards > div {
  flex: 1;
  height: 8px;
  background: rgba(14,165,233,0.15);
  border-radius: 2px;
}

.ds-thumb-btn {
  height: 5px;
  width: 50%;
  background: linear-gradient(90deg, #0EA5E9, #14B8A6);
  border-radius: 10px;
  margin-top: 2px;
}

.ds-thumb-cam {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9ca3af;
  flex-shrink: 0;
}

.ds-thumb-home-bar {
  height: 2px;
  width: 40%;
  background: #9ca3af;
  border-radius: 10px;
  flex-shrink: 0;
}

.ds-thumb-notch {
  width: 40%;
  height: 4px;
  background: #6b7280;
  border-radius: 0 0 4px 4px;
  flex-shrink: 0;
}

/* ---- TRUST BADGE STRIP ---- */
.referenz-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ref-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ref-trust-pill svg {
  color: var(--teal);
  flex-shrink: 0;
}

.ref-trust-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

/* ---- FEATURE PILLS ---- */
.referenz-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ref-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--slate-700);
  font-weight: 500;
}

.ref-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,184,166,0.2) 0%, rgba(20,184,166,0.05) 100%);
  color: #14b8a6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- CTA ROW ---- */
.referenz-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.referenz-cta-btn {
  color: var(--slate-700);
  border-color: rgba(14,165,233,0.25);
}

/* ========================================
   REFERENZ SECTION – RESPONSIVE
   ======================================== */

/* Tablet landscape: sidebar stays right, slightly narrower */
@media (max-width: 960px) {
  .device-showcase {
    padding: 32px 20px 28px;
    gap: 1.5rem;
  }

  .ds-sidebar {
    width: 88px;
    gap: 10px;
  }

  .ds-main {
    max-width: 620px;
  }
}

/* Tablet portrait / large mobile: sidebar moves below, horizontal */
@media (max-width: 720px) {
  .device-showcase {
    flex-direction: column;
    align-items: center;
    padding: 32px 16px 24px;
    gap: 1.25rem;
  }

  .ds-main {
    width: 100%;
    max-width: 520px;
  }

  /* Tablet active: increase ds-main height to fully contain the 3:4 tablet mockup (55% width) */
  .device-showcase[data-active-device="tablet"] .ds-main {
    aspect-ratio: 4 / 4;
  }

  /* Mobile active: increase ds-main height to fully contain the 9:19.5 mobile mockup (28% width) */
  .device-showcase[data-active-device="mobile"] .ds-main {
    aspect-ratio: 16 / 14;
  }

  .ds-sidebar {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding: 4px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ds-sidebar::-webkit-scrollbar { display: none; }

  .ds-thumb {
    flex-direction: column;
    min-width: 90px;
    padding: 10px 12px;
  }

  .ds-thumb-preview--tablet { width: 70%; }
  .ds-thumb-preview--mobile { width: 38%; }
}

/* Small mobile */
@media (max-width: 480px) {
  .referenz-section {
    padding: 5rem 0 4rem;
  }

  .device-showcase {
    padding: 24px 12px 20px;
    gap: 1rem;
  }

  .ds-main {
    max-width: 100%;
  }

  .ds-sidebar {
    gap: 8px;
  }

  .ds-thumb {
    min-width: 80px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .ds-thumb-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .ds-thumb-icon svg {
    width: 16px;
    height: 16px;
  }

  .ds-thumb-label {
    font-size: 0.66rem;
  }

  .referenz-trust-strip {
    gap: 8px;
  }

  .ref-trust-pill {
    font-size: 0.77rem;
    padding: 6px 12px;
  }

  .referenz-features {
    gap: 1rem;
  }

  .referenz-cta {
    flex-direction: column;
    width: 100%;
  }

  .referenz-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   ROI-SECTION MOBILE FIX
   ======================================== */
@media (max-width: 640px) {
  .roi-banner, .roi-content {
    width: 100%;
    box-sizing: border-box;
  }

  .roi-text {
    font-size: 1rem;
    padding: 0 1rem;
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }

  .roi-headline {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    padding: 0 0.5rem;
  }
}
