/* AI Maturity Area - Diseño Moderno y Atractivo */
.ai-maturity-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.ai-maturity-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="dot-gradient" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(72,219,216,0.3)"/><stop offset="100%" stop-color="rgba(72,219,216,0)"/></radialGradient></defs><g><circle cx="100" cy="100" r="2" fill="url(%23dot-gradient)"/><circle cx="300" cy="200" r="1" fill="rgba(72,219,216,0.2)"/><circle cx="500" cy="150" r="1.5" fill="rgba(72,219,216,0.25)"/><circle cx="700" cy="250" r="1" fill="rgba(72,219,216,0.2)"/><circle cx="900" cy="180" r="2" fill="url(%23dot-gradient)"/></g></svg>');
  animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Header Section */
.ai-maturity-area .section-header {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.ai-maturity-area .section-title {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #48DBD8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 40px;
}

.ai-maturity-area .highlight {
  background: linear-gradient(45deg, #48DBD8, #6BE3AA, #FFE66D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(15deg); }
}

.ai-maturity-area .text {
  font-size: 24px;
  line-height: 1.8;
  color: #495057;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}

/* Journey Container */
.maturity-journey {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Timeline Design - Líneas múltiples de conexión */
.journey-timeline {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

/* Conectores de evolución individuales - Posicionamiento ajustado por altura */
.evolution-connectors {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0; /* Eliminado el padding-top fijo */
  z-index: 10;
}

.evolution-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #48DBD8, #6BE3AA);
  border-radius: 2px;
  opacity: 0.7;
  transition: all 0.3s ease;
  width: 100%;
}

.evolution-line::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid #6BE3AA;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.evolution-line::after {
  content: attr(data-role);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #48DBD8;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #48DBD8;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(72, 219, 216, 0.2);
}

/* Posicionamiento específico para cada línea basado en la altura de los roles */
.evolution-line:nth-child(1) {
  /* Recepcionista IA - Primer elemento */
  top: calc(200px + 50px + 60px); /* Header height + roles-grid padding + mitad del primer role-item */
}

.evolution-line:nth-child(2) {
  /* Atención al cliente IA - Segundo elemento */
  top: calc(200px + 50px + 60px + 170px); /* Primer elemento + altura del primer role-item + margin */
}

.evolution-line:nth-child(3) {
  /* Inside Sales IA - Tercer elemento */
  top: calc(200px + 50px + 60px + 340px); /* Segundo elemento + altura del segundo role-item + margin */
}

/* Eliminar las clases de posicionamiento vertical específico */
.evolution-line-1,
.evolution-line-2,
.evolution-line-3 {
  /* Sin posicionamiento top específico */
}

/* Level Cards */
.level-card {
  background: white;
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  border: 3px solid transparent;
}

.level-card.junior {
  background-image: linear-gradient(white, white), linear-gradient(135deg, #48DBD8, #6BE3AA);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.level-card.senior {
  background-image: linear-gradient(white, white), linear-gradient(135deg, #FF6B6B, #FFE66D);
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.level-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.level-card.junior:hover {
  box-shadow: 0 40px 100px rgba(72, 219, 216, 0.25);
}

.level-card.senior:hover {
  box-shadow: 0 40px 100px rgba(255, 107, 107, 0.25);
}

/* Level Header */
.level-header {
  background: linear-gradient(135deg, #48DBD8 0%, #6BE3AA 100%);
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.level-card.senior .level-header {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
}

.level-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

.level-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.level-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.badge-icon {
  font-size: 24px;
  animation: bounce-rotate 2s ease-in-out infinite;
}

@keyframes bounce-rotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-5deg); }
  75% { transform: translateY(-3px) rotate(5deg); }
}

.badge-text {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.level-title {
  color: white;
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Roles Grid */
.roles-grid {
  padding: 50px 40px 40px;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.role-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #f8f9fa;
  position: relative;
  overflow: hidden;
}

.role-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(72, 219, 216, 0.2), transparent);
  transition: all 0.5s ease;
}

.role-item:hover::before {
  left: 100%;
}

.role-item:hover {
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #48DBD8;
}

.role-item.enhanced {
  border: 2px solid rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
  position: relative;
}

/* Indicador visual de evolución en los roles enhanced */
.role-item.enhanced::after {
  content: '⬆️ MEJORADO';
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(45deg, #FF6B6B, #FFE66D);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  animation: glow-pulse 2s ease-in-out infinite;
  z-index: 10;
}

.role-item.enhanced:hover {
  border-color: #FF6B6B;
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
}

/* Role Header */
.role-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.role-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(72, 219, 216, 0.1) 0%, rgba(72, 219, 216, 0.2) 100%);
  border: 3px solid rgba(72, 219, 216, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.role-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.role-item:hover .role-icon::before {
  transform: translateX(100%);
}

.role-item.enhanced .role-icon {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.2) 100%);
  border-color: rgba(255, 107, 107, 0.3);
}

.role-item:hover .role-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(72, 219, 216, 0.3);
}

.role-item.enhanced:hover .role-icon {
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.role-title {
  font-size: 22px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0;
  flex-grow: 1;
  line-height: 1.3;
}

.upgrade-badge {
  background: linear-gradient(45deg, #FF6B6B, #FFE66D);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3); }
  50% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5); }
}

/* Role Content */
.role-description {
  margin-bottom: 25px;
}

.role-description p {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.role-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tag {
  background: linear-gradient(135deg, rgba(72, 219, 216, 0.1) 0%, rgba(72, 219, 216, 0.2) 100%);
  color: #48DBD8;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(72, 219, 216, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(72, 219, 216, 0.2), transparent);
  transition: left 0.5s ease;
}

.skill-tag:hover::before {
  left: 100%;
}

.skill-tag:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(72, 219, 216, 0.3);
}

.skill-tag.premium {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.2) 100%);
  color: #FF6B6B;
  border-color: rgba(255, 107, 107, 0.3);
}

.skill-tag.premium:hover {
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Final CTA - Diseño simplificado y elegante */
.maturity-conclusion {
  margin-top: 120px;
  background: linear-gradient(135deg, #1a2b3d 0%, #2c3e50 50%, #34495e 100%);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(26, 43, 61, 0.3);
}

.maturity-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(72, 219, 216, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(107, 227, 170, 0.1) 0%, transparent 50%);
  animation: subtleFloat 15s ease-in-out infinite;
}

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

.conclusion-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Mensaje principal simplificado */
.conclusion-main-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.conclusion-main-text .highlight {
  background: linear-gradient(45deg, #48DBD8, #6BE3AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Características clave en línea */
.key-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.key-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  font-weight: 600;
}

.key-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.key-feature .icon {
  font-size: 20px;
}

.key-feature .text {
  color: white;
  font-size: 16px;
  white-space: nowrap;
}

/* CTA principal */
.conclusion-cta {
  margin-top: 50px;
}

.conclusion-cta .wc-btn-primary {
  background: linear-gradient(135deg, #48DBD8 0%, #6BE3AA 100%);
  border: none;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(72, 219, 216, 0.4);
  text-transform: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  justify-content: center;
}

.conclusion-cta .wc-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.conclusion-cta .wc-btn-primary:hover::before {
  left: 100%;
}

.conclusion-cta .wc-btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(72, 219, 216, 0.6);
}

.conclusion-cta .wc-btn-primary svg {
  transition: all 0.3s ease;
}

.conclusion-cta .wc-btn-primary:hover svg {
  transform: translateX(5px);
}

/* Nota final minimalista */
.conclusion-note {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #48DBD8;
  font-style: italic;
}

.conclusion-note p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Media queries mejoradas */
@media (max-width: 1199px) {
  .maturity-conclusion {
    padding: 60px 40px;
  }
  
  .conclusion-main-text {
    font-size: 28px;
  }
  
  .key-features {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .maturity-conclusion {
    margin-top: 80px;
    padding: 50px 30px;
  }
  
  .conclusion-main-text {
    font-size: 26px;
  }
  
  .key-features {
    gap: 20px;
  }
  
  .key-feature {
    padding: 12px 20px;
  }
  
  .key-feature .text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .maturity-conclusion {
    border-radius: 20px;
    margin-top: 60px;
    padding: 40px 25px;
  }
  
  .conclusion-main-text {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .key-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .key-feature {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }
  
  .key-feature .text {
    white-space: normal;
    text-align: center;
  }
  
  .conclusion-cta .wc-btn-primary {
    padding: 18px 35px;
    font-size: 18px;
    min-width: 260px;
  }
}

@media (max-width: 480px) {
  .maturity-conclusion {
    padding: 30px 20px;
  }
  
  .conclusion-main-text {
    font-size: 20px;
  }
  
  .conclusion-cta .wc-btn-primary {
    width: 100%;
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .conclusion-note {
    padding: 15px;
  }
  
  .conclusion-note p {
    font-size: 14px;
  }
}

/* Benefits Section - Dynamic Light Theme Design */
.benefits-area {
  background: linear-gradient(135deg, #f8fafe 0%, #ffffff 50%, #f0f9ff 100%);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.benefits-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(72,219,216,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(107,227,170,0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,230,109,0.05) 0%, transparent 30%);
  animation: background-pulse 8s ease-in-out infinite;
}

.benefits-area::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(72,219,216,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  animation: dots-float 20s linear infinite;
  pointer-events: none;
}

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

@keyframes dots-float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

/* Header with Modern Typography */
.benefits-area .section-header {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.benefits-area .section-title {
  font-size: 64px;
  font-weight: 900;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 30%, #48DBD8 70%, #6BE3AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.benefits-area .section-title::after {
  content: '';
  position: fixed;
  bottom: -10px;
  left: 310px;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #48DBD8, #6BE3AA, #FFE66D);
  border-radius: 2px;
  transform: scaleX(0);
  animation: underline-grow 2s ease-out 1s forwards;
}

@keyframes underline-grow {
  to { transform: scaleX(1); }
}

.benefits-area .section-title .highlight {
  background: linear-gradient(45deg, #48DBD8, #6BE3AA, #FFE66D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  display: inline-block;
  animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 0px rgba(72, 219, 216, 0));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 15px rgba(72, 219, 216, 0.3));
    transform: scale(1.02);
  }
}

.benefits-area .text {
  font-size: 26px;
  line-height: 1.7;
  color: #4a5568;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  animation: fade-in-up 1s ease-out 0.5s forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dynamic Transformation Visual */
.benefits-transformation {
  margin-bottom: 120px;
  position: relative;
}

.transformation-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

/* Problem Box with Enhanced Negative Styling */
.problem-box {
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  backdrop-filter: blur(20px);
  border: 3px solid #e53e3e;
  border-radius: 30px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(229, 62, 62, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(229, 62, 62, 0.15), transparent);
  animation: rotate-gradient 4s linear infinite;
}

.problem-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 35px 70px rgba(229, 62, 62, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.problem-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.problem-badge {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  animation: shake-intense 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(229, 62, 62, 0.4));
}

@keyframes shake-intense {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  10% { transform: translateX(-10px) rotate(-3deg); }
  20% { transform: translateX(10px) rotate(3deg); }
  30% { transform: translateX(-8px) rotate(-2deg); }
  40% { transform: translateX(8px) rotate(2deg); }
  50% { transform: translateX(0) rotate(0deg); }
}

.problem-title {
  font-size: 32px;
  font-weight: 900;
  color: #c53030;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.problem-subtitle {
  font-size: 16px;
  color: #742a2a;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Solution Box with Enhanced Positive Styling */
.solution-box {
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
  backdrop-filter: blur(20px);
  border: 3px solid #38a169;
  border-radius: 30px;
  padding: 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(56, 161, 105, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, transparent, rgba(56, 161, 105, 0.15), transparent);
  animation: rotate-gradient 4s linear infinite reverse;
}

.solution-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 35px 70px rgba(56, 161, 105, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.solution-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.solution-badge {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
  animation: bounce-glow 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(56, 161, 105, 0.4));
}

@keyframes bounce-glow {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
    filter: drop-shadow(0 5px 15px rgba(56, 161, 105, 0.4));
  }
  50% { 
    transform: translateY(-8px) scale(1.1); 
    filter: drop-shadow(0 8px 25px rgba(56, 161, 105, 0.6));
  }
}

.solution-title {
  font-size: 32px;
  font-weight: 900;
  color: #2f855a;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.solution-subtitle {
  font-size: 16px;
  color: #276749;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Problem List Styles */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Enhanced Problem Items */
.problem-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: #742a2a;
  font-size: 16px;
  line-height: 1.6;
  padding: 15px;
  background: rgba(229, 62, 62, 0.1);
  border-radius: 15px;
  border-left: 5px solid #e53e3e;
  border: 2px solid rgba(229, 62, 62, 0.2);
  transition: all 0.3s ease;
  opacity: 1; /* Changed from 0 to 1 to make items visible by default */
  animation: slide-in-left 0.6s ease-out forwards;
  animation-delay: calc(0.1s * var(--delay, 1));
}

.problem-item:nth-child(1) { --delay: 1; }
.problem-item:nth-child(2) { --delay: 2; }
.problem-item:nth-child(3) { --delay: 3; }
.problem-item:nth-child(4) { --delay: 4; }
.problem-item:nth-child(5) { --delay: 5; }
.problem-item:nth-child(6) { --delay: 6; }

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.problem-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(229, 62, 62, 0.25);
  background: rgba(229, 62, 62, 0.15);
}

.problem-item-icon {
  font-size: 24px;
  color: #c53030;
  flex-shrink: 0;
  padding: 8px;
  background: rgba(229, 62, 62, 0.1);
  border-radius: 50%;
}

/* Solution List Styles */
.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Enhanced Solution Items */
.solution-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: #276749;
  font-size: 16px;
  line-height: 1.6;
  padding: 15px;
  background: rgba(56, 161, 105, 0.1);
  border-radius: 15px;
  border-left: 5px solid #38a169;
  border: 2px solid rgba(56, 161, 105, 0.2);
  transition: all 0.3s ease;
  opacity: 1; /* Changed from 0 to 1 to make items visible by default */
  animation: slide-in-right 0.6s ease-out forwards;
  animation-delay: calc(0.1s * var(--delay, 1));
  position: relative;
  overflow: hidden;
}

.solution-item:nth-child(1) { --delay: 1; }
.solution-item:nth-child(2) { --delay: 2; }
.solution-item:nth-child(3) { --delay: 3; }
.solution-item:nth-child(4) { --delay: 4; }
.solution-item:nth-child(5) { --delay: 5; }
.solution-item:nth-child(6) { --delay: 6; }

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.solution-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 161, 105, 0.2), transparent);
  transition: left 0.6s ease;
}

.solution-item:hover::after {
  left: 100%;
}

.solution-item:hover {
  transform: translateX(-8px);
  box-shadow: 0 12px 30px rgba(56, 161, 105, 0.25);
  background: rgba(56, 161, 105, 0.15);
}

.solution-item-icon {
  font-size: 24px;
  color: #2f855a;
  flex-shrink: 0;
  padding: 8px;
  background: rgba(56, 161, 105, 0.1);
  border-radius: 50%;
}

/* Remove all transformation arrow related styles */
.transformation-arrow,
.arrow-container,
.arrow-icon {
  display: none;
}

/* AI Lifecycle Section Styles - Updated */
.ai-lifecycle-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ai-lifecycle-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(72, 219, 216, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(107, 227, 170, 0.08) 0%, transparent 50%);
  animation: subtleFloat 15s ease-in-out infinite;
}

.ai-lifecycle-inner {
  position: relative;
  z-index: 2;
}

.ai-lifecycle-area .section-header {
  margin-bottom: 80px;
}

.ai-lifecycle-area .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 30px;
}

.ai-lifecycle-area .highlight {
  background: linear-gradient(45deg, #48DBD8, #6BE3AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.ai-lifecycle-area .text {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

/* Lifecycle Steps */
.lifecycle-steps-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr ;
  align-items: center;
  gap: 30px;
  margin: 80px 0;
  padding: 20px 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.lifecycle-step {
  opacity: 0;
  animation: step-appear 0.8s ease-out forwards;
  animation-delay: calc(var(--delay, 0) * 0.3s);
  position: relative;
}

.step-content {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 2px solid rgba(72, 219, 216, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(72, 219, 216, 0.1), rgba(72, 219, 216, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.step-content:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(72, 219, 216, 0.2), rgba(72, 219, 216, 0.3));
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.step-subtitle {
  font-size: 14px;
  color: #48DBD8;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-description {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Organic Arrow Design */
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 5;
}

.arrow-container {
  position: relative;
  width: 80px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-svg {
  width: 60px;
  height: 30px;
  color: #48DBD8;
  opacity: 0.8;
  transition: all 0.3s ease;
  animation: arrow-pulse 2.5s ease-in-out infinite;
}

.step-arrow:hover .arrow-svg {
  opacity: 1;
  transform: scale(1.1);
  color: #3DBFBA;
}

/* Arrow Background Effect */
.arrow-container::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(72, 219, 216, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { 
    transform: translateX(0) scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: translateX(8px) scale(1.05);
    opacity: 1;
  }
}

@keyframes pulse-bg {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.6;
  }
}

@keyframes step-appear {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design for Lifecycle */
@media (max-width: 1200px) {
  .lifecycle-steps-wrapper {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 25px;
  }
  
  .lifecycle-step:nth-child(7) {
    grid-column: 2 / 5;
    margin-top: 40px;
  }
  
  .lifecycle-step:nth-child(6),
  .lifecycle-step:nth-child(8) {
    display: none;
  }
}

@media (max-width: 991px) {
  .lifecycle-steps-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    height: 60px;
    margin: 20px 0;
  }
  
  .arrow-container {
    width: 60px;
    height: 80px;
  }
  
  .arrow-svg {
    width: 30px;
    height: 50px;
  }
  
  .lifecycle-step:nth-child(7) {
    grid-column: auto;
    margin-top: 0;
  }
  
  .lifecycle-step:nth-child(6),
  .lifecycle-step:nth-child(8) {
    display: flex;
  }
}

@media (max-width: 767px) {
  .ai-lifecycle-area {
    padding: 60px 0;
  }
  
  .step-content {
    padding: 30px 20px;
    min-height: 320px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 14px;
  }
  
  .arrow-container {
    width: 50px;
    height: 60px;
  }
  
  .arrow-svg {
    width: 25px;
    height: 40px;
  }
}
  
  .benefits-conclusion {
    padding: 60px 40px;
  }
  
  .conclusion-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .benefits-area .section-title {
    font-size: 36px;
    line-height: 1.1;
  }
  
  .benefits-area .text {
    font-size: 20px;
  }
  
  .problem-box,
  .solution-box {
    width: 100%;
    max-width: 350px;
    padding: 35px;
  }
  
  .arrow-container {
    width: 100px;
    height: 100px;
  }
  
  .arrow-icon {
    font-size: 32px;
  }
  
  .key-benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .benefit-card {
    padding: 35px 30px;
  }
  
  .benefits-conclusion {
    border-radius: 30px;
    padding: 50px 35px;
  }
  
  .conclusion-title {
    font-size: 28px;
  }
  
  .conclusion-text {
    font-size: 18px;
  }
  
  .conclusion-cta .wc-btn-primary {
    width: 100%;
    padding: 22px 40px;
    font-size: 18px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .benefits-area .section-title {
    font-size: 28px;
  }
  
  .benefits-area .text {
    font-size: 16px;
  }
  
  .problem-box,
  .solution-box {
    padding: 30px 25px;
  }
  
  .problem-title,
  .solution-title {
    font-size: 22px;
  }
  
  .benefits-conclusion {
    padding: 30px 20px;
  }
  
  .conclusion-title {
    font-size: 24px;
  }
  
  .conclusion-text {
    font-size: 15px;
  }
  
  .conclusion-cta .wc-btn-primary {
    padding: 16px 25px;
    font-size: 16px;
  }
  
  .conclusion-guarantee p {
    font-size: 14px;
  }
}

/* Key Benefits Grid - Missing Styles */
.key-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 80px 0;
  position: relative;
  z-index: 2;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(72, 219, 216, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #48DBD8, #6BE3AA);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(72, 219, 216, 0.3);
}

.benefit-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.benefit-description {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  flex-grow: 1;
}

/* Benefits Conclusion Styles */
.benefits-conclusion {
  background: linear-gradient(135deg, #1a2b3d 0%, #2c3e50 100%);
  border-radius: 25px;
  padding: 60px 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(26, 43, 61, 0.3);
}

.benefits-conclusion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(72, 219, 216, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(107, 227, 170, 0.1) 0%, transparent 50%);
  animation: subtleFloat 15s ease-in-out infinite;
}

.conclusion-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.conclusion-main {
  margin-bottom: 30px;
}

.conclusion-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.conclusion-title .highlight {
  background: linear-gradient(45deg, #48DBD8, #6BE3AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.conclusion-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
}

.conclusion-cta {
  margin-bottom: 30px;
}

.conclusion-cta .wc-btn-primary {
  background: linear-gradient(135deg, #48DBD8 0%, #6BE3AA 100%);
  border: none;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(72, 219, 216, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  min-width: 280px;
  justify-content: center;
}

.conclusion-cta .wc-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.conclusion-cta .wc-btn-primary:hover::before {
  left: 100%;
}

.conclusion-cta .wc-btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(72, 219, 216, 0.6);
  color: white;
}

.conclusion-guarantee {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.conclusion-guarantee p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.conclusion-guarantee strong {
  color: white;
  font-weight: 700;
}

/* Lifecycle Comparison Integrated - Card Design */
.lifecycle-comparison-integrated {
  margin-top: 100px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 30px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(72, 219, 216, 0.1);
}

.lifecycle-comparison-integrated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(72, 219, 216, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(107, 227, 170, 0.05) 0%, transparent 50%);
  animation: subtleFloat 20s ease-in-out infinite;
}

.comparison-container {
  position: relative;
  z-index: 2;
}

.features-showcase {
  padding: 60px 50px;
}

.features-title {
  font-size: 32px;
  font-weight: 800;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
  position: relative;
}

.features-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #48DBD8, #6BE3AA);
  border-radius: 2px;
}

/* Features Grid - Card Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(72, 219, 216, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 120px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(72, 219, 216, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(72, 219, 216, 0.3);
}

.feature-card:nth-child(odd) {
  border-left: 5px solid #48DBD8;
}

.feature-card:nth-child(even) {
  border-left: 5px solid #6BE3AA;
}

.feature-icon {
  font-size: 40px;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(72, 219, 216, 0.1), rgba(72, 219, 216, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(72, 219, 216, 0.2), rgba(72, 219, 216, 0.3));
}

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

.feature-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.feature-content p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

.cta-description {
  text-align: center;
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  text-align: center;
}

.main-cta-btn {
  background: linear-gradient(135deg, #48DBD8 0%, #6BE3AA 100%);
  border: none;
  padding: 22px 45px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(72, 219, 216, 0.4);
  text-decoration: none;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.main-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.main-cta-btn:hover::before {
  left: 100%;
}

.main-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(72, 219, 216, 0.6);
  color: white;
  text-decoration: none;
}

.btn-icon {
  font-size: 20px;
}

.main-cta-btn svg {
  transition: all 0.3s ease;
}

.main-cta-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive Design for Lifecycle Comparison */
@media (max-width: 991px) {
  .lifecycle-comparison-integrated {
    margin-top: 80px;
    border-radius: 25px;
  }
  
  .features-showcase {
    padding: 50px 40px;
  }
  
  .features-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .features-grid {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .feature-card {
    padding: 30px 25px;
    height: 110px;
  }
  
  .feature-icon {
    font-size: 35px;
    width: 60px;
    height: 60px;
  }
  
  .feature-content h4 {
    font-size: 18px;
  }
  
  .feature-content p {
    font-size: 15px;
  }
  
  .cta-description {
    font-size: 17px;
    margin-bottom: 35px;
  }
  
  .main-cta-btn {
    padding: 20px 40px;
    font-size: 18px;
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .lifecycle-comparison-integrated {
    margin-top: 60px;
    border-radius: 20px;
  }
  
  .features-showcase {
    padding: 40px 30px;
  }
  
  .features-title {
    font-size: 26px;
    margin-bottom: 35px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
  }
  
  .feature-card {
    padding: 25px 20px;
    height: 100px;
    gap: 15px;
  }
  
  .feature-icon {
    font-size: 30px;
    width: 50px;
    height: 50px;
  }
  
  .feature-content h4 {
    font-size: 17px;
  }
  
  .feature-content p {
    font-size: 14px;
  }
  
  .cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .main-cta-btn {
    width: 100%;
    min-width: auto;
    padding: 18px 30px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .features-showcase {
    padding: 30px 20px;
  }
  
  .features-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .feature-card {
    padding: 20px 15px;
    height: 90px;
    gap: 12px;
  }
  
  .feature-icon {
    font-size: 28px;
    width: 45px;
    height: 45px;
  }
  
  .feature-content h4 {
    font-size: 16px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
  
  .cta-description {
    font-size: 15px;
  }
  
  .main-cta-btn {
    padding: 16px 25px;
    font-size: 16px;
  }
}

/* ...existing code... */

