/*
Theme Name: A2S Systèmes
Theme URI: https://a2ssystemes.dev-audouin-realisations.com
Author: Audouin Réalisations
Description: Thème sur mesure pour A2S Systèmes — Alarmes et vidéosurveillance
Version: 1.1.5
License: Private
Text Domain: a2s-theme
*/

/* ========================================
   VARIABLES
   ======================================== */
   
   .footer-brand img{
	    max-width: 150px;
   }
:root {
  --orange:       #E8680A;
  --orange-hover: #CF5A06;
  --orange-light: #FFF3E8;
  --orange-dark:  #B84E04;
  --navy:         #1A2444;
  --navy-mid:     #2B3A6B;
  --navy-light:   #3B4F8A;
  --gray-light:   #F7F8FA;
  --gray-bg:      #F4F5F7;
  --gray-mid:     #8A8F9E;
  --gray-border:  #E3E5EC;
  --white:        #FFFFFF;
  --text:         #1A2444;
  --font:         'Sora', sans-serif;
  --shadow-sm:    0 2px 8px rgba(26,36,68,.06);
  --shadow-md:    0 8px 32px rgba(26,36,68,.10);
  --shadow-lg:    0 16px 48px rgba(26,36,68,.14);
  --shadow-card:  0 4px 24px rgba(26,36,68,.08);
  --transition:   0.22s ease;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-pill:  50px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ========================================
   TOPBAR
   ======================================== */
.a2s-topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 12px;
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.a2s-topbar strong { color: var(--orange); }

/* ========================================
   NAVIGATION
   ======================================== */
.a2s-nav {
  background: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-border);
  height: 92px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
  gap: 24px;
  /* Permet le centrage absolu des liens */
  position: sticky;
}
.a2s-nav.scrolled { box-shadow: var(--shadow-md); border-bottom-color: transparent; }

.a2s-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.a2s-nav-logo img { height: 70px; width: auto; }

.partner-logo-block img{
	max-height:80px !important;
}

/* Centre links — position absolue pour un vrai centrage indépendant du logo */
.a2s-nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.a2s-nav-links a {
  color: var(--navy);
  opacity: .7;
  transition: opacity var(--transition), color var(--transition), background var(--transition);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.a2s-nav-links a:hover { opacity: 1; background: var(--gray-light); }

/* Right side: phone + CTA */
.a2s-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.a2s-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--transition);
}
.a2s-nav-phone:hover { color: var(--orange); }
.a2s-nav-phone-icon {
  width: 32px; height: 32px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.a2s-nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  opacity: 1 !important;
}
.a2s-nav-cta:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,104,10,.35) !important;
  background-color: var(--orange-hover) !important;
}

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

/* ========================================
   HERO
   ======================================== */
.a2s-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #2E4580 100%);
  color: #fff;
  padding: 80px 40px 72px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.a2s-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Overlay sur l'image de fond du hero */
.a2s-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,36,68,.92) 0%, rgba(43,58,107,.88) 55%, rgba(46,69,128,.82) 100%);
  z-index: 0;
  pointer-events: none;
}
.a2s-hero-inner { position: relative; z-index: 1; }

/* Decorative shapes */
.a2s-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 70px solid rgba(232,104,10,.1);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}
.a2s-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 30%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
}

.a2s-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,104,10,.2);
  border: 1px solid rgba(232,104,10,.45);
  color: #FFB580;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: .02em;
  animation: fadeInDown .6s ease both;
}
.a2s-hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFB580;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.a2s-hero h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.02em;
  animation: fadeInUp .7s ease .1s both;
}
.a2s-hero h1 em {
  font-style: normal;
  color: var(--orange);
  position: relative;
}
/* underline accent on em */
.a2s-hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: .4;
  border-radius: 2px;
}

.a2s-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  opacity: .8;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp .7s ease .2s both;
}

.a2s-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp .7s ease .3s both;
}

/* Hero trust row */
.a2s-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  opacity: .7;
  font-size: 12px;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .45s both;
}
.a2s-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   SERVICE CARD — image
   ======================================== */
.service-card-img {
  margin: -28px -28px 20px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  height: 180px;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* ========================================
   POURQUOI — photo + stats
   ======================================== */
.why-right { display: flex; flex-direction: column; gap: 16px; }
.why-family-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 4px;
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========================================
   HERO CARD (DEVIS) — carte blanche
   ======================================== */
.a2s-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: fadeInUp .8s ease .35s both;
}
.a2s-hero-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.a2s-hero-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.5s ease infinite;
}
.a2s-hero-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
}
.a2s-hero-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.devis-form { display: flex; flex-direction: column; gap: 12px; }
.devis-form input,
.devis-form select {
  background: var(--gray-light);
  border: 1.5px solid var(--gray-border);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  width: 100%;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.devis-form input:focus,
.devis-form select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,104,10,.12);
}
.devis-form input::placeholder { color: var(--gray-mid); }
.devis-form .btn-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .01em;
}
.devis-form .btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,104,10,.4);
}
.devis-note {
  font-size: 11px;
  color: var(--gray-mid);
  text-align: center;
  margin-top: 2px;
}

/* ========================================
   DEVIS — Contact Form 7 styling
   ======================================== */
.devis-cf7-wrap .wpcf7 { margin: 0; }
.devis-cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
.devis-cf7-wrap .wpcf7-form p { margin: 0; }
.devis-cf7-wrap .wpcf7-form br { display: none; }
.devis-cf7-wrap .wpcf7-form-control-wrap { display: block; width: 100%; }

.devis-cf7-wrap input.wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.devis-cf7-wrap select.wpcf7-form-control,
.devis-cf7-wrap textarea.wpcf7-form-control {
  background: var(--gray-light);
  border: 1.5px solid var(--gray-border);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  width: 100%;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.devis-cf7-wrap input.wpcf7-form-control:not([type="submit"]):focus,
.devis-cf7-wrap select.wpcf7-form-control:focus,
.devis-cf7-wrap textarea.wpcf7-form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,104,10,.12);
}
.devis-cf7-wrap input.wpcf7-form-control::placeholder,
.devis-cf7-wrap textarea.wpcf7-form-control::placeholder { color: var(--gray-mid); }

.devis-cf7-wrap .wpcf7-submit {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: .01em;
}
.devis-cf7-wrap .wpcf7-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,104,10,.4);
}

.devis-cf7-wrap .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #d32f2f;
  margin-top: 3px;
}
.devis-cf7-wrap .wpcf7-response-output {
  border: none !important;
  margin: 8px 0 0 !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 12px !important;
  text-align: center;
}
.devis-cf7-wrap .wpcf7-mail-sent-ok {
  background: #e8f5e9;
  color: #2e7d32;
}
.devis-cf7-wrap .wpcf7-mail-sent-ng,
.devis-cf7-wrap .wpcf7-validation-errors,
.devis-cf7-wrap .wpcf7-acceptance-missing {
  background: #fce4ec;
  color: #c62828;
}
.devis-cf7-wrap label { display: none; }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,104,10,.4);
  color: #fff;
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--orange);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  color: var(--orange);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
  color: #fff;
}

/* ========================================
   STRIP RÉASSURANCE
   ======================================== */
.a2s-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 28px;
  border-right: 1px solid var(--gray-border);
  transition: background var(--transition);
  cursor: default;
}
.strip-item:last-of-type { border-right: none; }
.strip-item:hover { background: var(--orange-light); }
.strip-icon {
  width: 34px; height: 34px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.strip-item:hover .strip-icon {
  transform: scale(1.12);
  background: rgba(232,104,10,.2);
}

.strip-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  background: #FFF8F6;
  border-left: 1px solid var(--gray-border);
}
.partner-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 5px;
}
.partner-logo-wrap { display: flex; align-items: center; gap: 6px; }

/* ========================================
   SECTION SYSTEM
   ======================================== */
.a2s-section        { padding: 80px 40px; background: var(--white); }
.a2s-section-gray   { padding: 80px 40px; background: var(--gray-light); }
.a2s-section-navy   { padding: 80px 40px; background: var(--navy); }
.a2s-section-orange { padding: 80px 40px; background: var(--orange); }

.a2s-inner {
  max-width: 1160px;
  margin: 0 auto !important;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  display: block;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-eyebrow { margin: 0 auto 14px; }

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--gray-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .service-card-number { color: rgba(232,104,10,.2); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform var(--transition), background var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(232,104,10,.18);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--orange-hover); }

/* ========================================
   SAV BAR
   ======================================== */
.a2s-sav-bar {
  background: var(--orange);
  padding: 28px 40px;
}
.a2s-sav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}
.sav-bar-left { flex-shrink: 0; }
.sav-bar-left { display: flex; align-items: center; gap: 18px; }
.sav-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sav-bar-left strong { font-size: 16px; font-weight: 700; color: #fff; display: block; margin-bottom: 3px; }
.sav-bar-left span { font-size: 13px; color: rgba(255,255,255,.85); }
.sav-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.sav-tag {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}
.sav-tag:hover { background: rgba(255,255,255,.18); }

/* ========================================
   PARTENAIRE SECURITAS
   ======================================== */
.a2s-partner-section {
  background: var(--white);
  padding: 64px 40px;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.partner-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.partner-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  border: 1.5px solid var(--gray-border);
  min-width: 200px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.partner-logo-block:hover { box-shadow: var(--shadow-md); border-color: rgba(252,39,63,.2); }
.partner-logo-block .plabel {
  font-size: 11px; font-weight: 700; color: var(--gray-mid);
  text-transform: uppercase; letter-spacing: .08em;
}
.partner-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(252,39,63,.08); border: 1px solid rgba(252,39,63,.2);
  color: #C41C35; font-size: 12px; font-weight: 700;
  padding: 5px 13px; border-radius: var(--radius-pill); margin-bottom: 12px;
}
.partner-text h3 {
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin-bottom: 12px; line-height: 1.25;
}
.partner-text p {
  font-size: 15px; color: var(--gray-mid); line-height: 1.75; max-width: 580px;
}

/* ========================================
   POURQUOI A2S
   ======================================== */
.a2s-why-section { background: var(--navy); padding: 80px 40px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.why-left .section-eyebrow { color: #FFB580; }
.why-left .section-eyebrow::before { background: #FFB580; }
.why-left .section-title { color: #fff; }
.why-left .section-sub { color: rgba(255,255,255,.6); }

.why-points { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-point:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(232,104,10,.3);
  transform: translateX(4px);
}
.why-check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(232,104,10,.2);
  border: 1.5px solid rgba(232,104,10,.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.why-point:hover .why-check { background: rgba(232,104,10,.35); }
.why-point p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.65); margin-top: 3px; }
.why-point strong { color: #fff; font-weight: 600; display: block; margin-bottom: 3px; font-size: 14px; }

/* .why-stats remplacé par .why-stats-grid dans le PHP */
.stat-dark {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.stat-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(232,104,10,.4);
  transform: translateY(-4px);
}
.stat-num {
  font-size: 36px; font-weight: 700; color: var(--orange);
  line-height: 1; margin-bottom: 6px; letter-spacing: -.02em;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ========================================
   FINANCEMENT
   ======================================== */
.a2s-finance-section {
  background: var(--orange-light);
  padding: 56px 40px;
  border-top: 1px solid rgba(232,104,10,.15);
  border-bottom: 1px solid rgba(232,104,10,.15);
}
.finance-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  max-width: 1160px; margin: 0 auto;
}
.finance-inner .section-title { font-size: 24px; margin-bottom: 4px; }
.finance-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.finance-badge {
  background: var(--white);
  border: 1.5px solid rgba(232,104,10,.15);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.finance-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.finance-badge.cta {
  background: var(--orange); border-color: var(--orange); color: #fff; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.finance-badge.cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,104,10,.4);
}

/* ========================================
   AVIS CLIENTS
   ======================================== */
.a2s-reviews-section { background: var(--gray-light); padding: 80px 40px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 56px;
  line-height: 1;
  color: var(--orange-light);
  font-family: Georgia, serif;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 14px; height: 14px; background: #F59E0B; border-radius: 3px; }
.review-card p {
  font-size: 14px; line-height: 1.75; color: #4A5173;
  margin-bottom: 18px; font-style: italic; position: relative; z-index: 1;
}
.reviewer-row { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--orange); flex-shrink: 0;
}
.reviewer { font-size: 13px; font-weight: 700; color: var(--navy); }
.reviewer span { display: block; font-weight: 400; color: var(--gray-mid); font-size: 12px; margin-top: 1px; }

/* ========================================
   CTA FINAL
   ======================================== */
.a2s-cta-section {
  background: var(--orange);
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.a2s-cta-section::before {
  content: '';
  position: absolute; top: -30%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.a2s-cta-section::after {
  content: '';
  position: absolute; bottom: -40%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  pointer-events: none;
}
.a2s-cta-section h2 {
  font-size: 36px; font-weight: 700; color: #fff;
  margin-bottom: 14px; position: relative; z-index: 1;
  letter-spacing: -.01em;
}
.a2s-cta-section p {
  font-size: 16px; color: rgba(255,255,255,.75);
  margin-bottom: 36px; position: relative; z-index: 1;
}
.cta-actions {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* Variante : bande Show-room (sans boutons, avec icônes) */
.a2s-showroom-section { padding: 56px 40px; }
.a2s-showroom-section .showroom-icons {
  display: flex; justify-content: center; gap: 28px;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.a2s-showroom-section .showroom-icons svg {
  opacity: .95;
}
.a2s-showroom-section h2 {
  font-size: 28px; margin-bottom: 10px;
}
.a2s-showroom-section p {
  margin-bottom: 0; font-size: 17px; color: rgba(255,255,255,.92);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
@media (max-width: 640px) {
  .a2s-showroom-section { padding: 44px 24px; }
  .a2s-showroom-section h2 { font-size: 22px; }
  .a2s-showroom-section p { font-size: 15px; }
  .a2s-showroom-section .showroom-icons { gap: 18px; }
  .a2s-showroom-section .showroom-icons svg { width: 32px; height: 32px; }
}

/* ========================================
   FOOTER
   ======================================== */
.a2s-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 56px 40px 28px;
}

html{
	    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
	    overflow-x: hidden;
}

.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
  max-width: 1160px; margin-left: auto; margin-right: auto;
}
.a2s-footer h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.a2s-footer ul { display: flex; flex-direction: column; gap: 10px; }
.a2s-footer ul li { font-size: 14px; }
.a2s-footer ul li a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.a2s-footer ul li a:hover { color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; max-width: 80%; color: rgba(255,255,255,.55); }
.footer-logo { font-size: 17px; font-weight: 700; color: #fff; }
.footer-logo img { height: 40px; width: auto; }
.footer-partner { margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.footer-partner span { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .07em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.35);
  max-width: 1160px; margin: 0 auto; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ========================================
   ZONES D'INTERVENTION
   ======================================== */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.zone-dept {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.zone-dept:hover { box-shadow: var(--shadow-md); }
.zone-dept-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-border);
  background: var(--gray-light);
}
.zone-badge {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.zone-dept-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.zone-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 16px;
}
.zone-cities li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  opacity: .8;
}
.zone-cities li a:hover {
  background: var(--orange-light);
  color: var(--orange);
  opacity: 1;
}

@media (max-width: 767px) {
  .zones-grid { grid-template-columns: 1fr; }
  .zone-cities { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   PAGE CONTENT (standard + WPBakery)
   ======================================== */
.a2s-page-content { background: var(--white); min-height: 60vh; }
.a2s-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 52px 40px;
  color: #fff;
  text-align: center;
}
.a2s-page-header h1 { font-size: 32px; font-weight: 700; letter-spacing: -.01em; }
.a2s-page-header .breadcrumb { font-size: 13px; opacity: .7; margin-top: 10px; }
.a2s-page-header .breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--speed); }
.a2s-page-header .breadcrumb a:hover { color: #fff; }
.a2s-page-header .breadcrumb-current { color: var(--orange); font-weight: 600; opacity: 1; }
.entry-content { max-width: 1160px; margin: 0 auto; padding: 52px 40px; }
.entry-content h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin: 32px 0 14px; }
.entry-content h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.entry-content p { font-size: 15px; line-height: 1.8; color: #4A5173; margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 16px 0 16px 24px; }
.entry-content li { font-size: 15px; line-height: 1.7; color: #4A5173; margin-bottom: 6px; }
.entry-content a { color: var(--orange); text-decoration: underline; }
.entry-content img { border-radius: var(--radius); margin: 24px 0; }

/* Empêche .entry-content d'écraser les styles des sections themed */
.entry-content .section-eyebrow            { color: var(--orange); }
.entry-content .a2s-cta-section h2         { color: #fff; }
.entry-content .a2s-cta-section p          { color: rgba(255,255,255,.92); }
.entry-content .a2s-cta-section .btn-white,
.entry-content .a2s-cta-section .btn-white:hover         { color: var(--orange); text-decoration: none; }
.entry-content .a2s-cta-section .btn-outline-white,
.entry-content .a2s-cta-section .btn-outline-white:hover { color: #fff; text-decoration: none; }
.entry-content .why-left .section-eyebrow  { color: #FFB580; }
.entry-content .a2s-contact-info .section-eyebrow { color: var(--orange); }

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.a2s-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.a2s-reveal.visible          { opacity: 1; transform: translateY(0); }
.a2s-reveal-delay-1          { transition-delay: .1s; }
.a2s-reveal-delay-2          { transition-delay: .2s; }
.a2s-reveal-delay-3          { transition-delay: .3s; }
.a2s-reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.a2s-reveal-left.visible     { opacity: 1; transform: translateX(0); }
.a2s-reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1); }
.a2s-reveal-right.visible    { opacity: 1; transform: translateX(0); }

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1100px) {
  .a2s-hero { min-height: auto; padding: 64px 40px 56px; }
  .a2s-hero::before { width: 260px; height: 260px; border-width: 50px; top: -30px; right: -30px; }
  .a2s-hero-inner { grid-template-columns: 1fr; }
  .a2s-hero h1 { font-size: 38px; }
  .a2s-hero-card { max-width: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .why-stats      { grid-template-columns: repeat(2, 1fr); }
  .partner-inner  { grid-template-columns: 1fr; gap: 32px; }
  .a2s-topbar     { display: none; }
  .a2s-nav-phone  { display: none; }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 767px) {
  .a2s-nav { padding: 0 20px; height: 72px; }
  .a2s-nav-right { gap: 8px; }
  .a2s-nav-phone { display: none; }
  .a2s-nav-toggle { display: flex; }
  .a2s-nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0; padding: 12px 0 20px;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%); opacity: 0;
    transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .3s ease;
    z-index: 999; justify-content: flex-start;
  }
  .a2s-nav-links.open { transform: translateY(0); opacity: 1; }
  .a2s-nav-links a {
    padding: 13px 24px; width: 100%;
    border-bottom: 1px solid var(--gray-light);
    border-radius: 0; font-size: 14px;
  }
  .a2s-nav-cta { margin: 12px 20px 0; display: block; text-align: center; border-radius: var(--radius-pill) !important; }

  .a2s-hero { padding: 48px 20px 44px; }
  .a2s-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .a2s-hero h1 { font-size: 28px; }
  .a2s-hero::before, .a2s-hero::after { display: none; }
  .a2s-hero-actions { flex-direction: column; }
  .a2s-hero-actions a, .a2s-hero-actions button { width: 100%; justify-content: center; }

  .a2s-section, .a2s-section-gray, .a2s-section-navy,
  .a2s-section-orange { padding: 56px 20px; }
  .a2s-sav-bar { padding: 24px 20px; }
  .a2s-sav-inner { flex-direction: column; align-items: flex-start; }
  .a2s-partner-section { padding: 48px 20px; }
  .a2s-finance-section { padding: 48px 20px; }
  .a2s-reviews-section { padding: 56px 20px; }
  .a2s-why-section { padding: 56px 20px; }
  .a2s-cta-section { padding: 64px 20px; }
  .a2s-footer { padding: 48px 20px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .why-stats     { grid-template-columns: 1fr 1fr; gap: 12px; }

  .section-title { font-size: 24px; }
  .a2s-cta-section h2 { font-size: 26px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .a2s-strip { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .a2s-strip::-webkit-scrollbar { height: 3px; }
  .a2s-strip::-webkit-scrollbar-thumb { background: var(--gray-border); }
  .strip-item { white-space: nowrap; flex-shrink: 0; }

  .finance-inner { flex-direction: column; }
}

/* ========================================
   CONTACT INFO
   ======================================== */
.a2s-contact-info {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 65%, var(--navy) 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.a2s-contact-info::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 90px solid rgba(232, 104, 10, .06);
  top: -140px; right: -120px;
  pointer-events: none;
}
.a2s-contact-info .section-eyebrow         { color: var(--orange); }
.a2s-contact-info .section-eyebrow::before { background: var(--orange); }
.a2s-contact-info .section-title           { color: #fff; }
.a2s-contact-info .section-sub             { color: rgba(255, 255, 255, .62); }
.a2s-contact-info-header                   { margin-bottom: 52px; }
.a2s-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.a2s-contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px 28px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .22);
  transition: transform var(--speed), box-shadow var(--speed);
}
.a2s-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .28);
}
.a2s-contact-card-icon {
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(232, 104, 10, .35);
}
.a2s-contact-card-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--orange) !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  margin: 0 0 7px !important;
  line-height: 1 !important;
}
.a2s-contact-card-value {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.a2s-contact-card-value a {
  color: var(--navy) !important;
  text-decoration: none !important;
  transition: color var(--speed);
}
.a2s-contact-card-value a:hover { color: var(--orange) !important; }
.a2s-contact-card-sub {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--gray-mid) !important;
  margin: 6px 0 0 !important;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.a2s-contact-form-section {
  background: var(--white);
  padding: 72px 40px 80px;
}
.a2s-contact-form-header { margin-bottom: 40px; }
.a2s-contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  border: 1px solid var(--gray-border);
}
@media (max-width: 900px) {
  .a2s-contact-cards { grid-template-columns: 1fr; gap: 16px; }
  .a2s-contact-info  { padding: 56px 24px; }
  .a2s-contact-form-section { padding: 56px 24px 64px; }
}
@media (max-width: 600px) {
  .a2s-contact-form-wrap { padding: 28px 20px; }
}
/* ========================================
   ALARMES — INTRO
   ======================================== */
.a2s-alarmes-intro {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--gray-border);
}
.a2s-alarmes-intro-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.a2s-checklist {
  list-style: none; padding: 0;
  margin: 28px 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.a2s-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: #4A5173; line-height: 1.5;
}
.a2s-check-icon {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(232,104,10,.3);
}
.a2s-alarmes-cta {
  display: inline-flex; align-items: center;
  background: var(--orange);
  color: #fff !important; text-decoration: none !important;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed);
  box-shadow: 0 4px 18px rgba(232,104,10,.35);
}
.a2s-alarmes-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,104,10,.45);
}
.a2s-alarmes-stats-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
}
.a2s-alarmes-card-deco {
  position: absolute; width: 260px; height: 260px;
  border-radius: 50%;
  border: 50px solid rgba(232,104,10,.08);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
.a2s-alarmes-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-bottom: 28px;
}
.a2s-alarmes-stat { display: flex; flex-direction: column; gap: 4px; }
.a2s-stat-val {
  font-size: 30px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.a2s-stat-lbl { font-size: 12px; color: rgba(255,255,255,.6); }
.a2s-alarmes-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
}

/* ========================================
   ALARMES — FONCTIONNALITÉS
   ======================================== */
.a2s-alarmes-features {
  background: var(--gray-light);
  padding: 80px 40px;
  border-top: 1px solid var(--gray-border);
}
.a2s-alarmes-features .section-title { margin-top: 10px; }
.a2s-alarmes-features .section-sub   { margin: 0 auto 52px; }
.a2s-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.a2s-feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  border: 1px solid var(--gray-border);
  border-top: 3px solid transparent;
  transition: border-color var(--speed), box-shadow var(--speed), transform var(--speed);
}
.a2s-feature-card:hover {
  border-top-color: var(--orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.a2s-feature-icon {
  width: 50px; height: 50px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.a2s-feature-card h3 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
}
.a2s-feature-card p {
  font-size: 14px; color: #4A5173;
  line-height: 1.65; margin: 0;
}

/* ========================================
   PROCESSUS
   ======================================== */
.a2s-process {
  background: var(--white);
  padding: 80px 40px;
  border-top: 1px solid var(--gray-border);
}
.a2s-process .section-sub   { margin: 0 auto 56px; }
.a2s-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.a2s-process-step {
  text-align: center;
  position: relative;
  padding-top: 8px;
}
.a2s-process-line {
  position: absolute;
  top: 35px; left: 50%; right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  z-index: 0;
}
.a2s-process-num {
  width: 60px; height: 60px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
  box-shadow: 0 4px 18px rgba(232,104,10,.35);
}
.a2s-process-step h3 {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
}
.a2s-process-step p {
  font-size: 14px; color: #4A5173;
  line-height: 1.65; margin: 0;
}

/* ── Responsive alarmes ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .a2s-alarmes-intro-inner   { grid-template-columns: 1fr; gap: 48px; }
  .a2s-alarmes-intro         { padding: 56px 24px; }
  .a2s-alarmes-features      { padding: 56px 24px; }
  .a2s-process               { padding: 56px 24px; }
  .a2s-features-grid         { grid-template-columns: repeat(2, 1fr); }
  .a2s-process-steps         { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .a2s-process-line          { display: none; }
}
@media (max-width: 600px) {
  .a2s-features-grid         { grid-template-columns: 1fr; }
  .a2s-process-steps         { grid-template-columns: 1fr; }
}