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

body {
  background: #0b1117;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px currentColor; }
  50% { opacity: 0.6; box-shadow: 0 0 4px currentColor; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
}

/* DÉSACTIVÉ - Remplacé par #matrix-bg */
#globeCanvas {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 100vh;
}

.hero-content {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.5s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 4px;
  font-family: 'Space Mono', monospace; /* FONT FIX: tag */
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #00ff88;
  margin-bottom: 30px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-white {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 10px;
}

.title-script {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.hero-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-text strong {
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #0dc4e7;
  border: none;
  color: #000;
}

.btn-primary:hover {
  background: #0bb3d4;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(13, 196, 231, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-secondary:hover {
  border-color: #0cf;
  color: #0cf;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 40px;
  background: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 4px;
  font-family: 'Space Mono', monospace; /* FONT FIX: tag */
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #0cf;
  margin-bottom: 24px;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #0cf;
  border-radius: 50%;
  box-shadow: 0 0 8px #0cf;
  animation: statusPulse 2s ease-in-out infinite;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.section-title .cyan {
  color: #0cf;
  text-shadow: 0 0 30px rgba(0, 204, 255, 0.5);
}

.section-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: linear-gradient(180deg, rgba(0, 15, 30, 0.9) 0%, rgba(0, 8, 20, 0.95) 100%);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 200, 255, 0.03) 0%,
    transparent 50%,
    rgba(0, 200, 255, 0.02) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-8px);
}

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

/* Short light beam that slides down on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: 0;
  width: 2px;
  height: 30%;
  background: linear-gradient(180deg, transparent, #0cf, transparent);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.8),
              0 0 20px rgba(0, 200, 255, 0.4);
  opacity: 0;
  transition: none;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
  animation: slideDown 1s ease forwards;
}

@keyframes slideDown {
  0% { top: -30%; }
  100% { top: 100%; }
}

@keyframes barPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes glowPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1),
                inset 0 0 20px rgba(0, 200, 255, 0.02);
  }
  50% { 
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.2),
                inset 0 0 30px rgba(0, 200, 255, 0.05);
  }
}

/* ===== CARD HEADER (Terminal Style) ===== */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.card-code {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(0, 200, 255, 0.7);
  letter-spacing: 1px;
}

.card-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Signal Bars */
.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.signal-bar {
  width: 3px;
  background: #0cf;
  border-radius: 1px;
}

.signal-bar:nth-child(1) { height: 4px; animation: barPulse 1.5s ease-in-out infinite 0s; }
.signal-bar:nth-child(2) { height: 7px; animation: barPulse 1.5s ease-in-out infinite 0.1s; }
.signal-bar:nth-child(3) { height: 10px; animation: barPulse 1.5s ease-in-out infinite 0.2s; }
.signal-bar:nth-child(4) { height: 14px; animation: barPulse 1.5s ease-in-out infinite 0.3s; }

/* Status Badge */
.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: #00ff88;
  letter-spacing: 1px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: statusPulse 2s ease-in-out infinite;
}

/* ===== CARD CONTENT ===== */
.card-content {
  padding: 30px 25px 35px;
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 12px;
  position: relative;
}

.card-icon::before {
  display: none;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #0cf;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.4));
}

.card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.card-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: rgba(0, 200, 255, 0.6);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.card-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Features List */
.card-features {
  list-style: none;
  margin-bottom: 24px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features li:last-child {
  border-bottom: none;
}

.card-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #0cf;
  border-radius: 50%;
  box-shadow: 0 0 6px #0cf;
}

/* Card Button */
.card-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #0dc4e7;
  border: 1px solid rgba(13, 196, 231, 0.5);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 8px;
  letter-spacing: 2px;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 196, 231, 0.15), transparent);
  transition: left 0.5s ease;
}

.card-button:hover {
  background: #0bb3d4;
  border-color: rgba(13, 196, 231, 0.7);
  box-shadow: 0 0 20px rgba(13, 196, 231, 0.2);
}

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

.card-button span:last-child {
  transition: transform 0.3s ease;
}

.card-button:hover span:last-child {
  transform: translateX(4px);
}

/* ===== PACK CYBER SECTION ===== */
.pack-cyber-section {
  padding: 100px 40px;
  background: transparent;
}

.pack-cyber-card {
  max-width: 1400px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.95) 0%, rgba(5, 10, 18, 0.98) 100%);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.pack-cyber-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.5), transparent);
}

/* Terminal Header */
.pack-terminal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 30px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.terminal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 3px;
}

.terminal-badge.status {
  background: transparent;
  color: #00ff88;
}

.terminal-badge.status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: statusPulse 2s ease-in-out infinite;
}

.terminal-badge.bordered {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Pack Main Content */
.pack-main-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 500px;
}

.pack-left-side {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 200, 255, 0.1);
}

.nas-image-container {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 20, 30, 0.8) 0%, rgba(0, 10, 20, 0.9) 100%);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

/* NAS image grid overlay disabled */
.nas-image-container::before {
  display: none;
}

.nas-image-container img {
  display: block;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.pack-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pack-title {
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.pack-title .cyan {
  color: #0cf;
  text-shadow: 0 0 40px rgba(0, 204, 255, 0.6);
}

.pack-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 30px;
}

.pack-price-block {
  margin-bottom: 30px;
}

.pack-price-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pack-price-value {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pack-price-currency {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.pack-price-ht {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.pack-price-period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.pack-buttons {
  display: flex;
  gap: 16px;
  margin-top: auto;
}

/* Pack Features */
.pack-right-side {
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pack-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.pack-feature-item:last-child {
  border-bottom: none;
}

.pack-feature-item:hover {
  background: rgba(0, 200, 255, 0.02);
  padding-left: 10px;
  margin-left: -10px;
  margin-right: -10px;
  padding-right: 10px;
  border-radius: 4px;
}

.pack-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pack-feature-icon svg {
  width: 26px;
  height: 26px;
}

.pack-feature-icon.blue { background: rgba(0, 150, 255, 0.15); }
.pack-feature-icon.blue svg { stroke: #0096ff; }
.pack-feature-icon.cyan { background: rgba(0, 200, 255, 0.15); }
.pack-feature-icon.cyan svg { stroke: #0cf; }
.pack-feature-icon.yellow { background: rgba(255, 200, 0, 0.15); }
.pack-feature-icon.yellow svg { stroke: #ffc800; }
.pack-feature-icon.red { background: rgba(255, 80, 80, 0.15); }
.pack-feature-icon.red svg { stroke: #ff5050; }
.pack-feature-icon.purple { background: rgba(160, 100, 255, 0.15); }
.pack-feature-icon.purple svg { stroke: #a064ff; }

.pack-feature-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.pack-feature-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 100px 40px;
  background: transparent;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-content h2 .cyan {
  color: #0cf;
}

.why-content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-point-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.why-point-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Stats Grid */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

.stat-card.cyan { border-color: rgba(0, 200, 255, 0.3); }
.stat-card.red { border-color: rgba(255, 80, 80, 0.3); }
.stat-card.green { border-color: rgba(0, 255, 136, 0.3); }
.stat-card.orange { border-color: rgba(255, 180, 0, 0.3); }

.stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card.cyan .stat-value { color: #0cf; }
.stat-card.red .stat-value { color: #ff5050; }
.stat-card.green .stat-value { color: #00ff88; }
.stat-card.orange .stat-value { color: #ffb400; }

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 40px;
  background: transparent;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 200, 255, 0.03);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 8px;
  padding: 80px 60px;
  text-align: center;
}

.cta-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-title .cyan {
  color: #0cf;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.cta-info-item span:first-child {
  color: #0cf;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 30px;
  }
  .hero-text { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .services-grid > * {
    width: 100%;
    max-width: 100%;
  }

  .pack-main-content {
    grid-template-columns: 1fr;
  }

  .pack-left-side {
    border-right: none;
    border-bottom: 1px solid rgba(0, 200, 255, 0.1);
  }

  .nas-image-container {
    max-width: 300px;
    margin: 0 auto 30px;
  }

  .why-container {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE SUITE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .title-script {
    font-size: 30px;
  }

  .title-white {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 14px !important;
  }

  .subpage-hero-desc {
    font-size: 14px !important;
  }

  .section-desc {
    font-size: 14px !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .services-grid > * {
    width: 100%;
    max-width: 100%;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 24px;
  }

  .title-script {
    font-size: 24px;
  }

  .title-white {
    font-size: 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 20px;
  }
}

/**
 * MicroNoxy - Styles additionnels pour les sections optimisées SEO
 */

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
  padding: 100px 40px;
  background: transparent;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.expertise-card {
  background: linear-gradient(180deg, rgba(0, 15, 30, 0.9) 0%, rgba(0, 8, 20, 0.95) 100%);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.expertise-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 204, 255, 0.1);
}

.expertise-content {
  padding: 30px;
}

.expertise-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.expertise-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.expertise-icon svg {
  width: 26px;
  height: 26px;
  stroke: #0cf;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.4));
}

.expertise-icon.sage {
  background: rgba(0, 166, 81, 0.1);
  border-color: rgba(0, 166, 81, 0.3);
}

.expertise-icon.sage svg {
  stroke: #00a651;
  filter: drop-shadow(0 0 8px rgba(0, 166, 81, 0.4));
}

.expertise-icon.infomaniak {
  background: rgba(0, 122, 255, 0.1);
  border-color: rgba(0, 122, 255, 0.3);
}

.expertise-icon.infomaniak svg {
  stroke: #007aff;
  filter: drop-shadow(0 0 8px rgba(0, 122, 255, 0.4));
}

.expertise-titles h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
}

.expertise-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(0, 200, 255, 0.7);
  letter-spacing: 2px;
  margin: 0;
}

.expertise-card:first-child .expertise-subtitle {
  color: rgba(0, 166, 81, 0.8);
}

.expertise-card:last-child .expertise-subtitle {
  color: rgba(0, 122, 255, 0.8);
}

.expertise-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.expertise-features {
  margin-bottom: 24px;
}

.expertise-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expertise-feature:last-child {
  border-bottom: none;
}

.feature-icon {
  color: #0cf;
  font-size: 8px;
}

.expertise-card:first-child .feature-icon {
  color: #00a651;
}

.expertise-card:last-child .feature-icon {
  color: #007aff;
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .expertise-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .expertise-header-row {
    flex-direction: column;
    text-align: center;
  }
  
  .expertise-titles h3 {
    font-size: 18px;
  }
}

/* ===== HERO REASSURANCE ===== */
.hero-reassurance {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-reassurance > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.hero-reassurance .reassurance-icon {
  color: #0cf;
}

@media (max-width: 768px) {
  .hero-reassurance {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}

/* ===== PARTENAIRES SECTION ===== */
.partners-section {
  padding: 100px 40px;
  background: transparent;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.partner-card {
  background: linear-gradient(180deg, rgba(0, 15, 30, 0.9) 0%, rgba(0, 8, 20, 0.95) 100%);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.partner-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 204, 255, 0.15);
}

.partner-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.partner-card .card-code {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(0, 200, 255, 0.7);
  letter-spacing: 1px;
}

.partner-card .status-badge.certified {
  background: rgba(0, 204, 255, 0.15);
  border: 1px solid rgba(0, 204, 255, 0.3);
  color: #0cf;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-card .status-badge.certified .status-dot {
  width: 6px;
  height: 6px;
  background: #0cf;
  border-radius: 50%;
  box-shadow: 0 0 8px #0cf;
  animation: statusPulse 2s ease-in-out infinite;
}

.partner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.partner-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 10px;
}

.partner-logo svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  stroke: #0cf;
  color: #0cf;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo svg {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, 0.4));
}

.partner-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px 0;
}

.partner-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.4;
}

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

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-section {
    padding: 60px 20px;
  }
}

/* ===== PARTICULIERS SECTION ===== */
.particuliers-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%, rgba(139, 92, 246, 0.03) 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.particuliers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.particuliers-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.particuliers-content h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0;
  line-height: 1.3;
}

.particuliers-content h2 .cyan {
  color: #0cf;
  text-shadow: 0 0 30px rgba(0, 204, 255, 0.5);
}

.particuliers-intro {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 550px;
}

.section-badge.violet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.4);
  font-family: 'Space Mono', monospace; /* FONT FIX: tag */
  font-size: 9px;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 3px;
}

.section-badge.violet::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 8px #a78bfa;
  animation: pulse-violet 2s ease-in-out infinite;
}

.particuliers-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  margin-bottom: 30px;
}

.particuliers-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.service-check {
  color: #0cf;
  font-weight: bold;
  font-size: 14px;
}

.btn-outline-violet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 4px;
  color: #a78bfa;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-violet:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: #a78bfa;
  color: #c4b5fd;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

/* Location Card */
.location-card {
  background: linear-gradient(180deg, rgba(20, 15, 35, 0.9) 0%, rgba(10, 8, 20, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.location-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
  transform: translateY(-5px);
}

.location-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.location-card-header .card-code {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(167, 139, 250, 0.7);
  letter-spacing: 1px;
}

.status-badge.location {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #a78bfa;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot.violet {
  width: 6px;
  height: 6px;
  background: #a78bfa;
  border-radius: 50%;
  box-shadow: 0 0 8px #a78bfa;
  animation: pulse-violet 2s ease-in-out infinite;
}

@keyframes pulse-violet {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 0 0 8px #a78bfa;
  }
  50% { 
    opacity: 0.6; 
    box-shadow: 0 0 4px #a78bfa;
  }
}

.location-card-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
}

.location-icon {
  font-size: 40px;
  line-height: 1;
}

.location-info h4 {
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.location-info p {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 4px 0;
}

.location-info p strong {
  color: #a78bfa;
}

.location-sub {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: 12px !important;
}

@media (max-width: 900px) {
  .particuliers-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .particuliers-services-grid {
    grid-template-columns: 1fr;
  }
  
  .location-card {
    max-width: 380px;
  }
  
  .particuliers-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .particuliers-content h2 {
    font-size: 26px;
  }
}
/* ===== HEADER STYLES ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo .custom-logo {
  height: 45px;
  width: auto;
}

.logo-icon svg {
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-tagline {
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 8px;
  color: rgba(0, 204, 255, 0.7);
  letter-spacing: 2px;
}

/* Navigation Desktop */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  color: #0cf;
}

/* Dropdown Submenu */
.nav-menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(0, 10, 20, 0.98);
  border: 1px solid rgba(0, 204, 255, 0.15);
  border-radius: 4px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu li ul.sub-menu li a {
  padding: 10px 20px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.nav-menu li ul.sub-menu li a:hover {
  background: rgba(0, 204, 255, 0.1);
  color: #0cf;
}

/* Header CTA */
.header-cta .btn {
  padding: 12px 24px;
  font-size: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 5, 15, 0.98);
  border-bottom: 1px solid rgba(0, 204, 255, 0.15);
  padding: 20px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

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

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li a {
  display: block;
  padding: 12px 0;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu li ul.sub-menu {
  list-style: none;
  padding-left: 20px;
}

.mobile-nav-menu li ul.sub-menu li a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
}

/* Adjust body for fixed header */
.page-professionnels .site-main {
  padding-top: 0;
}

.page-professionnels .hero {
  padding-top: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1075px) {
  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .logo-name {
    font-size: 18px;
  }
  
  .logo-tagline {
    font-size: 7px;
  }
  
  .page-professionnels .hero {
    padding-top: 70px;
  }
}

/* ===== FIX BARRE ADMIN WORDPRESS ===== */
.admin-bar .site-header {
  top: 32px;
}

.admin-bar .hero {
  padding-top: 112px; /* 80px header + 32px admin bar */
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  
  .admin-bar .hero {
    padding-top: 126px; /* 80px header + 46px admin bar mobile */
  }
}

/* ===== FIX HERO PADDING ===== */
.hero {
  padding-top: 80px; /* Hauteur du header */
}

/* ===== FIX LOGO CUSTOM ===== */
.header-logo img,
.header-logo .custom-logo-link img {
  max-height: 50px;
  width: auto;
  display: block;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}
/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  position: relative;
  min-height: 80vh;
  padding: 60px 40px 80px;
  overflow: hidden;
  background: transparent;
}

.subpage-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

/* Hero background image */
.subpage-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero image overlay gradient */
.subpage-hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,10,30,0.7) 50%, rgba(139,92,246,0.15) 100%);
}

@media (max-width: 768px) {
  .subpage-hero-img-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(10,10,30,0.88) 50%, rgba(139,92,246,0.1) 100%);
  }
}

/* Grid background disabled */
.cyber-grid {
  display: none;
}

.cyber-shield {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  color: rgba(0, 204, 255, 0.1);
  animation: shieldPulse 4s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { opacity: 0.1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.2; transform: translateY(-50%) scale(1.05); }
}

.subpage-hero-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #0cf;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
  color: #0cf;
}

/* Hero Content */
.subpage-hero-content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  overflow: visible;
}

.subpage-hero-text {
  max-width: 600px;
}

.subpage-hero-title {
  margin: 20px 0 24px;
}

.subpage-hero-title .title-small {
  display: block;
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.subpage-hero-title .title-main {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.subpage-hero-desc {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .subpage-hero-desc {
    font-size: 14px !important;
  }

  .stat-item .stat-value {
    font-size: 16px !important;
  }

  .stat-item .stat-label {
    font-size: 8px !important;
  }

  .subpage-hero-stats .stat-value {
    font-size: 20px !important;
  }

  .subpage-hero-stats .stat-label {
    font-size: 10px !important;
  }

  .stat-item {
    padding: 8px 10px !important;
  }
}

@media (max-width: 480px) {
  .stat-item .stat-value {
    font-size: 14px !important;
  }

  .stat-item .stat-label {
    font-size: 7px !important;
  }

  .subpage-hero-stats .stat-value {
    font-size: 16px !important;
  }

  .subpage-hero-stats .stat-label {
    font-size: 9px !important;
  }

  .stat-item {
    padding: 6px 8px !important;
  }
}

/* Hero Stats */
.subpage-hero-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 4px;
  min-width: 0;
}

.stat-item .stat-value {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0cf;
}

.stat-item .stat-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-item.green .stat-value {
  color: #00ff88;
}

.stat-item.green {
  border-color: rgba(0, 255, 136, 0.15);
  background: rgba(0, 255, 136, 0.05);
}

/* Hero Visual */
.subpage-hero-visual {
  position: relative;
  overflow: hidden; /* RESPONSIVE FIX: prevent 140% images from overflowing */
}

.hero-visual-img {
  width: 140%;
  max-width: 140%; /* RESPONSIVE FIX: constrain overflow */
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.maintenance-hero-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  transform: translateX(-10px);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%),
              linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%),
                      linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.infra-hero-img {
  width: 140%;
  max-width: 140%; /* RESPONSIVE FIX: constrain overflow */
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.sage-title-logo {
  display: inline-block;
  height: 1.55em;
  width: auto;
  vertical-align: middle;
  margin: 0 0.05em;
  transform: translateY(0.04em);
}

.sage-title-inline {
  white-space: nowrap;
}

.mn-hero-card-badge {
  position: absolute;
  bottom: 90px;
  right: 80px;
  height: 120px;
  width: auto;
  opacity: 0.85;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.mn-hero-card-badge:hover {
  opacity: 1;
}

.threat-monitor {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.4) 0%, rgba(0, 20, 50, 0.6) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.threat-monitor-content {
  padding: 24px;
}

.threat-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.threat-monitor-header .threat-icon {
  font-size: 36px;
}

.threat-monitor-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.threat-monitor-header p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.threat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.threat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.threat-item:last-child {
  border-bottom: none;
}

.threat-icon-small {
  font-size: 20px;
  margin-right: 12px;
}

.threat-name {
  flex: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.threat-status {
  padding: 4px 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.threat-status.blocked {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

/* Status badge variants */
.status-badge.danger {
  color: #ff4444;
}

.status-badge.danger .status-dot {
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
}

.status-badge.warning {
  color: #ffaa00;
}

.status-badge.warning .status-dot {
  background: #ffaa00;
  box-shadow: 0 0 8px #ffaa00;
}

/* Card icon variants */
.card-icon.danger {
  background: rgba(255, 68, 68, 0.08);
  border-color: rgba(255, 68, 68, 0.2);
}

.card-icon.danger svg {
  stroke: #ff4444;
  filter: drop-shadow(0 0 8px rgba(255, 68, 68, 0.4));
}

.card-icon.warning {
  background: rgba(255, 170, 0, 0.08);
  border-color: rgba(255, 170, 0, 0.2);
}

.card-icon.warning svg {
  stroke: #ffaa00;
  filter: drop-shadow(0 0 8px rgba(255, 170, 0, 0.4));
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 40px;
  background: transparent;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.3) 0%, rgba(0, 20, 50, 0.5) 100%);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 200, 255, 0.3);
}

.faq-item[open] {
  border-color: rgba(0, 200, 255, 0.4);
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0cf;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #0cf;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(0, 200, 255, 0.1);
  margin-top: 0;
  padding-top: 20px;
}

/* ===== RELATED SECTION ===== */
.related-section {
  padding: 100px 40px;
  background: transparent;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0, 15, 30, 0.9) 0%, rgba(0, 8, 20, 0.95) 100%);
  border: 1px solid rgba(0, 200, 255, 0.15);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.related-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 204, 255, 0.1);
}

.related-icon {
  font-size: 40px;
  flex-shrink: 0;
  color: #0cf;
}

.related-icon svg {
  width: 40px;
  height: 40px;
  color: currentColor;
}

.related-content {
  flex: 1;
}

.related-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.related-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.related-arrow {
  font-size: 24px;
  color: #0cf;
  transition: transform 0.3s ease;
}

.related-card:hover .related-arrow {
  transform: translateX(5px);
}

/* ===== RESPONSIVE SUBPAGES ===== */
@media (max-width: 1100px) {
  /* All subpage heroes: switch to single column flex */
  .subpage-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Flatten .subpage-hero-text so children become flex items for ordering */
  .subpage-hero-text {
    display: contents;
  }

  /* Ordering: badge → title → desc → visual → stats/features → buttons */
  .section-badge { order: 1; }
  .subpage-hero-title { order: 2; }
  .subpage-hero-desc { order: 3; margin-bottom: 24px; }
  .subpage-hero-visual {
    order: 4;
    width: 100%;
    max-width: 450px;
    margin: 24px auto;
    display: flex;
    justify-content: center;
  }
  .subpage-hero-stats { order: 5; width: 100%; }
  .hero-features-grid { order: 5; width: 100%; }
  .hero-buttons { order: 6; width: 100%; }

  /* Hide decorative elements */
  .cyber-shield {
    display: none;
  }

  /* Hero images: constrain size */
  .infra-hero-img,
  .maintenance-hero-img {
    max-width: 450px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 900px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  /* Visual smaller on mobile */
  .subpage-hero-visual {
    max-width: 350px;
  }

  .infra-hero-img,
  .maintenance-hero-img {
    max-width: 350px;
    width: 80%;
  }

  .backup-hdd-image img {
    max-width: 350px;
    width: 80%;
  }

  /* Stats stay in row, wrap if needed */
  .subpage-hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .stat-item {
    flex: 1 1 auto;
    min-width: 90px;
  }

  /* Features grid: single column on mobile */
  .hero-features-grid {
    grid-template-columns: 1fr;
  }

  /* Buttons stack on mobile */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Service cards full width */
  .service-card {
    width: 100%;
    max-width: 100%;
  }

  /* Status bar wraps */
  .mn-hero-card-footer {
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
  }

  .faq-section,
  .related-section {
    padding: 60px 20px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .subpage-hero-title .title-main {
    font-size: 24px;
  }
  
  .breadcrumb {
    font-size: 10px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: transparent;
  border-top: 1px solid rgba(0, 204, 255, 0.1);
  padding: 80px 40px 30px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Footer Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-family: 'Rajdhani', sans-serif; /* FONT FIX */
  font-size: 12px;
  font-weight: 400;
  color: #0cf;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0cf;
}

.footer-links li:not(:has(a)) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Footer Contact */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  font-size: 18px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #0cf;
}

.footer-cta {
  margin-top: 24px;
  display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #0cf;
}

/* Footer Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ===== SAUVEGARDE PAGE SPECIFIC ===== */

/* Backup Visual Animation */
.backup-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.backup-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 255, 0.2);
}

.backup-ring.ring-1 {
  inset: 0;
  animation: rotateRing 20s linear infinite;
}

.backup-ring.ring-2 {
  inset: 30px;
  border-width: 1px;
  animation: rotateRing 25s linear infinite reverse;
}

.backup-ring.ring-3 {
  inset: 60px;
  border-width: 1px;
  border-color: rgba(0, 204, 255, 0.1);
  animation: rotateRing 30s linear infinite;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.backup-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  animation: pulse 2s ease-in-out infinite;
}

/* Backup Monitor Card */
.backup-monitor {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.4) 0%, rgba(0, 20, 50, 0.6) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.backup-monitor-content {
  padding: 24px;
}

.backup-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.backup-monitor-header .backup-icon {
  font-size: 36px;
}

.backup-monitor-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.backup-monitor-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Progress Items */
.backup-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.progress-status {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
}

.progress-status.success {
  color: #00ff88;
}

.progress-bar {
  height: 4px;
  background: rgba(0, 204, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0cf, #00ff88);
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* Backup Stats Row */
.backup-stats-row {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.backup-stat {
  flex: 1;
  text-align: center;
}

.backup-stat-value {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0cf;
}

.backup-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ===== Backup Hero Visual: HDD Image + Overlay Monitor ===== */
.backup-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.backup-hdd-image {
  position: relative;
  z-index: 1;
  max-width: none;
  text-align: right;
  overflow: visible;
}

.backup-hdd-image img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%),
              linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%),
                      linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.backup-monitor--overlay {
  position: relative;
  z-index: 2;
  margin-top: -40px;
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(0, 20, 40, 0.85) 0%, rgba(0, 10, 25, 0.92) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 8px;
  padding: 20px 24px;
}

.backup-monitor--overlay .backup-progress {
  margin-bottom: 0;
  gap: 12px;
}

.backup-monitor--overlay .progress-item {
  gap: 4px;
}

.backup-monitor--overlay .progress-bar {
  height: 3px;
}

@media (max-width: 768px) {
  .backup-hero-visual {
    align-items: center;
  }

  .backup-hdd-image {
    text-align: center;
  }

  .backup-hdd-image img {
    max-width: 300px;
    width: 80%;
  }

  .backup-monitor--overlay {
    max-width: 100%;
    margin-top: -20px;
  }
}

/* Danger Variants */
.section-badge.danger {
  background: rgba(255, 68, 68, 0.1);
  border-color: rgba(255, 68, 68, 0.3);
  color: #ff6b6b;
  font-size: 8px;
  padding: 10px 20px;
  white-space: nowrap;
}

.section-badge.danger::before {
  background: #ff6b6b;
  box-shadow: 0 0 8px #ff6b6b;
}

.danger-text {
  color: #ff6b6b;
}

.stat-item.danger {
  border-color: rgba(255, 68, 68, 0.2);
  background: rgba(255, 68, 68, 0.05);
}

.stat-item.danger .stat-value {
  color: #ff6b6b;
}

.card-features.danger li::before {
  color: #ff6b6b;
}

/* Featured Card */
.service-card.featured {
  border-color: rgba(0, 255, 136, 0.3);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 15, 30, 0.9) 100%);
}

.service-card.featured:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 10px 60px rgba(0, 255, 136, 0.15);
}

.status-badge.featured {
  color: #00ff88;
}

.status-badge.featured .status-dot {
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

.card-icon.featured {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.2);
}

.card-icon.featured svg {
  stroke: #00ff88;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.card-button.featured {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.card-button.featured:hover {
  background: #00ff88;
  color: #000;
}

/* Responsive for Backup page */
@media (max-width: 1100px) {
  .backup-visual {
    display: none;
  }
}

/* ===== MAINTENANCE PAGE SPECIFIC ===== */

/* Maintenance Visual Animation */
.maintenance-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.gear {
  position: absolute;
  font-size: 80px;
  animation: rotateGear 8s linear infinite;
}

.gear.gear-1 {
  top: 30%;
  left: 20%;
}

.gear.gear-2 {
  top: 50%;
  left: 55%;
  font-size: 60px;
  animation-direction: reverse;
  animation-duration: 6s;
}

@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(0, 204, 255, 0.3);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Maintenance Monitor */
.maintenance-monitor {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.4) 0%, rgba(0, 20, 50, 0.6) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.maintenance-monitor-content {
  padding: 24px;
}

.maintenance-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.maintenance-monitor-header .maintenance-icon {
  font-size: 26px;
}

.maintenance-monitor-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.maintenance-monitor-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* System Status List */
.system-status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.system-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.system-item:last-child {
  border-bottom: none;
}

.system-icon {
  font-size: 18px;
}

.system-name {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.system-status-value {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.system-status-value.online {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.system-status-value.warning {
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  color: #ffaa00;
}

.system-status-value.offline {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.problem-card {
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.3) 0%, rgba(0, 20, 50, 0.5) 100%);
  border: 1px solid rgba(255, 170, 0, 0.2);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(255, 170, 0, 0.4);
  transform: translateY(-5px);
}

.problem-icon {
  font-size: 26px;
  margin-bottom: 16px;
  color: #ffaa00;
}
.problem-icon svg {
  width: 26px;
  height: 26px;
}

.problem-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffaa00;
  margin: 0 0 12px 0;
}

.problem-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 100px 40px;
  background: transparent;
}

.process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.3) 0%, rgba(0, 20, 50, 0.5) 100%);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 8px;
  text-align: center;
}

.process-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0cf;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.process-arrow {
  font-size: 24px;
  color: rgba(0, 204, 255, 0.5);
}

/* Warning badge */
.section-badge.warning {
  background: rgba(255, 170, 0, 0.1);
  border-color: rgba(255, 170, 0, 0.3);
  color: #ffaa00;
}

/* Responsive Maintenance */
@media (max-width: 1100px) {
  .maintenance-visual {
    display: none;
  }
  
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-step {
    max-width: 100%;
    width: 100%;
  }
  
  .process-section {
    padding: 60px 20px;
  }
}

/* ===== NETWORK/RESEAU PAGE SPECIFIC ===== */

/* Network Visual Animation */
.network-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.network-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 255, 0.3);
}

.network-ring.ring-1 {
  inset: 0;
  animation: rotateRing 20s linear infinite;
}

.network-ring.ring-2 {
  inset: 30px;
  border-width: 1px;
  border-color: rgba(0, 204, 255, 0.2);
  animation: rotateRing 30s linear infinite reverse;
}

.network-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
}

.network-node {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(0, 204, 255, 0.2);
  border: 2px solid #0cf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.network-node.node-1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.network-node.node-2 {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

.network-node.node-3 {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.network-node.node-4 {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

/* Network Monitor */
.network-monitor {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.4) 0%, rgba(0, 20, 50, 0.6) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.network-monitor-content {
  padding: 24px;
}

.network-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.network-monitor-header .network-icon {
  font-size: 26px;
}

.network-monitor-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.network-monitor-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Network Topology */
.network-topology {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.topology-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.topology-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.topology-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topology-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.topology-status {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.topology-status.online {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.topology-line {
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, #0cf, rgba(0, 204, 255, 0.3));
  margin-left: 19px;
}

/* Network Stats Row */
.network-stats-row {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.network-stat {
  flex: 1;
  text-align: center;
}

.network-stat-value {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0cf;
}

.network-stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Hero Features Grid */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0, 204, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.15);
  border-radius: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-check {
  color: #00ff88;
  font-size: 16px;
  font-weight: 700;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.equipment-card {
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.3) 0%, rgba(0, 20, 50, 0.5) 100%);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.equipment-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-5px);
}

.equipment-icon {
  font-size: 26px;
  margin-bottom: 16px;
  color: #0cf;
}
.equipment-icon svg {
  width: 26px;
  height: 26px;
}

.equipment-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 8px 0;
}

.equipment-card p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Network */
@media (max-width: 1100px) {
  .network-visual {
    display: none;
  }
  
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
  }
  
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== HARDWARE/MATERIELS PAGE SPECIFIC ===== */

/* Hardware Visual Animation */
.hardware-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.hardware-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 255, 0.3);
}

.hardware-ring.ring-1 {
  inset: 0;
  animation: rotateRing 20s linear infinite;
}

.hardware-ring.ring-2 {
  inset: 25px;
  border-width: 1px;
  border-color: rgba(0, 204, 255, 0.2);
  animation: rotateRing 30s linear infinite reverse;
}

.hardware-ring.ring-3 {
  inset: 50px;
  border-width: 1px;
  border-color: rgba(0, 204, 255, 0.1);
  animation: rotateRing 40s linear infinite;
}

.hardware-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}

.hardware-tag {
  position: absolute;
  padding: 8px 16px;
  background: rgba(0, 204, 255, 0.15);
  border: 1px solid rgba(0, 204, 255, 0.4);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #0cf;
  white-space: nowrap;
  animation: floatTag 3s ease-in-out infinite;
}

.hardware-tag.tag-1 {
  top: -20px;
  left: -40px;
}

.hardware-tag.tag-2 {
  top: 50px;
  right: -50px;
  animation-delay: 0.5s;
}

.hardware-tag.tag-3 {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

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

.hardware-tag.tag-3 {
  animation-name: floatTagCenter;
}

@keyframes floatTagCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hardware Monitor */
.hardware-monitor {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.4) 0%, rgba(0, 20, 50, 0.6) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.hardware-monitor-content {
  padding: 24px;
}

.hardware-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.hardware-monitor-header .hardware-icon {
  font-size: 36px;
}

.hardware-monitor-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.hardware-monitor-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Hardware Specs */
.hardware-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 204, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.1);
  border-radius: 6px;
}

.spec-icon {
  font-size: 16px;
}

.spec-name {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  min-width: 40px;
}

.spec-value {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

/* Hardware Status Bar */
.hardware-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 6px;
}

.hardware-status-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hardware-status-value {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}

.hardware-status-value.success {
  color: #00ff88;
}

/* Card Price */
.card-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 200, 255, 0.1);
}

.card-price span {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0cf;
}

/* Brands Grid */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.brand-item {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.brand-item:hover {
  color: #0cf;
}

/* Process Section Inline (without extra padding) */
.process-section-inline {
  max-width: 1200px;
  margin: 50px auto 0;
}

.process-section-inline .process-grid {
  margin-top: 0;
}

/* Responsive Hardware */
@media (max-width: 1100px) {
  .hardware-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .brands-grid {
    gap: 20px;
  }
  
  .brand-item {
    font-size: 16px;
  }
}

/* ===== SAGE PAGE SPECIFIC ===== */

/* Sage Visual Animation */
.sage-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.sage-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 204, 255, 0.2);
}

.sage-ring.ring-1 {
  inset: 0;
  animation: rotateRing 20s linear infinite;
}

.sage-ring.ring-2 {
  inset: 20px;
  border-width: 1px;
  border-color: rgba(0, 204, 255, 0.15);
  animation: rotateRing 30s linear infinite reverse;
}

.sage-ring.ring-3 {
  inset: 40px;
  border-width: 1px;
  border-color: rgba(0, 204, 255, 0.1);
  animation: rotateRing 40s linear infinite;
}

.sage-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, rgba(0, 100, 200, 0.05) 100%);
  border: 2px solid rgba(0, 204, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sage-logo {
  font-family: 'Exo 2', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #0cf;
  text-transform: lowercase;
  letter-spacing: 2px;
}

.sage-partner {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(0, 204, 255, 0.6);
  letter-spacing: 3px;
  margin-top: 4px;
}

.sage-tag {
  position: absolute;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.15) 0%, rgba(0, 100, 200, 0.15) 100%);
  border: 1px solid rgba(0, 204, 255, 0.4);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #0cf;
  white-space: nowrap;
  animation: floatTag 3s ease-in-out infinite;
}

.sage-tag.tag-1 {
  top: 20px;
  right: -20px;
}

.sage-tag.tag-2 {
  bottom: 20px;
  left: -40px;
  animation-delay: 1.5s;
}

/* Sage Monitor */
.sage-monitor {
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.4) 0%, rgba(0, 20, 50, 0.6) 100%);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.sage-monitor-content {
  padding: 24px;
}

.sage-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.sage-monitor-header .sage-icon {
  font-size: 26px;
}

.sage-monitor-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0cf;
  margin: 0 0 4px 0;
}

.sage-monitor-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Sage Modules */
.sage-modules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 204, 255, 0.05);
  border: 1px solid rgba(0, 204, 255, 0.1);
  border-radius: 6px;
}

.module-icon {
  font-size: 16px;
}

.module-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.module-status {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.module-status.active {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

/* Sage Status Bar */
.sage-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 6px;
}

.sage-status-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.sage-status-value {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}

.sage-status-value.success {
  color: #00ff88;
}

/* Sage Badge */
.section-badge.sage {
  background: rgba(0, 204, 255, 0.1);
  border-color: rgba(0, 204, 255, 0.3);
}

.status-badge.sage {
  color: #0cf;
}

.status-badge.sage .status-dot {
  background: #0cf;
  box-shadow: 0 0 8px #0cf;
}

/* Sage Products Grid */
.sage-products-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sage-card .card-content {
  min-height: auto;
}

.sage-icon-box {
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid rgba(0, 204, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sage-icon-text {
  font-size: 26px;
}

/* Responsive Sage */
@media (max-width: 1100px) {
  .sage-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .sage-products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== PARTICULIERS PAGE - VIOLET THEME ===== */

/* Violet Color Variables */
.violet-text { color: #a855f7 !important; }
.section-badge.violet { 
  background: rgba(168, 85, 247, 0.1); 
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

/* Cyber Grid Violet — disabled (parent .cyber-grid is display:none) */

/* Particuliers Visual */
.particuliers-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
}

.perso-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(168, 85, 247, 0.3);
}

.perso-ring.ring-1 {
  inset: 0;
  animation: rotateRing 20s linear infinite;
}

.perso-ring.ring-2 {
  inset: 30px;
  border-width: 1px;
  border-color: rgba(168, 85, 247, 0.2);
  animation: rotateRing 30s linear infinite reverse;
}

.perso-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
}

.perso-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(168, 85, 247, 0.2);
  border: 2px solid #a855f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: pulse 2s ease-in-out infinite;
}

.perso-icon.icon-1 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.perso-icon.icon-2 {
  bottom: 30px;
  left: 20px;
  animation-delay: 0.5s;
}

.perso-icon.icon-3 {
  bottom: 30px;
  right: 20px;
  animation-delay: 1s;
}

/* Perso Monitor */
.perso-monitor {
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.4) 0%, rgba(30, 10, 50, 0.6) 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.card-header.violet {
  border-bottom-color: rgba(168, 85, 247, 0.2);
}

.card-header.violet .card-code {
  color: #a855f7;
}

.signal-bars.violet .signal-bar {
  background: rgba(168, 85, 247, 0.3);
}

.signal-bars.violet .signal-bar:nth-child(-n+3) {
  background: #a855f7;
}

.status-badge.violet {
  color: #a855f7;
}

.status-badge.violet .status-dot {
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
}

.status-badge.gaming {
  color: #f472b6;
}

.status-badge.gaming .status-dot {
  background: #f472b6;
  box-shadow: 0 0 8px #f472b6;
}

.perso-monitor-content {
  padding: 24px;
}

.perso-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.perso-icon-big {
  font-size: 36px;
}

.perso-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #a855f7;
  margin: 0 0 4px 0;
}

.perso-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Perso Services List */
.perso-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perso-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 6px;
}

.perso-service-icon {
  font-size: 16px;
}

.perso-service-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.perso-service-status {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

/* Hero Stats Violet */
.subpage-hero-stats.violet-stats {
  display: flex;
  gap: 30px;
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.subpage-hero-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.subpage-hero-stats .stat-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #a855f7;
}

.subpage-hero-stats .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* Buttons Violet */
.btn.btn-primary.violet {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  border-color: #a855f7;
}

.btn.btn-primary.violet:hover {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.btn.btn-secondary.violet {
  border-color: rgba(168, 85, 247, 0.5);
  color: #a855f7;
}

.btn.btn-secondary.violet:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
}

/* Service Cards Violet */
.service-card.violet-card {
  border-color: rgba(168, 85, 247, 0.2);
}

.service-card.violet-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
}

.service-card.violet-card .card-icon.violet {
  border-color: rgba(168, 85, 247, 0.3);
}

.service-card.violet-card .card-icon.violet svg {
  stroke: #a855f7;
}

.service-card.violet-card .card-icon.gaming {
  border-color: rgba(244, 114, 182, 0.3);
  background: rgba(244, 114, 182, 0.1);
}

.service-card.violet-card .card-icon.gaming svg {
  stroke: #f472b6;
}

.card-features.violet li::before {
  color: #a855f7;
}

.card-button.violet {
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

.card-button.violet:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
}

.card-button.gaming {
  border-color: rgba(244, 114, 182, 0.3);
  color: #f472b6;
}

.card-button.gaming:hover {
  background: rgba(244, 114, 182, 0.1);
  border-color: #f472b6;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: #a855f7;
  background: linear-gradient(135deg, rgba(80, 30, 100, 0.4) 0%, rgba(40, 15, 60, 0.6) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  border-radius: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.pricing-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.pricing-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #a855f7;
}

.price-period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: #a855f7;
  font-weight: 700;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #a855f7;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: #a855f7;
}

.pricing-button.featured {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  border-color: #a855f7;
  color: #fff;
}

.pricing-button.featured:hover {
  background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Zone Section */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.zone-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.zone-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-5px);
}

.zone-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.zone-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #a855f7;
  margin: 0 0 12px 0;
}

.zone-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* CTA Violet */
.cta-section.violet-cta {
  background: transparent;
}

.cta-card.violet {
  border-color: rgba(168, 85, 247, 0.3);
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
}

.cta-info.violet .cta-info-item span:first-child {
  color: #a855f7;
}

/* Responsive Particuliers */
@media (max-width: 1100px) {
  .particuliers-visual {
    display: none;
  }
}

@media (max-width: 900px) {
  .pricing-grid,
  .zone-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .subpage-hero-stats.violet-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== PC GAMING PAGE - GAMING THEME ===== */

/* Gaming page uniform background */
body.page-template-pc-gaming-sur-mesure {
  background-color: #060d19;
}

/* Gaming Gradient */
.gaming-gradient {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gaming Visual */
.gaming-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
}

.gaming-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.gaming-ring {
  position: absolute;
  border-radius: 50%;
}

.gaming-ring.ring-1 {
  inset: 20px;
  border: 2px solid;
  border-image: linear-gradient(135deg, #a855f7, #ec4899, #f472b6) 1;
  animation: rotateRing 15s linear infinite;
}

.gaming-ring.ring-2 {
  inset: 50px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  animation: rotateRing 25s linear infinite reverse;
}

.gaming-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

.gaming-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #f472b6;
  border-radius: 50%;
  box-shadow: 0 0 10px #f472b6;
  animation: floatParticle 4s ease-in-out infinite;
}

.gaming-particle.p-1 { top: 10%; left: 20%; animation-delay: 0s; }
.gaming-particle.p-2 { top: 30%; right: 10%; animation-delay: 1s; }
.gaming-particle.p-3 { bottom: 20%; left: 10%; animation-delay: 2s; }
.gaming-particle.p-4 { bottom: 10%; right: 25%; animation-delay: 3s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

/* Gaming Monitor */
.gaming-monitor {
  background: linear-gradient(135deg, rgba(80, 30, 100, 0.4) 0%, rgba(40, 15, 60, 0.6) 100%);
  border: 1px solid rgba(236, 72, 153, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.card-header.gaming {
  border-bottom-color: rgba(236, 72, 153, 0.2);
}

.card-header.gaming .card-code {
  color: #f472b6;
}

.signal-bars.gaming .signal-bar {
  background: rgba(236, 72, 153, 0.3);
}

.signal-bars.gaming .signal-bar:nth-child(-n+3) {
  background: linear-gradient(180deg, #a855f7, #ec4899);
}

.status-badge.gaming .status-dot {
  background: #ec4899;
  box-shadow: 0 0 8px #ec4899;
}

.gaming-monitor-content {
  padding: 24px;
}

.gaming-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.gaming-icon-big {
  font-size: 36px;
}

.gaming-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #f472b6;
  margin: 0 0 4px 0;
}

.gaming-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Gaming Specs */
.gaming-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.gaming-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 6px;
}

.gaming-spec-item .spec-icon {
  font-size: 16px;
}

.gaming-spec-item .spec-name {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  min-width: 40px;
}

.gaming-spec-item .spec-value {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

/* FPS Bar */
.gaming-fps-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 6px;
}

.fps-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.fps-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #00ff88;
}

.fps-value span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* Gaming Buttons */
.btn.btn-primary.gaming {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  border-color: #ec4899;
}

.btn.btn-primary.gaming:hover {
  background: linear-gradient(135deg, #c084fc 0%, #f472b6 100%);
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.btn.btn-secondary.gaming {
  border-color: rgba(236, 72, 153, 0.5);
  color: #f472b6;
}

.btn.btn-secondary.gaming:hover {
  background: rgba(236, 72, 153, 0.1);
  border-color: #ec4899;
}

/* Section Badge Gaming */
.section-badge.gaming {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border-color: rgba(236, 72, 153, 0.3);
  color: #f472b6;
}

.section-badge.gaming::before {
  background: #f472b6;
  box-shadow: 0 0 8px #f472b6;
}

/* Gaming Configs Grid */
.gaming-configs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.gaming-config-card {
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  padding: 30px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.gaming-config-card:hover {
  border-color: rgba(236, 72, 153, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.gaming-config-card.featured {
  border-color: #ec4899;
  background: linear-gradient(135deg, rgba(80, 30, 100, 0.4) 0%, rgba(50, 20, 70, 0.6) 100%);
}

.gaming-config-card.creator {
  border-color: rgba(0, 204, 255, 0.3);
}

.config-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  border-radius: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.config-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.config-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #a855f7;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.config-badge.creator {
  background: rgba(0, 204, 255, 0.1);
  border-color: rgba(0, 204, 255, 0.3);
  color: #0cf;
}

.config-header h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.config-target {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.config-specs {
  margin-bottom: 24px;
}

.config-spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.config-spec:last-child {
  border-bottom: none;
}

.config-spec .spec-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.config-spec .spec-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.config-price {
  text-align: center;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.price-from {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.price-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #f472b6;
}

.config-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #0dc4e7;
  border: 1px solid rgba(13, 196, 231, 0.5);
  border-radius: 6px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.config-button:hover {
  background: #0bb3d4;
  border-color: rgba(13, 196, 231, 0.7);
}

.config-button.featured {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  border-color: #ec4899;
  color: #fff;
}

.config-button.featured:hover {
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.config-button.creator {
  border-color: rgba(0, 204, 255, 0.4);
  color: #0cf;
}

.config-button.creator:hover {
  background: rgba(0, 204, 255, 0.1);
  border-color: #0cf;
}

.configs-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.pcg-price-notice {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: #f59e0b;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Garanties Grid */
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.garantie-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.garantie-card:hover {
  border-color: rgba(236, 72, 153, 0.4);
}

.garantie-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #f472b6;
}

.garantie-icon svg {
  width: 48px;
  height: 48px;
}

.garantie-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f472b6;
  margin: 0 0 20px 0;
}

.garantie-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.garantie-card li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.garantie-card li:last-child {
  border-bottom: none;
}

.garantie-card li::before {
  content: "✓";
  color: #a855f7;
  margin-right: 10px;
}

/* Gaming FAQ */
.faq-item.gaming {
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border-color: rgba(168, 85, 247, 0.2);
}

.faq-item.gaming .faq-question {
  color: #f472b6;
}

/* Gaming Related */
.related-card.gaming {
  border-color: rgba(168, 85, 247, 0.2);
}

.related-card.gaming:hover {
  border-color: rgba(236, 72, 153, 0.5);
  background: rgba(168, 85, 247, 0.05);
}

.related-card.gaming h3 {
  color: #f472b6;
}

.related-card.gaming .related-arrow {
  color: #f472b6;
}

.related-card.gaming .related-icon {
  color: #f472b6;
}

/* Gaming CTA */
.cta-section.gaming-cta {
  background: transparent;
}

.cta-card.gaming {
  border-color: rgba(236, 72, 153, 0.3);
  background: linear-gradient(135deg, rgba(80, 30, 100, 0.3) 0%, rgba(40, 15, 60, 0.5) 100%);
}

.cta-info.gaming .cta-info-item span:first-child {
  color: #f472b6;
}

/* Hero Image Gaming — slightly smaller */
[data-theme="gaming"] .infra-hero-img {
  width: 90%;
  max-width: 90%;
}

/* Hero Feature Gaming */
.hero-feature.gaming {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
}

.feature-check.gaming {
  color: #c084fc;
}

/* Cyber Grid Gaming — disabled (parent .cyber-grid is display:none) */

/* Responsive Gaming */
@media (max-width: 1200px) {
  .gaming-configs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .gaming-visual {
    display: none;
  }
}

@media (max-width: 768px) {
  .gaming-configs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .garanties-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ===== DEPANNAGE PAGE SPECIFIC ===== */

/* Depannage Visual */
.depannage-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
}

.diag-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(168, 85, 247, 0.3);
}

.diag-ring.ring-1 {
  inset: 0;
  animation: rotateRing 20s linear infinite;
}

.diag-ring.ring-2 {
  inset: 30px;
  border-width: 1px;
  border-color: rgba(168, 85, 247, 0.2);
  animation: rotateRing 30s linear infinite reverse;
}

.diag-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
}

.diag-scan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border: 2px solid transparent;
  border-top-color: #a855f7;
  border-radius: 50%;
  animation: diagScan 2s linear infinite;
}

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

.diag-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(168, 85, 247, 0.2);
  border: 2px solid #a855f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}

.diag-icon.icon-1 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.diag-icon.icon-2 {
  bottom: 30px;
  left: 20px;
  animation-delay: 0.5s;
}

.diag-icon.icon-3 {
  bottom: 30px;
  right: 20px;
  animation-delay: 1s;
}

/* Depannage Monitor */
.depannage-monitor {
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.4) 0%, rgba(30, 10, 50, 0.6) 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.depannage-monitor-content {
  padding: 24px;
}

.depannage-monitor-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.depannage-icon-big {
  font-size: 36px;
}

.depannage-info h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #a855f7;
  margin: 0 0 4px 0;
}

.depannage-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Diagnostic Items */
.diagnostic-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.diagnostic-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.1);
  border-radius: 6px;
}

.diag-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.diag-status {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.diag-status.ok {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.diag-status.warning {
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  color: #ffaa00;
}

.diag-status.scanning {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #a855f7;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Diagnostic Action */
.diagnostic-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 6px;
}

.action-icon {
  font-size: 18px;
}

.action-text {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #a855f7;
}

/* Status Badge Warning */
.status-badge.warning {
  color: #ffaa00;
}

.status-badge.warning .status-dot {
  background: #ffaa00;
  box-shadow: 0 0 8px #ffaa00;
}

/* Advantages Grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 50px auto 0;
}

.advantage-card {
  padding: 30px;
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-5px);
}

.advantage-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.advantage-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #a855f7;
  margin: 0 0 12px 0;
}

.advantage-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Pricing Note */
.pricing-note {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 20px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 8px;
  text-align: center;
}

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

.pricing-note strong {
  color: #a855f7;
}

/* FAQ Violet */
.faq-item.violet {
  background: linear-gradient(135deg, rgba(60, 20, 80, 0.3) 0%, rgba(30, 10, 50, 0.5) 100%);
  border-color: rgba(168, 85, 247, 0.2);
}

.faq-item.violet .faq-question {
  color: #a855f7;
}

/* Related Violet */
.related-card.violet {
  border-color: rgba(168, 85, 247, 0.2);
}

.related-card.violet:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.05);
}

.related-card.violet h3 {
  color: #a855f7;
}

.related-card.violet .related-arrow {
  color: #a855f7;
}

/* Feature Check Violet */
.feature-check.violet {
  color: #c084fc;
}

.hero-feature.violet {
  border-color: rgba(168, 85, 247, 0.2);
  background: rgba(168, 85, 247, 0.05);
}

/* Responsive Depannage */
@media (max-width: 1100px) {
  .depannage-visual {
    display: none;
  }
}

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

@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   RESPONSIVE FIX — Audit corrections 2026-03-02
   ============================================ */

/* --- TABLET (max-width: 768px) --- */
@media (max-width: 768px) {
  /* RESPONSIVE FIX: Section paddings trop larges */
  .services-section,
  .pack-cyber-section,
  .why-section,
  .cta-section,
  .expertise-section,
  .partners-section {
    padding: 60px 20px;
  }

  .particuliers-section {
    padding: 50px 20px;
  }

  /* RESPONSIVE FIX: Hero images constrained */
  .hero-visual-img,
  .infra-hero-img {
    width: 100%;
    max-width: 100%;
  }

  /* RESPONSIVE FIX: Expert card padding */
  .expert-card {
    padding: 40px 24px;
  }

  /* RESPONSIVE FIX: Pack price */
  .pack-price-value {
    font-size: 36px;
  }

  /* RESPONSIVE FIX: CTA info value */
  .cta-info-value {
    font-size: 28px;
  }

  /* RESPONSIVE FIX: Backup title */
  .backup-title {
    font-size: 28px;
  }

  /* RESPONSIVE FIX: Subpage hero */
  .subpage-hero {
    overflow: hidden;
  }

  /* RESPONSIVE FIX: Flex wrapping for hero buttons and stats */
  .hero-buttons,
  .subpage-hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* RESPONSIVE FIX: Advantages grid */
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* RESPONSIVE FIX: Garanties grid */
  .garanties-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* RESPONSIVE FIX: Large emoji icons reduction */
  .gear { font-size: 60px; }
  .network-center,
  .gaming-center { font-size: 64px; }
  .hardware-center { font-size: 56px; }
  .diag-center { font-size: 48px; }
  .perso-center { font-size: 48px; }

  /* RESPONSIVE FIX: Footer */
  .site-footer {
    padding: 40px 20px 20px;
  }
}

/* --- SMALL MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
  /* RESPONSIVE FIX: Section paddings ultra-compact */
  .services-section,
  .pack-cyber-section,
  .why-section,
  .cta-section,
  .expertise-section,
  .partners-section {
    padding: 40px 16px;
  }

  /* RESPONSIVE FIX: Hero title */
  .hero-title {
    font-size: 28px;
  }

  /* RESPONSIVE FIX: Title script */
  .title-script {
    font-size: 32px;
  }

  /* RESPONSIVE FIX: Pack price */
  .pack-price-value {
    font-size: 28px;
  }

  /* RESPONSIVE FIX: CTA info */
  .cta-info-value {
    font-size: 24px;
  }

  /* RESPONSIVE FIX: Backup center icon */
  .backup-center {
    font-size: 40px;
  }

  /* RESPONSIVE FIX: Gear decorative elements */
  .gear {
    font-size: 40px;
  }

  .gear.gear-2 {
    font-size: 30px;
  }

  /* RESPONSIVE FIX: All large emoji icons */
  .network-center,
  .gaming-center { font-size: 40px; }
  .hardware-center { font-size: 44px; }
  .diag-center { font-size: 40px; }
  .perso-center { font-size: 36px; }

  /* RESPONSIVE FIX: Grid collapses */
  .gaming-configs-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .garanties-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* RESPONSIVE FIX: Hero buttons stack vertically */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .subpage-hero-stats {
    flex-direction: column;
    gap: 8px;
  }

  /* RESPONSIVE FIX: Card padding compact */
  .service-card,
  .problem-card,
  .equipment-card,
  .garantie-card,
  .advantage-card,
  .gaming-config-card {
    padding: 20px 16px;
  }

  /* RESPONSIVE FIX: Subpage hero max-width */
  .subpage-hero {
    max-width: 100%;
  }
}

/* ===== CYBERSECURITE PAGE — Bigger text & buttons ===== */
body.page-template-page-cybersecurite .section-title { font-size: 36px; }
body.page-template-page-cybersecurite .section-desc { font-size: 16px; }
body.page-template-page-cybersecurite .subpage-hero-desc { font-size: 16px; }
body.page-template-page-cybersecurite .btn { font-size: 12px; padding: 16px 32px; }
body.page-template-page-cybersecurite .card-title { font-size: 24px; }
body.page-template-page-cybersecurite .card-subtitle { font-size: 11px; }
body.page-template-page-cybersecurite .card-description { font-size: 16px; }
body.page-template-page-cybersecurite .card-features li { font-size: 15px; }
body.page-template-page-cybersecurite .cov-card-title { font-size: 26px; }
body.page-template-page-cybersecurite .cov-card-tag { font-size: 10px; }
body.page-template-page-cybersecurite .cov-card-desc { font-size: 15px; }
body.page-template-page-cybersecurite .cov-feat { font-size: 14px; }
body.page-template-page-cybersecurite .cov-ideal-text { font-size: 14px; }
body.page-template-page-cybersecurite .cov-cta { font-size: 12px; padding: 13px 0; }

/* FIX-CYB-7 : Correction animation subpage-hero-visual — mobile */
@media (max-width: 768px) {
  .subpage-hero-visual {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Seul le wrapper direct est recentré, pas les enfants internes de l'animation */
  .subpage-hero-visual > .wv-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* FIX-SAG-11 : Image sage-partner centrée au-dessus du bouton — mobile */
@media (max-width: 768px) {
  .mn-hero-card-badge {
    display: block !important;
    margin: 0 auto 16px auto !important;
    max-width: 120px !important;
    width: auto !important;
    height: auto !important;
  }

  .mn-hero-card picture:has(.mn-hero-card-badge) {
    display: block !important;
    text-align: center !important;
  }
}

/* ============================================================
   CTA-CARD — Réduction hauteur + espacement — mobile
   Scope : toutes les sous-pages
   ============================================================ */
@media (max-width: 768px) {
  .cta-card {
    padding: 28px 20px !important;
    border-radius: 10px !important;
  }

  .cta-title {
    font-size: clamp(18px, 5vw, 24px) !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .cta-desc {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .cta-buttons {
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .cta-buttons a,
  .cta-buttons button {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }

  .cta-info {
    gap: 14px !important;
  }

  .cta-info-item {
    font-size: 12px !important;
    gap: 6px !important;
  }
}

@media (max-width: 390px) {
  .cta-card {
    padding: 20px 16px !important;
  }

  .cta-title {
    font-size: clamp(16px, 4.5vw, 20px) !important;
  }
}

/* ============================================================
   GLOBAL MOBILE — Réduction H2 / H3 sur toutes les pages
   Placé en fin de fichier pour gagner sur toutes les surcharges
   ============================================================ */
@media (max-width: 768px) {
  /* H2 — Section titles */
  .section-title,
  .cov-card-title,
  .pack-title {
    font-size: 24px !important;
  }

  .section-desc,
  .card-description {
    font-size: 13px !important;
  }

  /* H3 — Card titles */
  .card-title,
  .problem-card h3,
  .equipment-card h3,
  .garantie-card h3 {
    font-size: 17px !important;
  }

  .card-subtitle {
    font-size: 8px !important;
  }

  .card-features li {
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  /* H2 — Section titles */
  .section-title,
  .cov-card-title,
  .pack-title {
    font-size: 20px !important;
  }

  .section-desc,
  .card-description {
    font-size: 12px !important;
  }

  /* H3 — Card titles */
  .card-title,
  .problem-card h3,
  .equipment-card h3,
  .garantie-card h3 {
    font-size: 15px !important;
  }

  .card-subtitle {
    font-size: 7px !important;
  }

  .card-features li {
    font-size: 11px !important;
  }
}
