/* 2-Spalten Layout */
.company-intro-content-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
  position: relative;
  z-index: 2;
  height: calc(100% - 100px);
  padding: 0 20px;
  margin-top: 60px;
}

/* Left Column - Company Info */
.company-intro-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: company-intro-fadeIn 0.8s ease-out forwards;
  opacity: 0;
  width: 580px;
}

/* Enhanced Description Card with integrated location */
.company-intro-description-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.company-intro-description-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  border-radius: 16px 16px 0 0;
}

/* Removed separate logo card - integrated into description */
.company-intro-logo-card {
  display: none;
}

.company-intro-logo-container {
  display: none;
}

.company-intro-logo-placeholder {
  display: none;
}

.company-intro-location-info {
  display: none;
}

.company-intro-description-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Enhanced Card Header with Company Logo and Location */
.company-intro-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

/* Company Brand Section - Elegant Layout */
.company-intro-company-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.03),
    rgba(139, 92, 246, 0.03)
  );
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.08);
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}

.company-intro-company-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 12px 12px 0 0;
}

.company-intro-logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.company-intro-logo-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.95)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1em;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px;
}

.company-intro-logo-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(59, 130, 246, 0.08),
    transparent
  );
  transform: rotate(45deg);
}

.company-intro-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.company-intro-company-info {
  flex: 1;
  min-width: 0;
}

.company-intro-company-info h3 {
  font-size: 1.6em;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-intro-company-tagline {
  font-size: 1.1em;
  color: #64748b;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 6px;
}

/* Enhanced Location Badge */
.company-intro-location-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08),
    rgba(6, 182, 212, 0.08)
  );
  color: #059669;
  font-size: 1em;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(10px);
  align-self: flex-start;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.company-intro-location-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.12),
    rgba(6, 182, 212, 0.12)
  );
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.company-intro-location-badge svg {
  width: 18px;
  height: 18px;
}

/* About Section Header */
.company-intro-about-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(100, 116, 139, 0.08);
}

.company-intro-card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.company-intro-about-header h3 {
  font-size: 1.5em;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Enhanced Bullet List */
.company-intro-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.2em;
  line-height: 1.6;
  flex: 1;
  padding: 16px 0;
  text-align: left;
}

.company-intro-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.2em;
  line-height: 1.6;
  color: #475569;
  padding: 23px 20px;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.6);
  backdrop-filter: blur(10px);
}

.company-intro-bullet-item strong {
  color: #1e40af;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(30, 64, 175, 0.1);
  position: relative;
}

.company-intro-bullet-item:hover {
  transform: translateX(4px) translateY(-2px);
  color: #334155;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.95));
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.company-intro-bullet {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75em;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.company-intro-bullet::before {
  content: "✓";
  font-size: 14px;
}

/* Right Column - Enhanced Bildungsprozess */
.company-intro-products-section {
  display: flex;
  flex-direction: column;
  animation: company-intro-fadeIn 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  width: 580px;
}

/* Enhanced Bildungsprozess Flow with integrated header */
.company-intro-education-flow {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: none;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.company-intro-education-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6);
  border-radius: 16px 16px 0 0;
}

/* Products Header inside the card */
.company-intro-products-header {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.08);
}

.company-intro-products-header h3 {
  font-size: 1.6em;
  font-weight: 700;
  background: linear-gradient(135deg, #1e293b, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 10px 0;
}

.company-intro-products-subtitle {
  font-size: 1.2em;
  color: #64748b;
  font-weight: 500;
}

.company-intro-flow-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.04),
    rgba(139, 92, 246, 0.04)
  );
  border-radius: 12px;
  margin-bottom: 12px;
  animation: company-intro-fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(59, 130, 246, 0.08);
}

.company-intro-flow-step:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(139, 92, 246, 0.08)
  );
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.company-intro-flow-step:nth-child(1) {
  animation-delay: 0.3s;
}

.company-intro-flow-step:nth-child(3) {
  animation-delay: 0.5s;
}

.company-intro-flow-step:nth-child(5) {
  animation-delay: 0.7s;
}

.company-intro-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.company-intro-step-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
}

.company-intro-step-content {
  flex: 1;
}

.company-intro-step-title {
  font-weight: 600;
  font-size: 1.2em;
  color: #1e293b;
  margin-bottom: 8px;
}

.company-intro-step-products {
  font-size: 1.05em;
  color: #64748b;
  font-weight: 500;
  background: rgba(59, 130, 246, 0.05);
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-block;
}

.company-intro-flow-arrow {
  text-align: center;
  font-size: 1.8em;
  color: #3b82f6;
  margin: 6px 0;
  animation: company-intro-bounce 3s infinite ease-in-out;
  text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Bottom Summary - Enhanced */
.company-intro-summary {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: company-intro-fadeInUp 0.8s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
  max-width: 85%;
  backdrop-filter: blur(20px);
}

.company-intro-summary-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.company-intro-summary-text {
  font-size: 0.95em;
  line-height: 1.4;
  font-weight: 500;
}

/* Enhanced Decorative elements */
.company-intro-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.company-intro-decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: company-intro-float 12s infinite ease-in-out;
}

.company-intro-circle-1 {
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
}

.company-intro-circle-2 {
  bottom: 15%;
  right: 8%;
  width: 80px;
  height: 80px;
  animation-duration: 16s;
  animation-direction: reverse;
}

.company-intro-decorative-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 60px 60px;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(59, 130, 246, 0.03) 1px,
    transparent 0
  );
  opacity: 0.6;
}

/* Enhanced Animations */
@keyframes company-intro-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes company-intro-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes company-intro-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}

@keyframes company-intro-float {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-12px) rotate(2deg) scale(1.02);
  }
  66% {
    transform: translateY(-6px) rotate(-1deg) scale(0.98);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Enhanced Responsive adjustments */
@media (max-width: 1200px) {
  .company-intro-content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .company-intro-summary {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 20px;
    align-self: center;
  }

  .company-intro-company-brand {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .company-intro-location-badge {
    align-self: flex-start;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .company-intro-content-grid {
    padding: 0 10px;
    gap: 20px;
  }

  .company-intro-description-card,
  .company-intro-education-flow {
    padding: 20px;
    border-radius: 16px;
  }

  .company-intro-company-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }

  .company-intro-logo-section {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .company-intro-logo-badge {
    width: 48px;
    height: 48px;
    font-size: 0.9em;
  }

  .company-intro-location-badge {
    align-self: center;
    margin-top: 0;
  }

  .company-intro-flow-step {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }

  .company-intro-step-icon {
    width: 44px;
    height: 44px;
  }

  .company-intro-summary {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 16px;
  }

  .company-intro-bullet-item {
    font-size: 0.9em;
  }

  .company-intro-decorative-circle {
    display: none;
  }
}
