/* === CHOISIR AUTOMATISATION - NOUVEAU DESIGN === */

.choisir-automatisation-page {
  background: #fafafa;
}

/* === HERO SECTION === */
.automation-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.automation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(123, 44, 191, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.automation-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.automation-hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.automation-hero .gradient-text {
  background: linear-gradient(135deg, #00d9ff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.automation-hero .subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.6;
}

/* === AUTOMATION GRID === */
.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 80px 0;
}

/* === AUTOMATION CARD === */
.automation-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  border: 2px solid #e5e5e5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.automation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d9ff, #7b2cbf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.automation-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 80px rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.3);
}

/* Badge Populaire */
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
  z-index: 1;
}

/* Icon */
.automation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 44, 191, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.automation-card:hover .automation-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(123, 44, 191, 0.2));
}

.automation-icon i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #00d9ff, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Texte */
.automation-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.automation-card > p {
  font-size: 1rem;
  color: #6a6a6a;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 0;
}

/* Features List */
.automation-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.automation-features li {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
  padding: 10px 0 10px 32px;
  position: relative;
}

.automation-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
  font-size: 1.2rem;
}

/* Price */
.automation-price {
  font-size: 2rem;
  font-weight: 900;
  color: #0a0a0a;
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.automation-price small {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a7a7a;
  margin-top: 8px;
  letter-spacing: 0;
}

/* Button */
.btn-choose {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.3);
}

.btn-choose:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.5);
}

/* Pack Complet */
.pack-complet {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 20px auto 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.03), rgba(245, 158, 11, 0.03));
  border-color: rgba(251, 191, 36, 0.3);
}

.pack-complet::before {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.pack-complet:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 24px 80px rgba(251, 191, 36, 0.2);
}

.pack-complet .automation-icon {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
}

.pack-complet .automation-icon i {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pack-complet .btn-choose {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.35);
}

.pack-complet .btn-choose:hover {
  box-shadow: 0 16px 48px rgba(251, 191, 36, 0.5);
}

.pack-complet .automation-price small:last-child {
  color: #f59e0b;
  font-weight: 800;
  margin-top: 12px;
}

/* === CTA SECTION === */
.cta-section-automation {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-automation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section-automation .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.cta-section-automation h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.cta-section-automation p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: linear-gradient(135deg, #00d9ff, #0077ff);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0, 217, 255, 0.35);
}

.btn-cta-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 217, 255, 0.5);
}

/* === FOOTER === */
.footer-unified {
  background: #0a0a0a;
  padding: 40px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-unified p {
  margin: 0;
  font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .automation-hero h1 {
    font-size: 3rem;
  }
  
  .automation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .pack-complet .automation-features {
    columns: 1 !important;
  }
}

@media (max-width: 767px) {
  .automation-hero {
    padding: 70px 0;
  }
  
  .automation-hero h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  
  .automation-hero .subtitle {
    font-size: 1.05rem;
  }
  
  .automation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 60px 0;
  }
  
  .automation-card {
    padding: 32px 24px;
  }
  
  .automation-icon {
    width: 70px;
    height: 70px;
  }
  
  .automation-icon i {
    font-size: 2rem;
  }
  
  .automation-card h3 {
    font-size: 1.3rem;
  }
  
  .automation-price {
    font-size: 1.6rem;
  }
  
  .cta-section-automation {
    padding: 70px 0;
  }
  
  .cta-section-automation h2 {
    font-size: 2rem;
  }
  
  .cta-section-automation p {
    font-size: 1.05rem;
  }
  
  .btn-cta-main {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }
}
