/* =============================================
   GLOBAL RESET & BASE STYLES
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: pageLoad 0.8s ease-out forwards;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

@keyframes pageLoad {
  to {
    opacity: 1;
  }
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  padding: 10px 0;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #d8b4fe, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: default;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
  line-height: 1;
}

.header-cta {
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  color: #d8b4fe;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}

.header-cta:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* =============================================
   SECTION: HERO / ABOVE THE FOLD
   ============================================= */
.hero-section {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  padding-top: 70px;
}

/* Radial brightness gradient around ALL hero text - INCREASED VISIBILITY */
.hero-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    ellipse 70% 60% at center,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 15%,
    rgba(255, 255, 255, 0.08) 25%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.3) 55%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.85) 100%
  );
  pointer-events: none;
  z-index: 5;
}

.grid-background {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}

.orb-1 {
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: #8B5CF6;
}

.orb-2 {
  bottom: 33%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: #7C3AED;
}

/* =============================================
   HERO BACKGROUND ANIMATION - FLOATING ORBS
   ============================================= */
.animation-orbs .gradient-orb {
  animation: floatOrb 15s ease-in-out infinite;
  opacity: 0.12 !important;
  filter: blur(80px);
}

.animation-orbs .orb-1 {
  animation-delay: 0s;
}

.animation-orbs .orb-2 {
  animation-delay: -7.5s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.15);
  }
  50% {
    transform: translate(-40px, 60px) scale(0.85);
  }
  75% {
    transform: translate(60px, 40px) scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  padding: 0 24px;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
  margin-top: 40px;
}

.logo-container {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.brand-logo {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  background: linear-gradient(to right, #ffffff, #d8b4fe, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BRAND LOGO ANIMATION - PLASMA WAVE
   ============================================= */
.brand-logo.logo-plasma {
  background: linear-gradient(
    90deg,
    #8b5cf6 0%,
    #a78bfa 25%,
    #d8b4fe 50%,
    #a78bfa 75%,
    #8b5cf6 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: plasmaWave 6s ease-in-out infinite;
  position: relative;
  filter: drop-shadow(0 0 5px rgba(167, 139, 250, 0.25));
}

@keyframes plasmaWave {
  0%, 100% {
    background-position: 0% 50%;
    filter: 
      drop-shadow(0 0 5px rgba(167, 139, 250, 0.25))
      drop-shadow(0 0 10px rgba(139, 92, 246, 0.15));
    transform: scaleY(1);
  }
  25% {
    background-position: 50% 50%;
    filter: 
      drop-shadow(0 0 8px rgba(216, 180, 254, 0.3))
      drop-shadow(0 0 16px rgba(167, 139, 250, 0.2));
    transform: scaleY(1.03);
  }
  50% {
    background-position: 100% 50%;
    filter: 
      drop-shadow(0 0 7px rgba(139, 92, 246, 0.3))
      drop-shadow(0 0 14px rgba(124, 58, 237, 0.18));
    transform: scaleY(1.05);
  }
  75% {
    background-position: 50% 50%;
    filter: 
      drop-shadow(0 0 6px rgba(167, 139, 250, 0.28))
      drop-shadow(0 0 12px rgba(139, 92, 246, 0.18));
    transform: scaleY(1.02);
  }
}

.tagline {
  margin-bottom: 48px;
}

.main-heading {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  color: #f3f4f6;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ffffff 0%, #f3e8ff 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-description {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 672px;
  margin: 0 auto;
}

.scroll-indicator {
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover .chevron {
  color: rgba(139, 92, 246, 1);
  transform: translateY(3px);
}

.scroll-indicator:hover .scroll-text {
  color: #9ca3af;
}

.chevron {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  color: rgba(139, 92, 246, 0.6);
  transition: all 0.3s ease;
}

.scroll-text {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  transition: color 0.3s ease;
}

/* =============================================
   GLOBAL ANIMATIONS
   ============================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s backwards;
}

/* =============================================
   MOBILE OPTIMIZATION - HERO SECTION
   ============================================= */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .header-logo {
    font-size: 1.25rem;
  }
  
  .header-cta {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hero-section {
    padding-top: 60px;
  }
  
  .hero-content {
    transform: none !important;
    opacity: 1 !important;
    margin-top: 24px;
  }
  
  .grid-background {
    transform: none !important;
    filter: blur(60px);
    opacity: 0.5;
  }
  
  .brand-logo {
    font-size: 3rem;
    line-height: 1.1;
  }
  
  .main-heading {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .main-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  
  .gradient-orb {
    filter: blur(60px);
    opacity: 0.08;
  }
  
  .animation-orbs .gradient-orb {
    animation-duration: 25s;
  }
  
  .scroll-indicator {
    animation: none;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }
  
  .header-logo {
    font-size: 1.125rem;
  }
  
  .header-cta {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
  
  .hero-section {
    padding-top: 50px;
  }
  
  .hero-content {
    padding: 0 16px;
    margin-top: 16px;
  }
  
  .brand-logo {
    font-size: 2.5rem;
  }
  
  .main-heading {
    font-size: 1.25rem;
  }
  
  .main-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .logo-container {
    margin-bottom: 32px;
  }
  
  .tagline {
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) {
  .brand-logo {
    font-size: 6rem;
  }
  
  .main-heading {
    font-size: 2.5rem;
  }
  
  .main-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .brand-logo {
    font-size: 8rem;
  }
}

/* =============================================
   SECTION 1: ONLINE-MARKETING
   ============================================= */
.content-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px 0;
  background-color: #000000;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-number {
  display: inline-block;
  font-size: 0.875rem;
  color: #8B5CF6;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 9999px;
  background: rgba(139, 92, 246, 0.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #f3f4f6;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff 0%, #f3e8ff 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card {
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(17, 24, 39, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  margin-bottom: 20px;
  color: #a78bfa;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.05);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.7;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SECTION 2: VERTRIEBSDIENSTLEISTUNGEN
   ============================================= */
.vertrieb-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background-color: #000000;
}

.vertrieb-showcase {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
}

.showcase-hero {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(17, 24, 39, 0.4) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.showcase-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.showcase-hero:hover::before {
  opacity: 1;
}

.showcase-hero:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.showcase-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-icon-wrapper {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  transition: all 0.5s ease;
  position: relative;
}

.hero-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.showcase-hero:hover .hero-icon-wrapper {
  transform: scale(1.05) rotate(5deg);
  border-color: rgba(139, 92, 246, 0.5);
}

.showcase-hero:hover .hero-icon-wrapper::after {
  inset: -30px;
  border-color: rgba(139, 92, 246, 0.2);
}

.showcase-hero-content {
  position: relative;
  z-index: 1;
}

.showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 4px;
}

.showcase-hero-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 16px;
  line-height: 1.2;
}

.showcase-hero-text {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.8;
}

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

.showcase-item {
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
}

.showcase-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #8B5CF6, #7C3AED);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.showcase-item:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(17, 24, 39, 0.6);
  transform: translateY(-4px);
}

.showcase-item:hover::after {
  transform: scaleX(1);
}

.showcase-item-icon {
  width: 80px;
  height: 80px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.showcase-item:hover .showcase-item-icon {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.05);
}

.showcase-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 12px;
}

.showcase-item-text {
  font-size: 0.9375rem;
  color: #9ca3af;
  line-height: 1.7;
}

/* =============================================
   SECTION 3: PROZESSAUTOMATISIERUNG
   ============================================= */
.automation-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background-color: #000000;
}

.automation-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

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

.automation-item-reverse {
  direction: rtl;
}

.automation-item-reverse > * {
  direction: ltr;
}

.automation-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-box {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.automation-item:hover .visual-box {
  transform: scale(1.05) rotate(2deg);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.automation-item:hover .visual-box::before {
  opacity: 1;
}

.automation-content {
  max-width: 100%;
}

.automation-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #ffffff 0%, #f3e8ff 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.automation-description {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.8;
  margin-bottom: 24px;
}

.automation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.automation-list li {
  font-size: 0.9375rem;
  color: #d1d5db;
  padding-left: 28px;
  position: relative;
}

.automation-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8B5CF6;
  font-weight: 600;
}

/* =============================================
   SECTION: CTA
   ============================================= */
.cta-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: #0a0a0a;
  border-top: 1px solid #1f2937;
  overflow: hidden;
}

.cta-background-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  opacity: 1;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.cta-box {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  transition: all 0.5s ease;
  backdrop-filter: blur(10px);
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cta-box:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.8));
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25);
}

.cta-box:hover::before {
  opacity: 1;
}

.cta-border-accent {
  position: absolute;
  top: -2px;
  left: 15%;
  right: 15%;
  height: 4px;
  background: linear-gradient(to right, transparent, #8B5CF6, #7C3AED, transparent);
  border-radius: 4px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.cta-text-block {
  padding: 32px;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 300;
  color: #f3f4f6;
  line-height: 1.2;
  background: linear-gradient(90deg, #ffffff 0%, #f3e8ff 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}

.cta-divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.4), transparent);
}

.cta-email-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.cta-email-wrapper:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.5);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.cta-email-wrapper:active {
  transform: scale(0.98);
}

.cta-email-wrapper.copied {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.7);
  animation: pulse 0.5s ease;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.cta-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8b4fe;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.cta-email-wrapper:hover .cta-icon {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  transform: scale(1.1) rotate(5deg);
}

.cta-email {
  font-size: 1.25rem;
  color: #d8b4fe;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-email:hover {
  color: #f3e8ff;
}

.copy-feedback {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(139, 92, 246, 0.95);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.copy-feedback.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #000000;
  border-top: 1px solid #1f2937;
  padding: 80px 0 30px;
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1f2937;
}

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

.footer-logo {
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffffff 0%, #f3e8ff 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 400;
  margin-bottom: 12px;
}

.footer-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

.footer-sections {
  display: contents;
}

.footer-col-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 16px;
}

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

.footer-list-link {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  font-family: inherit;
  text-decoration: none;
  text-align: left;
}

.footer-list-link:hover {
  color: #d8b4fe;
}

.footer-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

/* =============================================
   MODALS
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.98));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f3f4f6;
  background: linear-gradient(90deg, #ffffff 0%, #f3e8ff 50%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-close {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #d8b4fe;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  transform: rotate(90deg);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  color: #d1d5db;
  line-height: 1.7;
  flex: 1;
}

.modal-body h3 {
  color: #f3f4f6;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body h4 {
  color: #e5e7eb;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 8px;
}

.modal-body p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.modal-body ul {
  margin: 16px 0;
  padding-left: 24px;
}

.modal-body li {
  margin-bottom: 8px;
}

.modal-body strong {
  color: #f3f4f6;
  font-weight: 600;
}

.modal-note {
  background: rgba(139, 92, 246, 0.1);
  border-left: 3px solid #8B5CF6;
  padding: 16px;
  margin-top: 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #d8b4fe;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.95));
  border-top: 2px solid rgba(139, 92, 246, 0.4);
  padding: 24px;
  z-index: 10000;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookie-text {
  flex: 1;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 8px;
}

.cookie-description {
  font-size: 0.9375rem;
  color: #d1d5db;
  line-height: 1.6;
}

.cookie-link {
  background: none;
  border: none;
  color: #a78bfa;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #d8b4fe;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #8B5CF6;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #7C3AED;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.cookie-btn-essential {
  background: rgba(139, 92, 246, 0.1);
  color: #d8b4fe;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.cookie-btn-essential:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
}

.cookie-btn-reject {
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

/* =============================================
   MOBILE RESPONSIVE - ALL SECTIONS
   ============================================= */
@media (max-width: 768px) {
  .content-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .feature-card:hover {
    transform: none;
  }
  
  .vertrieb-section {
    padding: 60px 0;
  }
  
  .vertrieb-showcase {
    margin-top: 48px;
  }
  
  .showcase-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  
  .hero-icon-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .showcase-hero-title {
    font-size: 1.75rem;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .automation-section {
    padding: 60px 0;
  }
  
  .automation-item,
  .automation-item-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  
  .automation-visual {
    order: -1;
  }
  
  .cta-section {
    min-height: 50vh;
    padding: 80px 0;
  }
  
  .cta-box {
    padding: 40px 28px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .modal-content {
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 20px;
  }
  
  .modal-title {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .cookie-banner {
    padding: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 16px;
  }
  
  .content-section {
    padding: 48px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .showcase-hero {
    padding: 24px;
  }
  
  .hero-icon-wrapper {
    width: 160px;
    height: 160px;
  }
  
  .showcase-hero-title {
    font-size: 1.5rem;
  }
  
  .automation-section {
    padding: 48px 0;
  }
  
  .visual-box {
    width: 140px;
    height: 140px;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-container {
    padding: 0 16px;
  }
  
  .cta-box {
    padding: 32px 20px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-email-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

