/* =============================================
   AURLY INTÉGRATION
   Accent : #00FC43 (vert néon)
   Fond   : #141521 / #272940 (navy)
   ============================================= */

:root {
  --accent: #00FC43;
  --accent-dark: #00CC36;
  --accent-shadow: rgba(0, 252, 67, 0.25);
  --accent-light: rgba(0, 252, 67, 0.1);
  --accent-border: rgba(0, 252, 67, 0.2);
}

/* =============================================
   HERO INTÉGRATION
   ============================================= */
.hero-integration {
  background: var(--navy-900);
}

/* Halo décoratif */
.hero-integration::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,252,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-integration .hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge partenaire Zoho */
.zoho-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,252,67,0.08);
  border: 1px solid rgba(0,252,67,0.2);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.zoho-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

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

/* Grille produits Zoho */
.hero-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.zoho-product {
  background: var(--navy-800);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(155,163,255,0.08);
  transition: all var(--transition);
}

.zoho-product:hover {
  border-color: rgba(0,252,67,0.3);
  transform: translateY(-3px);
}

.zoho-product .product-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.zoho-product .product-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.zoho-product.featured {
  background: var(--accent);
  grid-column: span 2;
  border-color: transparent;
}

.zoho-product.featured .product-name {
  color: rgba(20,21,33,0.8);
  font-weight: 700;
}

/* =============================================
   BANDE CERTIFICATIONS
   ============================================= */
.certif-section {
  background: var(--accent);
  padding: 1.5rem 0;
}

.certif-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.certif-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.15rem;
}

.certif-text p {
  font-size: 0.85rem;
  color: rgba(20,21,33,0.65);
}

.certif-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.certif-badge {
  background: rgba(20,21,33,0.12);
  border: 1px solid rgba(20,21,33,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-900);
}

/* =============================================
   SERVICES (fond blanc)
   ============================================= */
.services-section {
  background: var(--white);
}

.services-section .section-header h2 { color: var(--navy-900); }
.services-section .section-header p { color: rgba(20,21,33,0.55); }
.services-section .section-label { color: var(--accent-dark); }

.service-card {
  background: #fff;
  border: 1.5px solid rgba(0,252,67,0.12);
  border-top: 3px solid var(--accent);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0,252,67,0.08);
}

.service-card .card-icon {
  background: rgba(0,252,67,0.08);
}

.service-card h3 { color: var(--navy-900); }
.service-card p { color: rgba(20,21,33,0.6); }

/* =============================================
   PROCESSUS (fond navy)
   ============================================= */
.process-section { background: var(--navy-900); }

/* =============================================
   RÉGION (fond blanc)
   ============================================= */
.region-section { background: var(--white); }

.region-section .section-header h2 { color: var(--navy-900); }
.region-section .section-header p { color: rgba(20,21,33,0.55); }
.region-section .section-label { color: var(--accent-dark); }

.region-box {
  background: #F4F5FF;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid rgba(0,252,67,0.15);
}

.region-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-900);
  margin: 1rem 0 0.5rem;
}

.region-box p {
  color: rgba(20,21,33,0.55);
  margin-bottom: 1.5rem;
}

.region-cities {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.city-tag {
  background: var(--white);
  border: 1.5px solid rgba(0,252,67,0.3);
  color: var(--navy-900);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
}

/* =============================================
   TÉMOIGNAGES (fond navy-800)
   ============================================= */
.testimonials-section { background: var(--navy-800); }

.testimonial-card {
  position: relative;
  padding-top: 2.5rem;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: var(--space-md);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--accent);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-integration {
  background: var(--accent);
  padding: var(--space-lg) 0;
  text-align: center;
}

.cta-integration h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
}

.cta-integration p {
  font-size: 1rem;
  color: rgba(20,21,33,0.65);
  max-width: 480px;
  margin: 0 auto var(--space-md);
}

.cta-integration .btn-dark {
  background: var(--navy-900);
  color: var(--accent);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.cta-integration .btn-dark:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
}

/* =============================================
   SECTION ERP & OUTILS MÉTIER
   ============================================= */
.erp-section { background: #F4F5FF; }

.erp-section .section-header h2 { color: var(--navy-900); }
.erp-section .section-header p { color: rgba(20,21,33,0.6); }
.erp-section .section-label { color: var(--accent-dark); }

.erp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.erp-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(0,252,67,0.1);
  border-top: 3px solid var(--accent);
  transition: all var(--transition);
}

.erp-card:hover {
  box-shadow: 0 12px 32px rgba(0,252,67,0.08);
  border-color: rgba(0,252,67,0.3);
  transform: translateY(-3px);
}

.erp-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.erp-icon {
  font-size: 1.6rem;
}

.erp-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.erp-card > p {
  font-size: 0.9rem;
  color: rgba(20,21,33,0.6);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.erp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.erp-features li {
  font-size: 0.82rem;
  color: rgba(20,21,33,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.erp-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.erp-cta {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.erp-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.erp-cta-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.erp-cta-text span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .erp-grid { grid-template-columns: 1fr; }
  .erp-cta { flex-direction: column; text-align: center; }
  .erp-cta .btn { width: 100%; justify-content: center; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-integration .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .certif-inner { flex-direction: column; text-align: center; }
}
