/* ==========================================================================
   HOMEPAGE STYLES – digitalinhalt.de
   Dark Futuristic Premium Design
   Alle Selektoren mit .di-homepage gescoped fuer hoehere Spezifitaet
   gegenueber Kadence-Parent-Styles.
   ========================================================================== */

/* ---------- RESET & BASE ---------- */

html:has(.di-homepage) {
  overflow-x: hidden;
}

.di-homepage {
  background: #06060f !important;
  color: #9ca3af !important;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.di-homepage *,
.di-homepage *::before,
.di-homepage *::after {
  box-sizing: border-box;
}

.di-homepage .di-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- UTILITY ---------- */

.di-homepage .gradient-text {
  background: var(--text-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.di-homepage .section-label {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary) !important;
  margin-bottom: 1rem;
  display: inline-block;
}

.di-homepage .section-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary) !important;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.di-homepage .section-sub {
  font-size: 1.15rem;
  color: var(--text-secondary) !important;
  max-width: 640px;
  margin: 0 0 3rem;
}

/* ---------- SCROLL-ANIMATION BASIS ---------- */

.di-homepage [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.di-homepage [data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

.di-homepage [data-animate-delay="1"] {
  transition-delay: 0.1s;
}

.di-homepage [data-animate-delay="2"] {
  transition-delay: 0.2s;
}

.di-homepage [data-animate-delay="3"] {
  transition-delay: 0.3s;
}

.di-homepage [data-animate-delay="4"] {
  transition-delay: 0.4s;
}

/* ==========================================================================
   HEADER (Custom, fixiert)
   ========================================================================== */

.di-homepage .di-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.di-homepage .di-header.scrolled {
  background: rgba(6, 6, 15, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.di-homepage .di-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.di-homepage .di-logo {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary) !important;
  text-decoration: none !important;
}

.di-homepage .di-logo:hover {
  color: var(--text-primary) !important;
}

.di-homepage .di-logo .logo-dot {
  background: var(--gradient-main) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Desktop-Navigation */
.di-homepage .di-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.di-homepage .di-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.di-homepage .di-nav a:hover {
  color: var(--text-primary) !important;
}

.di-homepage .di-nav-cta {
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--border-glow) !important;
  border-radius: 10px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s !important;
}

.di-homepage .di-nav-cta:hover {
  background: rgba(124, 58, 237, 0.15) !important;
  box-shadow: var(--glow-violet);
}

/* Header Phone */
.di-homepage .di-header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.8rem;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: color 0.3s;
  margin-left: auto;
  margin-right: 1.5rem;
}

.di-homepage .di-header-phone:hover {
  color: var(--accent-secondary) !important;
}

.di-homepage .di-header-phone .phone-icon {
  font-size: 1rem;
}

/* Mobile Hamburger */
.di-homepage .di-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.di-homepage .di-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.di-homepage .di-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.di-homepage .di-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.di-homepage .di-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.di-homepage .di-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 15, 0.97) !important;
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.di-homepage .di-mobile-nav.open {
  display: flex;
}

.di-homepage .di-mobile-nav a {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  text-decoration: none !important;
}

/* ==========================================================================
   SECTION 1: HERO — Neural Flow
   ========================================================================== */

.di-homepage .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background: transparent !important;
}

/* Hero Content */
.di-homepage .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.di-homepage .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-secondary) !important;
  background: rgba(124, 58, 237, 0.1) !important;
  border: 1px solid rgba(124, 58, 237, 0.25) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.di-homepage .badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981 !important;
  border-radius: 50%;
  animation: di-pulse-dot 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes di-pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

/* Headline */
.di-homepage .hero-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #f0f0f5 !important;
  margin: 0 0 1.5rem;
}

.di-homepage .hero-headline .hero-line {
  display: block;
}

.di-homepage .hero-line-1 {
  background: linear-gradient(135deg, #f0f0f5 0%, #c4b5fd 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  opacity: 0;
  animation: di-hero-fade 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Typewriter Container */
.di-homepage .typewriter-line {
  display: inline-block;
  position: relative;
}

.di-homepage .typewriter-text {
  background: var(--gradient-main) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.di-homepage .typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent-secondary);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: di-blink-cursor 0.8s step-end infinite;
}

@keyframes di-blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* AI Process Mini-Visualization */
.di-homepage .ai-process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.di-homepage .process-node {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(17, 17, 37, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
  color: var(--text-secondary) !important;
  white-space: nowrap;
  transition: all 0.5s;
}

.di-homepage .process-node.active {
  border-color: rgba(6, 182, 212, 0.5) !important;
  color: var(--accent-secondary) !important;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.di-homepage .process-node .node-icon {
  font-size: 0.9rem;
}

.di-homepage .process-arrow {
  color: var(--text-muted) !important;
  font-size: 0.8rem;
  animation: di-arrow-pulse 2s infinite;
}

@keyframes di-arrow-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; color: var(--accent-secondary); }
}

/* Floating Content Cards */
.di-homepage .floating-cards {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.di-homepage .float-card {
  position: absolute;
  background: rgba(17, 17, 37, 0.6);
  border: 1px solid rgba(124, 58, 237, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  color: var(--text-secondary) !important;
  max-width: 220px;
  opacity: 0;
  will-change: transform;
}

.di-homepage .float-card .card-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace) !important;
  font-size: 0.65rem;
  color: var(--accent-secondary) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.di-homepage .float-card .card-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-secondary);
}

.di-homepage .float-card-1 {
  top: 18%; left: 5%;
  animation: di-float-card-in 1s 4.5s forwards, di-float-drift-1 8s 5.5s ease-in-out infinite;
}

.di-homepage .float-card-2 {
  top: 25%; right: 5%;
  animation: di-float-card-in 1s 5s forwards, di-float-drift-2 10s 6s ease-in-out infinite;
}

.di-homepage .float-card-3 {
  bottom: 20%; left: 8%;
  animation: di-float-card-in 1s 5.5s forwards, di-float-drift-3 9s 6.5s ease-in-out infinite;
}

.di-homepage .float-card-4 {
  bottom: 15%; right: 8%;
  animation: di-float-card-in 1s 6s forwards, di-float-drift-4 11s 7s ease-in-out infinite;
}

@keyframes di-float-card-in {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 0.7; transform: translateY(0) scale(1); }
}

@keyframes di-float-drift-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes di-float-drift-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes di-float-drift-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes di-float-drift-4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Scroll Indicator */
.di-homepage .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.di-homepage .scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.di-homepage .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: di-scroll-line-pulse 2s infinite;
}

@keyframes di-scroll-line-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes di-hero-fade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sub-Headline */
.di-homepage .hero-sub {
  font-size: 1.2rem;
  color: #9ca3af !important;
  line-height: 1.7;
  margin: 0 0 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.di-homepage .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.di-homepage .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 12px;
  padding: 0.95rem 2rem;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  border: none;
}

.di-homepage .btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
  color: #fff !important;
}

.di-homepage .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5),
    0 0 60px rgba(124, 58, 237, 0.2);
  color: #fff !important;
}

.di-homepage .btn-ghost {
  background: transparent !important;
  color: #9ca3af !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
}

.di-homepage .btn-ghost:hover {
  border-color: rgba(124, 58, 237, 0.4) !important;
  color: #f0f0f5 !important;
  background: rgba(124, 58, 237, 0.06) !important;
}

.di-homepage .btn-arrow {
  transition: transform 0.3s;
}

.di-homepage .btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   SECTION 2: PROBLEM -> LÖSUNG
   ========================================================================== */

.di-homepage .problem-solution {
  padding: 6rem 0;
  background: #0d0d1a !important;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.di-homepage .ps-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  /* Changed from 4rem, because ps-side padding + divider gives enough spacing */
  background: #111125 !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.di-homepage .ps-side {
  flex: 1;
  padding: 4rem;
  position: relative;
}

.di-homepage .ps-problem {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.03) 0%, transparent 100%);
}

.di-homepage .ps-solution {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
}

.di-homepage .ps-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin: 0 0 2rem;
}

.di-homepage .ps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.di-homepage .ps-list li {
  font-size: 1rem;
  color: #9ca3af !important;
  padding: 0.8rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.6;
}

.di-homepage .ps-icon {
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.di-homepage .ps-icon.cross {
  color: #f43f5e !important;
}

.di-homepage .ps-icon.check {
  color: #06b6d4 !important;
}

.di-homepage .ps-divider {
  width: 1px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
}

.di-homepage .ps-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #7c3aed 50%, transparent 100%);
}

/* ==========================================================================
   SECTION 3: SERVICES
   ========================================================================== */

.di-homepage .services {
  padding: 7rem 0;
  background: #06060f !important;
}

.di-homepage .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.di-homepage .service-card {
  background: #111125 !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.di-homepage .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.di-homepage .service-card:hover {
  border-color: rgba(124, 58, 237, 0.4) !important;
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.di-homepage .service-card:hover::before {
  opacity: 1;
}

.di-homepage .service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.di-homepage .service-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin: 0 0 0.4rem;
}

.di-homepage .service-subline {
  font-size: 0.95rem;
  color: #06b6d4 !important;
  font-weight: 500;
  margin: 0 0 1rem;
}

.di-homepage .service-desc {
  font-size: 0.95rem;
  color: #9ca3af !important;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.di-homepage .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.di-homepage .service-features li {
  font-size: 0.9rem;
  color: #9ca3af !important;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.di-homepage .service-features li::before {
  content: '\2713';
  color: #06b6d4 !important;
  font-weight: 700;
  flex-shrink: 0;
}

.di-homepage .service-price {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f5 !important;
  margin-bottom: 1.2rem;
}

.di-homepage .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #7c3aed !important;
  text-decoration: none !important;
  transition: color 0.3s, gap 0.3s;
}

.di-homepage .service-cta:hover {
  color: #06b6d4 !important;
  gap: 0.7rem;
}

/* ==========================================================================
   SECTION 4: PROZESS
   ========================================================================== */

.di-homepage .process {
  padding: 7rem 0;
  background: #0d0d1a !important;
}

.di-homepage .process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.di-homepage .process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.di-homepage .step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #111125 !important;
  border: 2px solid rgba(124, 58, 237, 0.15) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #7c3aed !important;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.di-homepage .process-step:hover .step-number {
  border-color: #7c3aed !important;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.di-homepage .step-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.di-homepage .step-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin: 0 0 0.6rem;
}

.di-homepage .step-desc {
  font-size: 0.95rem;
  color: #9ca3af !important;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* Verbindungslinie */
.di-homepage .process-line {
  position: absolute;
  top: 32px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(124, 58, 237, 0.15);
  z-index: 1;
}

.di-homepage .process-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.di-homepage .process-line-fill.filled {
  width: 100%;
}

/* ==========================================================================
   SECTION 4: VERTRAUENSIGNAL (Arbeitsweise)
   ========================================================================== */

.di-homepage .trust {
  padding: 7rem 0;
  background: #06060f !important;
}

.di-homepage .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.di-homepage .result-card {
  background: #111125 !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.di-homepage .result-card:hover {
  border-color: rgba(124, 58, 237, 0.4) !important;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.di-homepage .result-number {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c4b5fd 0%, #67e8f9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.di-homepage .result-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f5 !important;
  margin-bottom: 0.5rem;
}

.di-homepage .result-desc {
  font-size: 0.9rem;
  color: #4b5563 !important;
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 4b: EXPERTISE & GRÜNDER-VORTEIL
   ========================================================================== */

.di-homepage .expertise-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.di-homepage .expertise-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.di-homepage .expertise-stat {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c4b5fd 0%, #67e8f9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.di-homepage .expertise-stat-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.di-homepage .expertise-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f0f0f5 !important;
  margin-bottom: 0.5rem;
}

.di-homepage .expertise-desc {
  font-size: 0.9rem;
  color: #6b7280 !important;
  line-height: 1.6;
}

/* Gründer-Vorteil Banner */
.di-homepage .founder-advantage {
  margin-top: 4rem;
}

.di-homepage .founder-advantage-inner {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.di-homepage .founder-advantage-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c3aed, #06b6d4, transparent);
}

.di-homepage .founder-advantage-badge {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #06b6d4 !important;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1.2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.di-homepage .founder-advantage-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #f0f0f5 !important;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.di-homepage .founder-advantage-text {
  font-size: 1rem;
  color: #9ca3af !important;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Responsive: Expertise */
@media (max-width: 768px) {
  .di-homepage .expertise-credentials {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .di-homepage .founder-advantage-inner {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   SECTION 6: PRICING
   ========================================================================== */

.di-homepage .pricing {
  padding: 7rem 0;
  background: #0d0d1a !important;
}

.di-homepage .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.di-homepage .pricing-card {
  background: #111125 !important;
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.di-homepage .pricing-card:hover {
  transform: translateY(-4px);
}

/* Featured / Beliebt */
.di-homepage .pricing-card.featured {
  border-color: transparent !important;
  position: relative;
  z-index: 1;
}

.di-homepage .pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
  z-index: -1;
}

.di-homepage .pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #111125 !important;
  z-index: -1;
}

.di-homepage .pricing-badge {
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
  color: #fff !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1rem;
}

.di-homepage .pricing-name {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.3rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin: 0 0 0.3rem;
}

.di-homepage .pricing-target {
  font-size: 0.85rem;
  color: #4b5563 !important;
  margin: 0 0 1.2rem;
}

.di-homepage .pricing-price {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 2rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin-bottom: 0.3rem;
}

.di-homepage .pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #4b5563 !important;
}

.di-homepage .pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.di-homepage .pricing-features li {
  font-size: 0.9rem;
  color: #9ca3af !important;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.di-homepage .pricing-features li::before {
  content: '\2713';
  color: #06b6d4 !important;
  font-weight: 700;
  flex-shrink: 0;
}

.di-homepage .pricing-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  margin-top: 1.5rem;
}

.di-homepage .pricing-cta-outline {
  border: 1px solid rgba(124, 58, 237, 0.15) !important;
  color: #f0f0f5 !important;
  background: transparent !important;
}

.di-homepage .pricing-cta-outline:hover {
  border-color: rgba(124, 58, 237, 0.4) !important;
  background: rgba(124, 58, 237, 0.06) !important;
  color: #f0f0f5 !important;
}

.di-homepage .pricing-cta-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
  color: #fff !important;
  border: none !important;
}

.di-homepage .pricing-cta-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
  color: #fff !important;
}

/* ==========================================================================
   SECTION 7: FAQ
   ========================================================================== */

.di-homepage .faq {
  padding: 7rem 0;
  background: #06060f !important;
}

.di-homepage .faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
}

.di-homepage .faq-item {
  border-bottom: 1px solid rgba(124, 58, 237, 0.15) !important;
}

.di-homepage .faq-question {
  width: 100%;
  background: none !important;
  border: none !important;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.di-homepage .faq-question span {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0f0f5 !important;
  padding-right: 1rem;
}

.di-homepage .faq-icon {
  font-size: 1.4rem;
  color: #7c3aed !important;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.di-homepage .faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.di-homepage .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s;
}

.di-homepage .faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #9ca3af !important;
  line-height: 1.8;
}

.di-homepage .faq-item.open .faq-answer {
  max-height: 400px;
}

/* ==========================================================================
   SECTION 8: CTA FINALE
   ========================================================================== */

.di-homepage .cta-final {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  background: #0d0d1a !important;
}

.di-homepage .cta-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.di-homepage .cta-final-bg .glow-orb-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed !important;
  filter: blur(120px);
  opacity: 0.2;
  position: absolute;
  border-radius: 50%;
}

.di-homepage .cta-final-card {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(17, 17, 37, 0.7) !important;
  border: 1px solid rgba(124, 58, 237, 0.2) !important;
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.di-homepage .cta-final-headline {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #f0f0f5 !important;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.di-homepage .cta-final-sub {
  font-size: 1.1rem;
  color: #9ca3af !important;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.di-homepage .cta-final .btn-primary {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}

.di-homepage .cta-final-note {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 0.8rem;
  color: #4b5563 !important;
  margin-top: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.di-homepage .di-footer {
  padding: 4rem 0 2rem;
  background: #06060f !important;
  border-top: 2px solid transparent;
  border-image: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) 1;
}

.di-homepage .di-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.di-homepage .di-footer-brand {
  max-width: 320px;
}

.di-homepage .di-footer-brand .di-logo {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.di-homepage .di-footer-brand p {
  font-size: 0.9rem;
  color: #4b5563 !important;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.di-homepage .di-footer-contact {
  font-size: 0.9rem;
  color: #9ca3af !important;
  line-height: 1.8;
}

.di-homepage .di-footer-contact a {
  color: #9ca3af !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.di-homepage .di-footer-contact a:hover {
  color: #7c3aed !important;
}

.di-homepage .di-footer-nav h4 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0f0f5 !important;
  margin: 0 0 1rem;
}

.di-homepage .di-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.di-homepage .di-footer-nav li {
  margin-bottom: 0.5rem;
}

.di-homepage .di-footer-nav a {
  font-size: 0.9rem;
  color: #4b5563 !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.di-homepage .di-footer-nav a:hover {
  color: #f0f0f5 !important;
}

.di-homepage .di-footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.15) !important;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #4b5563 !important;
}

.di-homepage .di-footer-bottom a {
  color: #4b5563 !important;
  text-decoration: none !important;
  transition: color 0.3s;
}

.di-homepage .di-footer-bottom a:hover {
  color: #f0f0f5 !important;
}

.di-homepage .di-footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
  .di-homepage .hero-transform {
    flex-direction: column;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .di-homepage .transform-arrow {
    width: auto;
    height: 40px;
    transform: rotate(90deg);
  }

  .di-homepage .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .di-homepage .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .di-homepage .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .di-homepage .di-nav {
    display: none;
  }

  .di-homepage .di-hamburger {
    display: flex;
  }

  .di-homepage .di-header-phone .phone-text {
    display: none;
  }

  .di-homepage .di-header-phone {
    margin-right: 1rem;
  }

  .di-homepage .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }

  .di-homepage .hero-headline {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }

  .di-homepage .hero-sub {
    font-size: 1.05rem;
  }

  .di-homepage .hero-transform {
    flex-direction: column;
  }

  .di-homepage .transform-arrow {
    width: auto;
    height: 36px;
    transform: rotate(90deg);
  }

  .di-homepage .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .di-homepage .social-proof-inner {
    gap: 2rem;
  }

  .di-homepage .services-grid,
  .di-homepage .pricing-grid,
  .di-homepage .results-grid {
    grid-template-columns: 1fr;
  }

  .di-homepage .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .di-homepage .process-line {
    display: none;
  }

  .di-homepage .floating-cards {
    display: none;
  }

  .di-homepage .ai-process-visual {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .di-homepage .process-arrow {
    display: none;
  }

  .di-homepage .scroll-indicator {
    display: none;
  }

  .di-homepage [data-animate] {
    transform: translateY(15px);
  }

  /* Problem/Solution: vertikal stapeln auf Mobile */
  .di-homepage .ps-wrapper {
    flex-direction: column;
  }

  .di-homepage .ps-side {
    padding: 2.5rem 1.5rem;
  }

  .di-homepage .ps-divider {
    width: 100%;
    height: 1px;
  }

  .di-homepage .ps-line {
    background: linear-gradient(90deg, transparent 0%, #7c3aed 50%, transparent 100%);
  }

  .di-homepage .ps-headline {
    font-size: 1.4rem;
  }

  .di-homepage .di-footer-inner {
    flex-direction: column;
  }

  .di-homepage .di-footer-legal {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .di-homepage .di-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .di-homepage .section-headline {
    font-size: clamp(1.7rem, 5vw, 2.4rem) !important;
  }

  .di-homepage .cta-final-card {
    padding: 3rem 1.5rem;
  }

  .di-homepage .cta-final-bg .glow-orb-1 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .di-homepage .di-container {
    padding: 0 1rem;
  }

  .di-homepage .hero {
    padding: 6rem 1rem 2rem;
  }

  .di-homepage .hero-sub br {
    display: none;
  }

  .di-homepage .service-card,
  .di-homepage .pricing-card,
  .di-homepage .result-card {
    padding: 2rem 1.5rem;
  }

  .di-homepage .ps-side {
    padding: 2rem 1.2rem;
  }

  .di-homepage .problem-solution {
    padding: 3rem 0;
  }

  .di-homepage .btn {
    width: 100%;
    justify-content: center;
  }
}