/* ============================================================
   PROCESS INFORMATIQUE - Feuille de style principale
   Couleur principale : #E87722 (orange)
   ============================================================ */

/* ---- Variables ---- */
:root {
  --orange:       #E87722;
  --orange-dark:  #C96210;
  --orange-light: #FFF3E8;
  --dark:         #1A2035;
  --dark-alt:     #111827;
  --text:         #2C2C2C;
  --text-light:   #666;
  --text-muted:   #999;
  --white:        #FFFFFF;
  --light:        #F7F8FA;
  --border:       #E5E7EB;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 2px 12px rgba(0,0,0,.09);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --transition:   .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* ---- Compatibilité Elementor ---- */
/* Évite les bordures/marges parasites ajoutées par Elementor */
.elementor-section,
.elementor-container,
.e-con,
.e-con-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Correction barre admin WordPress (décalage de 32px en haut) */
.header { top: 0; }
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.bg-light   { background: var(--light); }
.bg-dark    { background: var(--dark); color: var(--white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p  { color: rgba(255,255,255,.8); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 680px; }
.section-header { margin-bottom: 3rem; }
.section-header.text-center .section-intro { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,119,34,.35);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-1px);
}
.btn-sm { padding: .5rem 1.2rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ---- Tags / Badges ---- */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-dark   { background: rgba(255,255,255,.15); color: var(--white); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.topbar {
  background: var(--dark);
  padding: .4rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  position: relative;
  z-index: 1100;
  overflow: visible;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  overflow: visible;
}
.topbar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar a:hover { color: var(--orange); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-item { display: flex; align-items: center; gap: .35rem; }

/* ---- Topbar TeamViewer dropdown ---- */
.topbar-tv {
  position: relative;
  cursor: pointer;
  padding: .2rem .4rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color var(--transition), background var(--transition);
}
.topbar-tv:hover {
  border-color: var(--orange);
  background: rgba(232,119,34,.08);
}
.topbar-tv-arrow {
  font-size: .6rem !important;
  opacity: .7;
  transition: transform var(--transition);
}
.topbar-tv:hover .topbar-tv-arrow { transform: rotate(180deg); }
.tv-dropdown {
  display: none;
  position: absolute;
  top: 100%;          /* collé au bouton, pas de gap */
  right: 0;
  padding-top: 10px;  /* espace visuel géré en padding = zone de survol continue */
  z-index: 999;
  min-width: 170px;
}
.tv-dropdown-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: .4rem 0;
  position: relative;
}
.tv-dropdown-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
}
.topbar-tv:hover .tv-dropdown { display: block; }
.tv-dropdown a {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem 1rem;
  color: var(--text) !important;
  font-size: .8rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.tv-dropdown a:hover {
  background: var(--light);
  color: var(--orange) !important;
}
.tv-dropdown a i { color: var(--orange); width: 14px; text-align: center; }

.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo span { color: var(--orange); }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav > li > a:hover, .nav > li > a.active {
  color: var(--orange);
  background: var(--orange-light);
}
.nav > li > a .arrow {
  font-size: .65rem;
  transition: transform var(--transition);
}
.nav > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
}
.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .6rem 1.1rem;
  font-size: .875rem;
  color: var(--text);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  color: var(--orange);
  background: var(--orange-light);
  border-left-color: var(--orange);
}

.header-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.header-phone { font-weight: 600; color: var(--dark); font-size: .9rem; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #2A3550 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://placehold.co/1400x600/1A2035/E87722?text=Photo+technicien+IT+en+intervention');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,119,34,.2);
  border: 1px solid rgba(232,119,34,.4);
  color: var(--orange);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-targets {
  display: flex;
  gap: 1.5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  align-items: center;
}
.hero-targets strong { color: var(--white); }
.hero-separator { color: rgba(255,255,255,.3); }

.hero-stats {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}
.hero-stat {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--white);
  min-width: 130px;
}
.hero-stat .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-stat .stat-label { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .25rem; }

/* ============================================================
   CARDS GRILLES
   ============================================================ */
.cards-grid { display: grid; gap: 1.5rem; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.card-icon-sm {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p  { color: var(--text-light); font-size: .925rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .75rem; }

/* Piliers (3 services cards) */
.pilier-card {
  border-top: 4px solid var(--orange);
}
.pilier-list { margin: 1rem 0; }
.pilier-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-light);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
}
.pilier-list li:last-child { border-bottom: none; }
.pilier-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
.why-us { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-item-text h4 { margin-bottom: .25rem; }
.why-item-text p { color: var(--text-light); font-size: .9rem; margin: 0; }

/* ============================================================
   CYBERSÉCURITÉ BANNER
   ============================================================ */
.cyber-banner {
  background: linear-gradient(135deg, var(--dark-alt) 0%, #0D2137 100%);
  position: relative;
  overflow: hidden;
}
.cyber-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,119,34,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cyber-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cyber-icon-big {
  width: 100px;
  height: 100px;
  background: rgba(232,119,34,.15);
  border: 2px solid rgba(232,119,34,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1.5rem;
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,119,34,.4); }
  50%       { box-shadow: 0 0 0 20px rgba(232,119,34,0); }
}
.cyber-features { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.cyber-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.cyber-feature::before {
  content: '🛡️';
  flex-shrink: 0;
}
.cyber-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 2px solid rgba(232,119,34,.2);
}
.cyber-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   TICKET ZEN
   ============================================================ */
.ticketzen-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}
.ticketzen-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.ticketzen-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.ticketzen-banner h2 { color: var(--white); margin-bottom: .75rem; }
.ticketzen-banner p  { color: rgba(255,255,255,.85); }
.ticketzen-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}
.tz-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.9);
}
.tz-feature::before {
  content: '✓';
  font-weight: 700;
  background: rgba(255,255,255,.25);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}
.ticketzen-cta { display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
.ticketzen-price .price-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.ticketzen-price .price-sub { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ============================================================
   MÉTHODE / PROCESSUS
   ============================================================ */
.steps { display: grid; gap: 2rem; position: relative; }
.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(232,119,34,.2));
}
.step h4 { margin-bottom: .5rem; }
.step p   { font-size: .875rem; color: var(--text-light); }

/* ============================================================
   AVIS / TÉMOIGNAGES
   ============================================================ */
.avis-grid { display: grid; gap: 1.5rem; }
.avis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.avis-stars { color: #FBBF24; font-size: 1rem; margin-bottom: .75rem; }
.avis-text { font-style: italic; color: var(--text); margin-bottom: 1rem; font-size: .925rem; }
.avis-author { display: flex; align-items: center; gap: .75rem; }
.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.avis-author-info strong { font-size: .9rem; display: block; }
.avis-author-info span  { font-size: .8rem; color: var(--text-muted); }
.google-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.google-logo { font-size: 2rem; }
.google-score { font-size: 2rem; font-weight: 800; color: var(--dark); }
.google-details p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   ZONE GÉOGRAPHIQUE
   ============================================================ */
.geo-section { background: var(--light); }
.geo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.geo-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--orange);
  height: 420px;
}
.geo-map img,
.geo-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.geo-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.geo-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .925rem;
  color: var(--text);
  padding: .6rem .9rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.geo-item::before {
  content: '📍';
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-alt);
  color: rgba(255,255,255,.8);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: .95rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--orange); padding-left: .3rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}
.footer-contact-item strong { color: var(--white); }
.footer-contact-icon { color: var(--orange); font-size: 1rem; margin-top: .1rem; }

/* Mini form footer */
.footer-form { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.footer-form input, .footer-form select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  font-size: .875rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
  width: 100%;
}
.footer-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-form input:focus, .footer-form select:focus {
  border-color: var(--orange);
  background: rgba(232,119,34,.08);
}
.footer-form select option { background: var(--dark-alt); color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   SECTIONS SPÉCIFIQUES (pages internes)
   ============================================================ */

/* Page Hero interne */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2A3550 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  background: url('../images/2024%20Logo%20Process%20Informatique%20(seule).svg') no-repeat center / contain;
  opacity: .05;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p   { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .825rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }
.breadcrumb .current { color: var(--white); }

/* Pricing / offre card */
.offre-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.offre-card:hover, .offre-card.featured {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,119,34,.15);
}
.offre-card.featured { position: relative; }
.offre-card.featured::before {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .25rem .85rem;
  border-radius: 20px;
}
.offre-card h3 { margin-bottom: .5rem; }
.offre-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 1rem 0 .25rem;
  line-height: 1;
}
.offre-card .price sup { font-size: 1rem; vertical-align: top; margin-top: .4rem; }
.offre-card .price-period { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.offre-features { border-top: 1px solid var(--border); padding-top: 1.25rem; margin-top: 1.25rem; }
.offre-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  padding: .4rem 0;
  color: var(--text);
}
.offre-feature .check { color: var(--orange); font-weight: 700; }
.offre-feature .cross { color: #CCC; }

/* CTA bloc */
.cta-bloc {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--white);
}
.cta-bloc h2, .cta-bloc h3 { color: var(--white); margin-bottom: .75rem; }
.cta-bloc p { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; }
.cta-bloc .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Form styles */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- Contact Form 7 ---- */
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,119,34,.12);
}
.wpcf7 textarea { resize: vertical; min-height: 120px; }
.wpcf7 .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: .02em;
}
.wpcf7 .wpcf7-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,119,34,.35);
}
.wpcf7-not-valid-tip {
  color: #C53030;
  font-size: .8rem;
  margin-top: .3rem;
  display: block;
}
.wpcf7-response-output {
  margin-top: 1rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  border-width: 1px;
  border-style: solid;
}
.wpcf7-mail-sent-ok {
  background: #F0FFF4;
  color: #276749;
  border-color: #9AE6B4;
}
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background: #FFF5F5;
  color: #C53030;
  border-color: #FC8181;
}
.wpcf7-spinner { display: none !important; }
.wpcf7 p { margin-bottom: 0; }

/* Checkbox acceptance */
.wpcf7 .wpcf7-acceptance { display: block; margin-bottom: 1.5rem; }
.wpcf7 .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .825rem;
  color: var(--text-light);
  font-weight: 400;
  cursor: pointer;
}
.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: .15rem;
  accent-color: var(--orange);
  cursor: pointer;
}

/* Espacement champs CF7 */
.wpcf7 .wpcf7-form-control-wrap { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cols-4      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats  { display: none; }
}

@media (max-width: 768px) {
  .section    { padding: 60px 0; }
  .cols-3,
  .cols-2     { grid-template-columns: 1fr; }
  .steps-4,
  .steps-3    { grid-template-columns: 1fr 1fr; }
  .why-grid,
  .cyber-inner,
  .geo-inner,
  .ticketzen-inner { grid-template-columns: 1fr; }
  .ticketzen-cta { flex-direction: row; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }

  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    padding-top: 80px;
    overflow-y: auto;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav > li > a { font-size: 1.05rem; padding: .9rem 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--light);
    display: none;
  }
  .nav > li.open .dropdown { display: block; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }
  .topbar { display: none; }
}

@media (max-width: 480px) {
  .steps-4,
  .steps-3    { grid-template-columns: 1fr; }
  .hero-btns  { flex-direction: column; }
  .cols-4     { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp .5s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ============================================================
   LOGO DÉCORATIF EN FOND (bas-droite)
   ============================================================ */

/* Cartes blanches – logo orange très subtil
   Note : pas d'overflow:hidden pour préserver le box-shadow au hover */
.card { position: relative; }
.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .08;
  filter: invert(52%) sepia(96%) saturate(654%) hue-rotate(349deg) brightness(99%) contrast(95%);
  pointer-events: none;
  z-index: 0;
}

/* S'assurer que le contenu des cartes reste au-dessus */
.card > *:not(::after) { position: relative; z-index: 1; }

/* CTA bloc (fond orange) – logo blanc */
.cta-bloc {
  position: relative;
  overflow: hidden;
}
.cta-bloc::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .15;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.cta-bloc > * { position: relative; z-index: 1; }

/* offre-card (featured = orange) – logo blanc */
.offre-card {
  position: relative;
  overflow: hidden;
}
.offre-card::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
.offre-card.featured::after {
  opacity: .18;
  filter: brightness(0) invert(1);
  width: 120px;
  height: 120px;
}
.offre-card > * { position: relative; z-index: 1; }

/* Cyber banner (fond sombre) – logo blanc */
.cyber-banner {
  position: relative;
  overflow: hidden;
}
.cyber-banner::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 200px;
  height: 200px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .08;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}

/* Page hero (fond sombre) – logo blanc discret */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 160px;
  height: 160px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .07;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 1;
}

/* Hero principal homepage (fond sombre) – logo blanc */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 280px;
  height: 280px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .07;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 1;
}
/* Tout le contenu du hero doit rester visible au-dessus */
.hero .container,
.hero .hero-bg { position: relative; z-index: 2; }

/* Ticket Zen banner (fond orange) – logo blanc */
.ticketzen-banner {
  position: relative;
  overflow: hidden;
}
.ticketzen-banner::after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 220px;
  height: 220px;
  background: url("../images/2024 Logo Process Informatique (seule).svg") no-repeat bottom right / contain;
  opacity: .13;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}
.ticketzen-banner > .container { position: relative; z-index: 1; }

/* ============================================================
   CORRECTIF FONT AWESOME 6 – Compatibilité WordPress / Elementor
   Force le rendu correct même si un plugin surcharge la font-family
   ============================================================ */
i.fas,  i.fa-solid    { font-family: "Font Awesome 6 Free"   !important; font-weight: 900 !important; }
i.far,  i.fa-regular  { font-family: "Font Awesome 6 Free"   !important; font-weight: 400 !important; }
i.fab,  i.fa-brands   { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }
i.fas, i.far, i.fab, i.fa-solid, i.fa-regular, i.fa-brands {
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  line-height: 1;
}
