/* ============================================
   CREAZOT - Logiciels & Services
   Charte graphique et styles globaux
   ============================================ */

:root {
  --color-primary: #5B5EA6;
  --color-secondary: #8B4F8A;
  --color-accent: #C74B7A;
  --color-dark: #2D2B55;
  --color-darker: #1E1C3F;
  --color-light: #F7F5FB;
  --color-white: #FFFFFF;
  --color-text: #3A3650;
  --color-text-light: #6E6A80;
  --color-border: #E8E4F0;
  --gradient-brand: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  --gradient-hero: linear-gradient(160deg, var(--color-darker) 0%, var(--color-dark) 40%, var(--color-secondary) 100%);
  --gradient-subtle: linear-gradient(135deg, #f0ecf7 0%, #fdf0f5 100%);
  --shadow-sm: 0 2px 8px rgba(91, 94, 166, 0.08);
  --shadow-md: 0 4px 20px rgba(91, 94, 166, 0.12);
  --shadow-lg: 0 8px 40px rgba(91, 94, 166, 0.16);
  --shadow-card: 0 2px 16px rgba(91, 94, 166, 0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-main);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-accent); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 44px;
  width: auto;
}

.navbar.scrolled .navbar-brand img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-white);
  transition: all var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  background: var(--color-light);
  color: var(--color-primary);
}

.nav-cta {
  background: var(--gradient-brand) !important;
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(199, 75, 122, 0.3);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger span {
  width: 24px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 4px;
  transition: all var(--transition);
}

.navbar.scrolled .burger span {
  background: var(--color-dark);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(199, 75, 122, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-white), transparent);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #E8A0BF, #C74B7A, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-wrapper img {
  width: 240px;
  height: 240px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.hero-icon-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-icon-ring:nth-child(2) {
  width: 300px; height: 300px;
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero-icon-ring:nth-child(3) {
  width: 360px; height: 360px;
  animation: pulse-ring 4s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

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

/* ============================================
   BOUTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(199, 75, 122, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(199, 75, 122, 0.35);
  color: var(--color-white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 100px 0;
}

.section-light { background: var(--color-light); }
.section-gradient { background: var(--gradient-subtle); }
.section-dark {
  background: var(--gradient-hero);
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(91, 94, 166, 0.1), rgba(199, 75, 122, 0.1));
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
}

/* ============================================
   CARTES SERVICES
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.services-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 968px) {
  .services-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid.grid-4 { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  background: var(--gradient-subtle);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: all var(--transition);
}

.service-card .learn-more:hover {
  gap: 10px;
  color: var(--color-accent);
}

/* ============================================
   SECTION OCÉAN INDIEN
   ============================================ */

.oi-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.oi-map-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.oi-globe {
  font-size: 10rem;
  opacity: 0.12;
  position: absolute;
  user-select: none;
}

.oi-territories {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  z-index: 1;
}

.oi-territory {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.oi-territory:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.oi-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
  position: relative;
}

.oi-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  opacity: 0.3;
  animation: oi-pulse 2s ease-in-out infinite;
}

.oi-territory-1 .oi-dot { background: var(--color-primary); }
.oi-territory-2 .oi-dot { background: var(--color-secondary); }
.oi-territory-3 .oi-dot { background: var(--color-accent); }
.oi-territory-4 .oi-dot { background: var(--color-dark); }

.oi-territory-hq .oi-dot {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 4px rgba(232, 69, 139, 0.25);
}

.oi-territory-hq .oi-label {
  font-weight: 700;
}

.oi-territory-hq .oi-label small {
  font-size: 0.75em;
  font-weight: 500;
  opacity: 0.7;
}

.oi-territory-1 .oi-dot::after { animation-delay: 0s; }
.oi-territory-2 .oi-dot::after { animation-delay: 0.5s; }
.oi-territory-3 .oi-dot::after { animation-delay: 1s; }
.oi-territory-4 .oi-dot::after { animation-delay: 1.5s; }

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

.oi-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.oi-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oi-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.oi-detail-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-lg);
}

.oi-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--gradient-subtle);
  flex-shrink: 0;
}

.oi-detail-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.oi-detail-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .oi-zone {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .oi-map-area {
    min-height: 200px;
  }

  .oi-globe {
    font-size: 7rem;
  }

  .oi-territories {
    gap: 12px;
  }

  .oi-territory {
    padding: 12px 16px;
  }
}

/* ============================================
   TIMELINE MÉTHODE (horizontale)
   ============================================ */

.timeline {
  display: flex;
  position: relative;
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-radius: 3px;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 12px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.timeline-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(91, 94, 166, 0.3);
  transition: all var(--transition);
}

.timeline-item:hover .timeline-step {
  transform: scale(1.15);
  box-shadow: 0 6px 24px rgba(91, 94, 166, 0.4);
}

.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  width: 100%;
  text-align: center;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  background: var(--gradient-subtle);
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.timeline-content p {
  color: var(--color-text-light);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 968px) {
  .timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 580px) {
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
  }

  .timeline::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding: 0 0 0 64px;
  }

  .timeline-marker {
    position: absolute;
    left: 0;
    margin-bottom: 0;
  }

  .timeline-step {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-content {
    text-align: left;
  }

  .timeline-content::before {
    top: 16px;
    left: -10px;
    transform: rotate(-45deg);
  }

  .timeline-icon {
    margin: 0 0 14px;
  }
}

/* ============================================
   CHIFFRES / STATS
   ============================================ */

.stats {
  padding: 60px 0;
  background: var(--gradient-brand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 4px;
  font-weight: 800;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================
   POURQUOI NOUS
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(199, 75, 122, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ============================================
   SERVICES PAGE - DETAIL
   ============================================ */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.service-detail-visual {
  background: var(--gradient-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  font-size: 5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.service-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  min-width: 20px;
}

/* ============================================
   PAGE HEADER (pages intérieures)
   ============================================ */

.page-header {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-white), transparent);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   A PROPOS
   ============================================ */

.about-headline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.about-headline h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-headline h2 em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-headline-sub {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.about-headline-sub strong {
  color: var(--color-text);
}

/* ── Piliers ── */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.about-pillar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.about-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}

.about-pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--gradient-subtle);
  border-radius: 16px;
}

.about-pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-text);
}

.about-pillar p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── Scope / Bandeau ── */
.about-scope {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: white;
}

.about-scope-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-scope-text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: white;
}

.about-scope-text p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.about-scope-locations {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.about-location strong {
  opacity: 1;
}

.about-loc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.about-location-hq .about-loc-dot {
  width: 14px;
  height: 14px;
  background: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.about-location-hq {
  font-size: 1.05rem;
  opacity: 1;
}

@media (max-width: 968px) {
  .about-pillars { grid-template-columns: 1fr; }
  .about-scope-inner { grid-template-columns: 1fr; gap: 32px; }
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info { padding-top: 20px; }

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: all var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(91, 94, 166, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* ============================================
   PAGE MENTIONS LÉGALES
   ============================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-dark);
}

.legal-block h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.legal-block p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.legal-block ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.legal-block a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition);
}

.legal-block a:hover {
  color: var(--color-accent);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.93rem;
}

.legal-table tr {
  border-bottom: 1px solid var(--color-border);
}

.legal-table td {
  padding: 12px 16px;
  color: var(--color-text-light);
  vertical-align: top;
}

.legal-table td:first-child {
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
  width: 240px;
}

.legal-table a {
  color: var(--color-primary);
  font-weight: 500;
}

.legal-table a:hover {
  color: var(--color-accent);
}

.legal-update {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.legal-update p {
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .legal-table td:first-child {
    white-space: normal;
    width: auto;
    display: block;
    padding-bottom: 2px;
  }

  .legal-table td:last-child {
    display: block;
    padding-top: 2px;
    padding-bottom: 14px;
  }

  .legal-table tr {
    display: block;
    padding: 4px 0;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-darker);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }

  .hero-visual { order: -1; }

  .hero-icon-wrapper {
    width: 240px;
    height: 240px;
  }

  .hero-icon-wrapper img { width: 160px; height: 160px; }
  .hero-icon-ring:nth-child(2) { width: 200px; height: 200px; }
  .hero-icon-ring:nth-child(3) { width: 240px; height: 240px; }

  .btn-group { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail:nth-child(even) { direction: ltr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-darker);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 12px 16px !important;
    width: 100%;
    border-radius: var(--radius-sm) !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--color-white) !important;
  }

  .burger { display: flex; }

  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) { opacity: 0; }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section { padding: 64px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .stat-item h3 { font-size: 2rem; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .service-card { padding: 28px 24px; }
  .contact-form { padding: 24px; }
}

/* ============================================
   OVERLAY menu mobile
   ============================================ */

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active { display: block; }

/* ============================================
   DEUX PÔLES PRINCIPAUX
   ============================================ */

.poles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pole-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.pole-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: height 0.4s ease;
}

.pole-card:hover::before {
  height: 6px;
}

.pole-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pole-logiciel {
  background: linear-gradient(170deg, #FAFAFF 0%, #F0EDF8 100%);
}

.pole-logiciel::before {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.pole-communication {
  background: linear-gradient(170deg, #FFF8FA 0%, #FCF0F4 100%);
}

.pole-communication::before {
  background: linear-gradient(90deg, var(--color-accent), #E8658A);
}

.pole-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.pole-logiciel .pole-icon {
  background: linear-gradient(135deg, rgba(91, 94, 166, 0.12), rgba(139, 79, 138, 0.12));
}

.pole-communication .pole-icon {
  background: linear-gradient(135deg, rgba(199, 75, 122, 0.12), rgba(232, 101, 138, 0.12));
}

.pole-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pole-card > p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.pole-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pole-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.pole-features li .check {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.pole-logiciel .pole-features .check {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
}

.pole-communication .pole-features .check {
  background: linear-gradient(135deg, var(--color-accent), #E8658A);
  color: white;
}

.pole-card .btn {
  align-self: flex-start;
}

/* Sous-sections ERP (Harel / Odoo) */
.erp-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}

.erp-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.erp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.erp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.erp-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(91, 94, 166, 0.1);
}

.erp-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.erp-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.erp-card-header {
  margin-bottom: 16px;
}

.erp-logo {
  height: 36px;
  width: auto;
}

.erp-card h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.erp-card > p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.erp-card .service-list {
  font-size: 0.9rem;
}

.erp-card .service-list li {
  font-size: 0.9rem;
}

/* Page services : sections pôles */
.pole-section {
  padding: 80px 0;
}

.pole-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-border);
}

.pole-section-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.pole-section-header h2 {
  font-size: 2rem;
  margin: 0;
}

.pole-section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin: 4px 0 0;
}

.pole-subsections {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pole-subsection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pole-subsection:nth-child(even) {
  direction: rtl;
}

.pole-subsection:nth-child(even) > * {
  direction: ltr;
}

.pole-subsection-content h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.pole-subsection-content > p {
  color: var(--color-text-light);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pole-subsection-visual {
  background: var(--gradient-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  font-size: 4.5rem;
}

@media (max-width: 968px) {
  .poles-grid { grid-template-columns: 1fr; }
  .erp-solutions { grid-template-columns: 1fr; }
  .pole-subsection { grid-template-columns: 1fr; gap: 28px; }
  .pole-subsection:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .pole-card { padding: 32px 24px; }
  .pole-card h3 { font-size: 1.35rem; }
  .pole-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================
   PAGE LOGICIELS — Pro / Tech / Structuré
   ============================================ */

.page-tech {
  --tech-bg: #FAFAFC;
  --tech-surface: #F0F1F8;
  --tech-card: #FFFFFF;
  --tech-border: #E2E0EF;
  --tech-accent: #4F46E5;
  --tech-accent2: #7C3AED;
  --tech-accent-light: rgba(79, 70, 229, 0.08);
  --tech-green: #059669;
  --tech-navy: #1E1B4B;
  --tech-text: #2D2A45;
  --tech-text-muted: #6B6889;
}

.page-tech body,
.page-tech {
  background: var(--tech-bg);
  color: var(--tech-text);
}

.page-tech .navbar.scrolled {
  background: rgba(250, 250, 252, 0.95);
  backdrop-filter: blur(20px);
}

.tech-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: linear-gradient(170deg, #1E1B4B 0%, #2D2A6E 40%, #3730A3 80%, #4F46E5 100%);
  position: relative;
  overflow: hidden;
}

.tech-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.tech-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--tech-bg), transparent);
  pointer-events: none;
}

.tech-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tech-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: white;
  margin-bottom: 20px;
}

.tech-hero h1 .tech-highlight {
  background: linear-gradient(135deg, #A5B4FC, #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-hero > .container > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tech-tag {
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'SF Mono', 'Fira Code', monospace;
  backdrop-filter: blur(4px);
}

.page-tech .section {
  background: var(--tech-bg);
}

.page-tech .section-light {
  background: var(--tech-surface);
}

.page-tech .section-header h2 {
  color: var(--tech-navy);
}

.page-tech .section-header p {
  color: var(--tech-text-muted);
}

.page-tech .section-label {
  background: var(--tech-accent-light);
  color: var(--tech-accent);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.tech-service-card {
  background: var(--tech-card);
  border: 1px solid var(--tech-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tech-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tech-accent), var(--tech-accent2));
  opacity: 0;
  transition: opacity var(--transition);
}

.tech-service-card:hover {
  border-color: rgba(79, 70, 229, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(79, 70, 229, 0.1);
}

.tech-service-card:hover::before {
  opacity: 1;
}

.tech-service-card .service-icon {
  background: linear-gradient(135deg, var(--tech-accent-light), rgba(79, 70, 229, 0.08));
  border: 1px solid rgba(79, 70, 229, 0.1);
  width: 72px;
  height: 72px;
  font-size: 2rem;
  margin-bottom: 28px;
}

.tech-service-card h3 {
  color: var(--tech-navy);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.tech-service-card .card-highlight {
  color: var(--tech-accent);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: var(--tech-accent-light);
  border-left: 3px solid var(--tech-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tech-service-card p {
  color: var(--tech-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tech-service-card .learn-more {
  color: var(--tech-accent);
}

.page-tech .service-list li {
  color: var(--tech-text);
}

.page-tech .service-list li::before {
  color: var(--tech-accent);
}

.page-tech .pole-subsection-content h3 {
  color: var(--tech-navy);
}

.page-tech .pole-subsection-content > p {
  color: var(--tech-text-muted);
}

.page-tech .pole-subsection-visual {
  background: var(--tech-surface);
  border: 1px solid var(--tech-border);
}

.page-tech .erp-card {
  background: var(--tech-card);
  border-color: var(--tech-border);
  box-shadow: var(--shadow-card);
}

.page-tech .erp-card h4 {
  color: var(--tech-navy);
}

.page-tech .erp-card > p {
  color: var(--tech-text-muted);
}

.page-tech .erp-card.featured {
  border-color: var(--tech-accent);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(79, 70, 229, 0.1);
  background: linear-gradient(175deg, #FAFAFF 0%, #F5F3FF 100%);
}

.page-tech .erp-card .service-list li {
  color: var(--tech-text);
}

.page-tech .erp-badge {
  background: linear-gradient(135deg, var(--tech-accent), var(--tech-accent2));
}

.page-tech .erp-logo {
  filter: none;
}

.page-tech .erp-card.featured .erp-logo {
  filter: brightness(0) saturate(100%) invert(22%) sepia(95%) saturate(3000%) hue-rotate(240deg) brightness(92%);
}

.page-tech .pole-section-header {
  border-bottom-color: var(--tech-border);
}

.page-tech .pole-section-header h2 {
  color: var(--tech-navy);
}

.page-tech .pole-section-header p {
  color: var(--tech-text-muted);
}

.page-tech .cta-section {
  background: linear-gradient(160deg, #1E1B4B 0%, #3730A3 50%, #4F46E5 100%);
}

.page-tech .footer {
  background: var(--tech-navy);
}

/* Code snippet decoration */
.code-block-deco {
  background: #1E1B4B;
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  overflow: hidden;
}

.code-block-deco .code-line-accent {
  color: #A5B4FC;
}

.code-block-deco .code-line-green {
  color: #34D399;
}

.code-block-deco .code-line-muted {
  color: rgba(255, 255, 255, 0.25);
}

/* Audit card decoration */
.audit-card-deco {
  background: #1E1B4B;
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
}

.audit-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audit-card-icon {
  font-size: 1.5rem;
}

.audit-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #A5B4FC;
}

.audit-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.audit-check.done {
  color: rgba(255, 255, 255, 0.85);
}

.audit-check.done .check-icon {
  color: #34D399;
  background: rgba(52, 211, 153, 0.12);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.audit-check.active {
  color: #A5B4FC;
  font-weight: 600;
}

.audit-check.active .check-icon {
  color: #A5B4FC;
  background: rgba(165, 180, 252, 0.12);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.audit-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audit-progress-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.audit-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.audit-progress-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #4F46E5, #34D399);
  border-radius: 3px;
  animation: progress-grow 1.5s ease-out forwards;
}

@keyframes progress-grow {
  from { width: 0; }
  to { width: 75%; }
}

.audit-progress-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #34D399;
}

/* ============================================
   PAGE COMMUNICATION — Ambiance Fun / Fraîche
   ============================================ */

.page-com {
  --com-bg: #FFFBFD;
  --com-surface: #FFF5F8;
  --com-accent: #E8458B;
  --com-accent2: #FF6B9D;
  --com-accent3: #FFB5D0;
  --com-purple: #9B59B6;
  --com-yellow: #FFD93D;
  --com-blue: #6DC5E8;
  --com-text: #3A2D3E;
  --com-text-muted: #8A7B90;
}

.page-com body,
.page-com {
  background: var(--com-bg);
}

.com-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: linear-gradient(160deg, #FFE8F0 0%, #FFF0F5 30%, #FFF8FB 60%, #F8F0FF 100%);
  position: relative;
  overflow: hidden;
}

.com-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 69, 139, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.com-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.com-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.com-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--com-text);
  margin-bottom: 20px;
}

.com-hero h1 .com-highlight {
  background: linear-gradient(135deg, var(--com-accent), var(--com-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.com-hero > .container > p {
  color: var(--com-text-muted);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.com-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.com-bubble {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.com-bubble:hover {
  transform: scale(1.08) rotate(-2deg);
}

.com-bubble-pink {
  background: #FFE0EC;
  color: #C74B7A;
}

.com-bubble-purple {
  background: #EDE0FF;
  color: #7B42A0;
}

.com-bubble-blue {
  background: #DFF0FA;
  color: #3A8AB5;
}

.com-bubble-yellow {
  background: #FFF5D6;
  color: #B8920A;
}

.page-com .section-light {
  background: var(--com-surface);
}

.page-com .section-label {
  background: linear-gradient(135deg, rgba(232, 69, 139, 0.1), rgba(155, 89, 182, 0.1));
  color: var(--com-accent);
}

.page-com .section-header h2 {
  color: var(--com-text);
}

.com-service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(232, 69, 139, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.com-service-card:hover {
  border-color: var(--com-accent3);
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 12px 36px rgba(232, 69, 139, 0.12);
}

.com-service-card .service-icon {
  background: linear-gradient(135deg, #FFE0EC, #EDE0FF);
  border: none;
}

.com-service-card h3 {
  color: var(--com-text);
  font-size: 1.2rem;
}

.com-service-card p {
  color: var(--com-text-muted);
}

.com-service-card .learn-more {
  color: var(--com-accent);
}

.page-com .pole-subsection-visual {
  background: linear-gradient(135deg, #FFE8F0, #EDE0FF);
  border: none;
  position: relative;
  overflow: hidden;
}

/* ── Visual Branding (Identité visuelle) ── */
.visual-branding .brand-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 220px;
}

.brand-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #E8457B);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.3);
}

.brand-logo-circle span {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}

.brand-colors {
  display: flex;
  gap: 10px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.visual-branding:hover .color-swatch {
  transform: translateY(-4px);
}

.visual-branding:hover .color-swatch:nth-child(1) { transition-delay: 0s; }
.visual-branding:hover .color-swatch:nth-child(2) { transition-delay: 0.05s; }
.visual-branding:hover .color-swatch:nth-child(3) { transition-delay: 0.1s; }
.visual-branding:hover .color-swatch:nth-child(4) { transition-delay: 0.15s; }

.brand-typo-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.typo-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(79, 70, 229, 0.15);
}

.typo-line.thin {
  height: 6px;
  background: rgba(232, 69, 123, 0.12);
}

/* ── Visual Print (Supports de communication) ── */
.visual-print .print-stack {
  position: relative;
  width: 180px;
  height: 220px;
}

.print-card {
  position: absolute;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.print-card.card-back {
  width: 160px;
  height: 200px;
  top: 0;
  left: 20px;
  transform: rotate(6deg);
  background: linear-gradient(135deg, #EDE0FF, #d4c4f5);
}

.print-card.card-mid {
  width: 160px;
  height: 200px;
  top: 5px;
  left: 10px;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, #FFE0EC, #f5c4d9);
}

.print-card.card-front {
  width: 160px;
  height: 200px;
  top: 10px;
  left: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.visual-print:hover .card-back {
  transform: rotate(10deg) translateX(8px);
}

.visual-print:hover .card-mid {
  transform: rotate(-6deg) translateX(-5px);
}

.visual-print:hover .card-front {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.print-card-header {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4F46E5, #E8457B);
}

.print-card-line {
  height: 8px;
  border-radius: 4px;
  background: #EEECF5;
}

.print-card-block {
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFF0F5, #F0ECFF);
  min-height: 40px;
}

.page-com .pole-subsection-content h3 {
  color: var(--com-text);
}

.page-com .pole-subsection-content > p {
  color: var(--com-text-muted);
}

.page-com .service-list li::before {
  color: var(--com-accent);
}

.page-com .cta-section {
  background: linear-gradient(160deg, #3A2D55 0%, #5B3A6E 40%, #C74B7A 100%);
}

/* Floating shapes decoration */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: com-float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px; height: 80px;
  background: var(--com-accent3);
  top: 15%; left: 8%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 50px; height: 50px;
  background: #EDE0FF;
  top: 60%; right: 12%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 35px; height: 35px;
  background: var(--com-yellow);
  top: 30%; right: 20%;
  animation-delay: 4s;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes com-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

@media (max-width: 768px) {
  .tech-hero, .com-hero { padding: 120px 0 60px; min-height: auto; }
  .tech-tags, .com-bubbles { gap: 8px; }
  .page-tech .nav-links a { color: rgba(255,255,255,0.8) !important; }
}
