/* =============================================
   ANNUAIRE INSTALLATEURS CARPORT SOLAIRE
   Design System - Solaire & Professionnel
   ============================================= */

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

/* === VARIABLES === */
:root {
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FEF3C7;
  --secondary: #1E3A5F;
  --secondary-dark: #152B46;
  --secondary-light: #2E5F96;
  --accent: #10B981;
  --accent-dark: #059669;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-warm: #FFFBEB;
  --border: #E5E7EB;
  --border-focus: #F59E0B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --max-width: 1240px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--secondary);
}
h1 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-medium); line-height: 1.75; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.4);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,58,95,0.25);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--secondary);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--secondary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-inner { padding: 0 var(--space-xl); }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo span.accent { color: var(--primary); }
.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}
@media (min-width: 900px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.nav-cta { display: flex; align-items: center; gap: var(--space-sm); }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border-radius: var(--radius-sm);
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--secondary-dark);
  padding: var(--space-md);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.mobile-nav a:hover {
  background: rgba(245,158,11,0.15);
  color: var(--primary);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 60%, #3B7EC5 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.92) 0%, rgba(30,58,95,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.2);
  color: var(--primary);
  border: 1px solid rgba(245,158,11,0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 { color: #fff; margin-bottom: var(--space-md); }
.hero h1 span { color: var(--primary); }
.hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: var(--space-xl);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.hero-image-col {
  display: none;
}
@media (min-width: 1024px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }
  .hero-image-col {
    display: block;
    position: relative;
  }
  .hero-image-col img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .hero-image-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-image-badge strong { font-size: 1.2rem; color: var(--secondary); font-weight: 800; }
  .hero-image-badge span { font-size: 0.78rem; color: var(--text-light); }
}

/* === SEARCH BAR === */
.search-section {
  background: var(--bg-white);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.search-box {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .search-box {
    flex-direction: row;
    align-items: center;
  }
}
.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.12);
}
.search-box input, .search-box select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  font-family: var(--font-body);
  padding: 8px 4px;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
  display: none;
}
@media (min-width: 640px) { .search-divider { display: block; } }

/* === SECTIONS COMMUNES === */
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }
.section-light { background: var(--bg-light); }
.section-warm { background: var(--bg-warm); }
.section-dark {
  background: var(--secondary);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}
.section-header p {
  font-size: 1.05rem;
  margin-top: var(--space-md);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

/* === CARDS === */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.25s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: var(--primary-light);
  color: var(--primary-dark);
  flex-shrink: 0;
}
.card-icon.secondary {
  background: rgba(30,58,95,0.1);
  color: var(--secondary);
}
.card-icon.green {
  background: rgba(16,185,129,0.1);
  color: var(--accent-dark);
}
.card h3 { color: var(--secondary); margin-bottom: var(--space-sm); }
.card p { font-size: 0.92rem; }

/* === COMPANY CARDS === */
.company-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.company-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.company-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}
.company-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.company-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-premium {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}
.badge-verified {
  background: rgba(16,185,129,0.1);
  color: var(--accent-dark);
  border: 1px solid rgba(16,185,129,0.3);
}
.company-name { font-weight: 700; font-size: 1.05rem; color: var(--secondary); }
.company-naf {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: monospace;
}
.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}
.company-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.83rem;
  color: var(--text-light);
}
.company-meta-item svg { flex-shrink: 0; }
.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-xs);
}
.tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--text-medium);
  border: 1px solid var(--border);
}
.tag.tag-naf {
  background: rgba(30,58,95,0.06);
  color: var(--secondary);
  border-color: rgba(30,58,95,0.15);
}
.company-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--primary);
}

/* === GRID LAYOUTS === */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.grid-regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-regions { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-regions { grid-template-columns: repeat(4, 1fr); }
}

/* === REGION CARDS === */
.region-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  text-decoration: none;
}
.region-card:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.region-card:hover .region-card-name { color: #fff; }
.region-card:hover .region-card-count { color: rgba(255,255,255,0.7); }
.region-card:hover .region-card-arrow { color: var(--primary); }
.region-card-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
  transition: color 0.25s;
}
.region-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.region-card-arrow {
  color: var(--text-muted);
  transition: color 0.25s;
}

/* === DEPARTEMENT LIST === */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 640px) { .dept-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .dept-grid { grid-template-columns: repeat(4, 1fr); } }

.dept-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.2s;
  text-decoration: none;
}
.dept-link:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.dept-code {
  font-size: 0.75rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  font-family: monospace;
  flex-shrink: 0;
}
.dept-link:hover .dept-code {
  background: rgba(245,158,11,0.25);
  color: var(--primary);
}

/* === VILLES GRID === */
.villes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 640px) { .villes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .villes-grid { grid-template-columns: repeat(5, 1fr); } }

.ville-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.2s;
  text-decoration: none;
}
.ville-link:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

/* === FORMULAIRE DEVIS === */
.devis-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.devis-form h3 {
  color: var(--secondary);
  margin-bottom: 6px;
}
.devis-form .form-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: var(--space-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-full { grid-column: 1 / -1; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: var(--space-md); }
.form-mention {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === AVANTAGES SECTION === */
.avantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) { .avantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .avantages-grid { grid-template-columns: repeat(3, 1fr); } }

.avantage-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.avantage-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.avantage-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.ai-yellow { background: var(--primary-light); color: var(--primary-dark); }
.ai-blue { background: rgba(30,58,95,0.1); color: var(--secondary); }
.ai-green { background: rgba(16,185,129,0.1); color: var(--accent-dark); }

/* === AIDES SECTION === */
.aide-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.aide-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.aide-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* === SEO CONTENT SECTIONS === */
.content-article {
  max-width: 900px;
  margin: 0 auto;
}
.content-article p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}
.content-article h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.content-article h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.content-article ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}
.content-article ul li {
  list-style: disc;
  color: var(--text-medium);
  margin-bottom: 8px;
  line-height: 1.65;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: var(--space-md) 0;
}
.breadcrumb a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--text-medium); font-weight: 500; }

/* === PAGE HERO (sous-pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: var(--space-2xl) 0;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: var(--space-sm); }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 600px; }
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 999px;
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--bg-white);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  text-align: left;
  transition: background 0.2s;
  gap: var(--space-md);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.open { background: var(--primary-light); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  background: var(--bg-white);
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.92rem; }

/* === PAGINATION === */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-medium);
  transition: all 0.2s;
}
.pagination a:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.pagination .current {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

/* === FOOTER === */
.site-footer {
  background: var(--secondary-dark);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-3xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-legal { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  font-size: 0.82rem;
}
.footer-legal a:hover { color: var(--primary); }

/* === TRUST BAR === */
.trust-bar {
  background: var(--primary);
  padding: 10px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.cta-section h2 { color: var(--secondary); }
.cta-section p { color: rgba(30,58,95,0.8); font-size: 1.05rem; margin: var(--space-md) 0 var(--space-xl); }

/* === COMPANY PROFILE === */
.company-profile-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-xl) 0;
}
.company-profile-top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.company-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.company-profile-info h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 8px;
}
.company-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 768px) {
  .company-info-grid { grid-template-columns: 2fr 1fr; }
}
.company-info-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.company-info-item strong {
  color: var(--secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.company-info-item span { color: var(--text-medium); }
.sidebar-devis {
  position: sticky;
  top: 80px;
}

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

/* === BADGES SPÉCIAUX === */
.badge-new {
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === NOTIFICATION BANNER === */
.notif-banner {
  background: var(--secondary);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 10px var(--space-md);
  font-size: 0.85rem;
}
.notif-banner a { color: var(--primary); font-weight: 600; }
.notif-banner strong { color: #fff; }

/* === SUCCESS MESSAGE === */
.alert-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent-dark);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* === MISC === */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-lg) 0;
}
.text-center { text-align: center; }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }
.inline-flex { display: inline-flex; align-items: center; gap: 6px; }

/* === RESPONSIVE UTILITIES === */
.hide-mobile { display: none !important; }
@media (min-width: 768px) {
  .hide-mobile { display: initial !important; }
  .hide-desktop { display: none !important; }
}