/* ============================================================
   ascenseur-installation.fr — Styles principaux
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ── Variables ── */
:root {
  --primary:       #1A3A5C;
  --primary-dark:  #102740;
  --primary-light: #EEF4FB;
  --secondary:     #C8A96E;
  --accent:        #C8A96E;
  --accent-dark:   #A8843E;
  --text:          #1C1F26;
  --text-muted:    #5A6072;
  --text-light:    #9CA3AF;
  --bg:            #FFFFFF;
  --bg-alt:        #F7F9FC;
  --bg-dark:       #0D1B2A;
  --border:        #E2E8F0;
  --border-light:  #F1F5F9;
  --success:       #10B981;
  --shadow-sm:     0 1px 3px rgba(26,58,92,.07);
  --shadow-md:     0 4px 16px rgba(26,58,92,.10);
  --shadow-lg:     0 8px 40px rgba(26,58,92,.14);
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    .2s cubic-bezier(.4,0,.2,1);
  --max-w:         1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Helpers ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.125rem; }
p { color: var(--text-muted); line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #1A3A5C 0%, #243E60 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,58,92,.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #102740 0%, #1A3A5C 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,58,92,.38);
}
.btn-gold {
  background: linear-gradient(135deg, #C8A96E 0%, #D4B87A 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200,169,110,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #A8843E 0%, #C8A96E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,169,110,.45);
}
.btn-secondary {
  background: var(--primary-light);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-gold { background: #FAF0DC; color: #7A5C1E; }

/* ======================================================
   NAVIGATION
   ====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26,58,92,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.nav-logo span { color: var(--secondary); }
.nav-logo svg { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3A5C 55%, #243E60 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: .10;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,169,110,.3);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--secondary); }
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-search {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(13,27,42,.25);
  display: flex;
  gap: 12px;
  max-width: 580px;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
.hero-search input::placeholder { color: var(--text-light); }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.6); }
.hero-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  margin: 24px 0;
  border-radius: 2px;
}

/* ======================================================
   SECTION COMMONS
   ====================================================== */
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #FAF0DC, #FEF9EE);
  color: var(--accent-dark);
  border: 1px solid rgba(200,169,110,.3);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ======================================================
   FEATURE CARDS
   ====================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(200,169,110,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; }

/* ======================================================
   DEPARTMENT / REGION CARDS
   ====================================================== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.region-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.region-card:hover {
  border-color: var(--secondary);
  background: #FDFAF5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.region-card .icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.region-card:hover .icon { background: var(--primary); color: #fff; }
.region-card .info { flex: 1; min-width: 0; }
.region-card .name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.region-card .count { font-size: .78rem; color: var(--text-muted); }

/* ======================================================
   CITY LISTING
   ====================================================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.city-link:hover {
  border-color: var(--secondary);
  color: var(--primary);
  background: #FDFAF5;
}
.city-link svg { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; }

/* ======================================================
   COMPANY CARDS (SIRENE)
   ====================================================== */
.companies-section { background: var(--bg-alt); }
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.company-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.company-card:hover {
  border-color: rgba(200,169,110,.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.company-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.company-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #243E60);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.company-meta { flex: 1; min-width: 0; }
.company-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.company-siren { font-size: .78rem; color: var(--text-muted); font-family: monospace; }
.company-details { display: flex; flex-direction: column; gap: 8px; }
.company-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
}
.company-detail svg { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; }
.company-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.siren-loading {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}
.siren-loading svg { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--primary); animation: spin 1s linear infinite; }
.siren-empty {
  text-align: center;
  padding: 48px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}
.siren-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--text-light); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Skeleton Loader (SIRENE async) ── */
@keyframes skeleton-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.skeleton-card {
  pointer-events: none;
  cursor: default;
}
.skeleton-card .company-cta { opacity: 0; }
.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e8edf2 25%, #f4f7fa 50%, #e8edf2 75%);
  background-size: 600px 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  flex-shrink: 0;
}
.skeleton-line {
  border-radius: 6px;
  background: linear-gradient(90deg, #e8edf2 25%, #f4f7fa 50%, #e8edf2 75%);
  background-size: 600px 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  display: block;
}

/* ======================================================
   REVIEWS / AVIS
   ====================================================== */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(200,169,110,.2);
  line-height: 1;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; }
.review-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #243E60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-info .name { font-weight: 600; font-size: .9rem; }
.review-info .location { font-size: .8rem; color: var(--text-muted); }
.review-card.alt {
  background: #FDFAF5;
  border-color: rgba(200,169,110,.2);
}

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3A5C 100%);
  padding: 20px 0;
  border-top: 1px solid rgba(200,169,110,.2);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--secondary); }

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3A5C 60%, #243E60 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,.08) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,169,110,.4), transparent);
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ======================================================
   BREADCRUMB
   ====================================================== */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--primary); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .sep { color: var(--text-light); }
.breadcrumb-inner .current { color: var(--text-muted); }

/* ======================================================
   PAGE HERO (INNER)
   ====================================================== */
.page-hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3A5C 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200,169,110,.10) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  color: var(--secondary);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ======================================================
   SEARCH BOX + AUTOCOMPLETE
   ====================================================== */
.search-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 540px;
  border: 1px solid var(--border);
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: transparent;
}
.search-box input::placeholder { color: var(--text-light); }
.search-autocomplete {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 99;
  max-height: 320px;
  overflow-y: auto;
}
.search-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background var(--transition);
  font-size: .9rem;
}
.search-autocomplete-item:hover,
.search-autocomplete-item.focused {
  background: var(--primary-light);
}
.search-autocomplete-item svg { color: var(--secondary); flex-shrink: 0; }

/* ======================================================
   INFO CARDS (ville page)
   ====================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card-content .label { font-size: .78rem; color: var(--text-muted); margin-bottom: 2px; }
.info-card-content .value { font-weight: 700; font-size: 1rem; color: var(--text); }

/* ======================================================
   SEO TEXT (bas de page discret)
   ====================================================== */
.seo-text {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.seo-text-inner { max-width: 860px; }
.seo-text h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.seo-text p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.seo-text a { color: var(--primary); }
.seo-text a:hover { text-decoration: underline; }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.65);
  padding: 60px 0 0;
  border-top: 2px solid rgba(200,169,110,.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo span { color: var(--secondary); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.footer-trust-item svg { width: 14px; height: 14px; color: var(--secondary); }
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--secondary); }

/* ======================================================
   STICKY CTA BAR
   ====================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A3A5C 100%);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -4px 24px rgba(13,27,42,.3);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta.hiding {
  transform: translateY(100%);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 20px;
}
.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  flex: 1;
  min-width: 0;
}
.sticky-cta-text svg {
  color: var(--secondary);
  flex-shrink: 0;
}
.sticky-cta-text span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-text strong {
  color: var(--secondary);
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 11px 24px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(200,169,110,.4);
}
.sticky-cta-btn:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--secondary));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,110,.5);
}
.sticky-cta-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.sticky-cta-close:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* ======================================================
   SCROLL REVEAL
   ====================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   PAGINATION
   ====================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pagination a { color: var(--text-muted); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.pagination span.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}
.pagination span.dots { border: none; color: var(--text-light); }

/* ======================================================
   FORM STYLES (devis page)
   ====================================================== */
.devis-page { background: var(--bg-alt); }
.devis-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}
.devis-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.devis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* ======================================================
   NORMES / AIDES PAGE
   ====================================================== */
.aide-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.aide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(200,169,110,.3);
}
.aide-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.aide-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aide-icon.gold { background: linear-gradient(135deg, #FAF0DC, #FEE9C0); color: var(--accent-dark); }
.aide-icon.blue { background: var(--primary-light); color: var(--primary); }
.aide-icon.green { background: #D1FAE5; color: #065F46; }
.aide-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.aide-card p { font-size: .88rem; }
.aide-montant {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FAF0DC;
  color: var(--accent-dark);
  border: 1px solid rgba(200,169,110,.25);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 12px;
}
.norme-card {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.norme-card:hover {
  border-left-color: var(--secondary);
  background: #FDFAF5;
}
.norme-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.norme-card p { font-size: .87rem; }
.norme-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: monospace;
  letter-spacing: .03em;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding: 56px 0; }
  .hero-search { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .regions-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .cities-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .trust-bar-inner { gap: 16px; }
  .devis-card { padding: 28px 20px; }
  .sticky-cta-text span { display: none; }
  .sticky-cta-inner { gap: 10px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .companies-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .sticky-cta-text { display: none; }
  .sticky-cta-inner { justify-content: center; }
}