/* Main content layout */
.approach-content-wrapper {
  display: flex;
  gap: 50px;
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 50px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: stretch;
}

/* Left column - Methods */
.approach-methods-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px; /* Zusätzlicher Abstand */
}

.approach-methods-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 90%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.approach-card-title {
  font-size: 1.5em;
  font-weight: 700;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
}

.approach-card-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #4338ca, #6366f1);
  border-radius: 2px;
}

/* Methods List */
.approach-methods-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.approach-method-item {
  display: flex;
  align-items: flex-start;
  height: 60px;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-method-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.approach-method-item:nth-child(1) {
  animation-delay: 0.2s;
}

.approach-method-item:nth-child(2) {
  animation-delay: 0.4s;
}

.approach-method-item:nth-child(3) {
  animation-delay: 0.6s;
}

.approach-method-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.approach-method-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.approach-icon-agile {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8, #60a5fa);
  color: white;
}

.approach-icon-kanban {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed, #a78bfa);
  color: white;
}

.approach-icon-feedback {
  background: linear-gradient(135deg, #10b981, #059669, #34d399);
  color: white;
}

.approach-method-content {
  flex: 1;
}

.approach-method-title {
  font-size: 1.3em;
  height: 25px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a, #3730a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
  transition: all 0.3s ease;
}

.approach-method-description {
  font-size: 1.05em;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Right column - Kanban Board */
.approach-kanban-column {
  flex: 1.5; /* Mehr Platz für das Bild */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  height: fit-content;
}

.approach-kanban-title {
  font-size: 1.6em;
  font-weight: 700;
  background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 35px 0;
  text-align: center;
  position: relative;
}

.approach-kanban-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(67, 56, 202, 0.3);
}

.approach-kanban-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.approach-kanban-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 8px 25px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.approach-kanban-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(139, 92, 246, 0.15),
    rgba(16, 185, 129, 0.1)
  );
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 20px;
  z-index: 2;
}

.approach-kanban-image::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(67, 56, 202, 0.1),
    transparent,
    rgba(139, 92, 246, 0.1),
    transparent
  );
  z-index: 1;
}

/* Platzhalter mit korrektem Aspektverhältnis */
.approach-image-placeholder {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.approach-kanban-screenshot {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 3;
}

.approach-placeholder-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.approach-placeholder-content svg {
  margin-bottom: 15px;
  opacity: 0.7;
}

.approach-placeholder-size {
  font-size: 0.8em;
  opacity: 0.6;
  margin-top: 5px;
}

.approach-kanban-caption {
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  color: #64748b;
  margin-top: 10px;
  padding: 18px 25px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(139, 92, 246, 0.08),
    rgba(16, 185, 129, 0.05)
  );
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.approach-kanban-caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.approach-kanban-caption::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #4338ca, #6366f1, #8b5cf6);
  transition: width 0.4s ease;
  border-radius: 1px;
}

/* Add some background patterns for extra visual interest */
.approach-content-wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.approach-content-wrapper::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.approach-kanban-title-container,
.approach-card-title-container {
  margin-bottom: 10px;
}
