/* ══════════════════════════════════════
   SDP66 — Design System
   Version: V1.0.0 PREVIEW
   Date: 2026-03-23
   ══════════════════════════════════════ */

:root {
  /* Brand */
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --orange-400: #fbbf24;
  --orange-500: #f59e0b;

  /* Neutral */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;

  /* Semantic */
  --bg-primary: #ffffff;
  --bg-dark: var(--gray-950);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-500);
  --accent: var(--green-600);
  --accent-hover: var(--green-700);
  --accent-light: var(--green-50);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-green: 0 8px 32px rgba(22,163,74,.25);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-display { font-family: 'Fraunces', Georgia, serif; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ═══════ P1-S0 : HEADER ═══════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { width: 44px; height: 44px; border-radius: 10px; }
.header-logo-text { font-weight: 800; font-size: 1.1rem; color: var(--gray-900); }
.header-logo-sub { font-size: .7rem; color: var(--text-secondary); font-weight: 500; letter-spacing: .02em; }
.header-nav { display: none; gap: 32px; align-items: center; }
@media (min-width: 900px) { .header-nav { display: flex; } }
.header-nav a {
  font-size: .875rem; font-weight: 600; color: var(--gray-600);
  transition: color .2s; position: relative;
}
.header-nav a:hover { color: var(--accent); }
.btn-call-header {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 10px 20px; border-radius: var(--radius-full);
  font-weight: 700; font-size: .875rem;
  transition: all .25s; box-shadow: var(--shadow-green);
}
.btn-call-header:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-call-header svg { width: 18px; height: 18px; }

/* ═══════ P1-S1 : HERO ═══════ */
.hero {
  position: relative; padding: 120px 0 60px; overflow: hidden;
  background: linear-gradient(160deg, var(--gray-950) 0%, #0a1a0f 50%, var(--gray-950) 100%);
  min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(22,163,74,.12) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.hero-content { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3);
  color: var(--green-400); padding: 6px 16px; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600; margin-bottom: 24px;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.3); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--green-400);
  border-radius: 50%; animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; color: #fff; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.hero h1 span { color: var(--green-400); }
.hero-subtitle {
  font-size: 1.1rem; color: var(--gray-400); line-height: 1.7;
  margin-bottom: 32px; max-width: 520px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 16px 32px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1.05rem;
  box-shadow: var(--shadow-green);
  transition: all .3s;
}
.btn-cta-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(22,163,74,.35); }
.btn-cta-primary svg { width: 22px; height: 22px; }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  padding: 16px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 1rem; transition: all .3s;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.btn-cta-secondary svg { width: 20px; height: 20px; color: #25d366; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: var(--gray-400); font-size: .875rem; }
.hero-trust-item svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; }
.hero-trust-item strong { color: #fff; }

/* Hero right card */
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 32px; backdrop-filter: blur(10px);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--orange-500));
}
.hero-card-title { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; }
.hero-card-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.hero-card-price .amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.2rem; font-weight: 800; color: var(--green-400);
  line-height: 1;
}
.hero-card-price .unit { font-size: 1.1rem; color: var(--gray-400); }
.hero-card-label { color: var(--gray-500); font-size: .85rem; margin-bottom: 24px; }
.hero-card-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hero-card-features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-300); font-size: .9rem;
}
.hero-card-features li svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; }
.hero-card-tel {
  display: block; text-align: center; margin-top: 24px;
  background: var(--accent); color: #fff; padding: 14px;
  border-radius: var(--radius); font-weight: 700; font-size: 1.1rem;
  transition: all .3s; box-shadow: var(--shadow-green);
}
.hero-card-tel:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ═══════ P1-S1B : BARRE DE RÉASSURANCE ═══════ */
.trust-bar {
  background: var(--bg-primary); border-bottom: 1px solid var(--gray-100);
  padding: 0;
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
@media (min-width: 768px) { .trust-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-bar-item {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--gray-100);
}
.trust-bar-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .trust-bar-item:nth-child(2) { border-right: none; }
  .trust-bar-item:nth-child(n+3) { border-top: 1px solid var(--gray-100); }
}
.trust-bar-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-bar-icon svg { width: 22px; height: 22px; color: var(--accent); }
.trust-bar-text strong { display: block; font-size: .95rem; color: var(--gray-900); }
.trust-bar-text span { font-size: .8rem; color: var(--text-secondary); }

/* ═══════ SECTIONS COMMUNES ═══════ */
section { padding: 80px 0; }
@media (min-width: 768px) { section { padding: 100px 0; } }
.section-dark { background: var(--gray-950); color: #fff; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.section-label svg { width: 16px; height: 16px; }
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -.01em; margin-bottom: 16px;
}
.section-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }
.section-dark .section-desc { color: var(--gray-400); }

/* ═══════ P1-S2 : SERVICES ═══════ */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px;
  transition: all .3s; position: relative; overflow: hidden;
}
.service-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-800) 100%);
  border-color: transparent; color: #fff;
}
.service-card.featured .service-card-desc { color: rgba(255,255,255,.8); }
.service-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card.featured .service-card-icon { background: rgba(255,255,255,.15); }
.service-card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card.featured .service-card-icon svg { color: #fff; }
.service-card-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.service-card-desc { font-size: .9rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════ P1-S3 : TARIFS ═══════ */
.tarifs-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; max-width: 900px; margin: 0 auto;
}
@media (min-width: 768px) { .tarifs-grid { grid-template-columns: repeat(3, 1fr); } }
.tarif-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: all .3s; position: relative;
}
.tarif-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tarif-card.popular {
  border-color: var(--accent); box-shadow: var(--shadow-green);
}
.tarif-card.popular::before {
  content: 'Le + demandé'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 4px 14px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .05em;
}
.tarif-card-icon { font-size: 2rem; margin-bottom: 12px; }
.tarif-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 16px; }
.tarif-card-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.8rem; font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 4px;
}
.tarif-card-price sup { font-size: .5em; }
.tarif-card-unit { font-size: .85rem; color: var(--text-secondary); margin-bottom: 20px; }
.tarif-card-desc { font-size: .85rem; color: var(--text-secondary); line-height: 1.6; }

.tarifs-notes {
  max-width: 900px; margin: 32px auto 0;
  background: var(--gray-50); border-radius: var(--radius);
  padding: 24px; font-size: .85rem; color: var(--text-secondary); line-height: 1.8;
}

/* ═══════ P1-S4 : ZONE D'INTERVENTION ═══════ */
.zone-content { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .zone-content { grid-template-columns: 1fr 1fr; } }
.zone-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.zone-stat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.zone-stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem; font-weight: 800; color: var(--green-400);
}
.zone-stat-label { font-size: .8rem; color: var(--gray-400); margin-top: 4px; }
.zone-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-city {
  padding: 6px 14px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-full); font-size: .8rem; color: var(--gray-300);
  transition: all .2s;
}
.zone-city:hover { background: rgba(22,163,74,.15); border-color: rgba(22,163,74,.3); color: var(--green-400); }

/* ═══════ P1-S5 : AVIS ═══════ */
.avis-header-stars { display: flex; gap: 2px; justify-content: center; margin-bottom: 8px; }
.avis-header-stars svg { width: 28px; height: 28px; color: var(--orange-500); fill: var(--orange-500); }
.avis-google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--gray-200);
  padding: 10px 20px; border-radius: var(--radius-full);
  margin-top: 16px; box-shadow: var(--shadow-sm);
}
.avis-google-badge img { height: 20px; }
.avis-google-badge span { font-weight: 700; font-size: .95rem; }
.avis-google-badge small { color: var(--text-secondary); font-size: .8rem; }
.avis-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .avis-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .avis-grid { grid-template-columns: repeat(3, 1fr); } }
.avis-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 28px;
  transition: all .3s; position: relative;
  display: flex; flex-direction: column;
}
.avis-card:hover {
  border-color: var(--green-200);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.avis-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.avis-card-author { display: flex; align-items: center; gap: 12px; }
.avis-card-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  flex-shrink: 0; overflow: hidden;
  box-shadow: 0 2px 8px rgba(22,163,74,.25);
}
.avis-card-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.avis-card-name { font-weight: 700; font-size: .9rem; color: var(--gray-900); }
.avis-card-source { font-size: .75rem; color: var(--text-secondary); display: flex; align-items: center; gap: 4px; }
.avis-card-source svg { width: 12px; height: 12px; }
.avis-card-stars { display: flex; gap: 1px; }
.avis-card-stars svg { width: 15px; height: 15px; color: var(--orange-500); fill: var(--orange-500); }
.avis-card-quote {
  position: relative; flex: 1;
}
.avis-card-quote::before {
  content: '"'; position: absolute; top: -8px; left: -4px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem; line-height: 1; color: var(--green-200);
  pointer-events: none;
}
.avis-card-text {
  font-size: .9rem; color: var(--gray-600); line-height: 1.7;
  padding-left: 20px; padding-top: 8px;
}
.avis-card-google {
  width: 20px; height: 20px; flex-shrink: 0; opacity: .6;
}

/* ═══════ P1-S6 : FAQ ═══════ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: border-color .3s;
}
.faq-item.active { border-color: var(--green-200); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: .95rem; font-weight: 600;
  color: var(--text-primary); text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 20px; height: 20px; transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 20px; font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* ═══════ P1-S7 : CTA FINAL ═══════ */
.cta-final {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3.5-2 3z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-final-content { position: relative; z-index: 2; }
.cta-final h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff; font-weight: 800; margin-bottom: 12px;
}
.cta-final p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-final-tel {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff; display: block; margin-bottom: 24px;
  transition: opacity .2s;
}
.cta-final-tel:hover { opacity: .85; }
.cta-final-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══════ P1-S8 : FOOTER ═══════ */
.footer {
  background: var(--gray-950); color: var(--gray-400);
  padding: 64px 0 0; font-size: .875rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand-desc { margin: 16px 0; line-height: 1.7; font-size: .85rem; }
.footer h4 { color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--gray-400); transition: color .2s; font-size: .85rem; }
.footer a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ═══════ BARRE MOBILE FIXE ═══════ */
.mobile-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #fff; border-top: 1px solid var(--gray-200);
  padding: 10px 12px; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
@media (min-width: 900px) { .mobile-bar { display: none; } }
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: var(--radius); font-weight: 700; font-size: .9rem;
  transition: all .2s;
}
.mobile-bar-wa { background: #25d366; color: #fff; }
.mobile-bar-tel { background: var(--gray-900); color: #fff; }
.mobile-bar a svg { width: 20px; height: 20px; }

/* ═══════ PAGE ARTICLES LINKS ═══════ */
.articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 640px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .articles-grid { grid-template-columns: repeat(4, 1fr); } }
.article-link {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); font-size: .8rem; color: var(--gray-300);
  transition: all .2s;
}
.article-link:hover { background: rgba(22,163,74,.1); border-color: rgba(22,163,74,.3); color: var(--green-400); }
.article-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════ ABOUT SECTION ═══════ */
/* .about-content — styles deplaces en bas (section IMAGES INTEGRATION) */
.about-content p { margin-bottom: 16px; color: var(--text-secondary); font-size: 1rem; line-height: 1.8; }
.about-content strong { color: var(--text-primary); }

/* ═══════ MOBILE BOTTOM PADDING ═══════ */
@media (max-width: 899px) { body { padding-bottom: 80px; } }

/* ═══════ ANIMATIONS ═══════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fade-up .6s ease both; }
.animate-d1 { animation-delay: .1s; }
.animate-d2 { animation-delay: .2s; }
.animate-d3 { animation-delay: .3s; }

/* ═══════ LOADING SPINNER ═══════ */
.avis-loading-spinner {
  width: 32px; height: 32px; margin: 0 auto 12px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════ IMAGES INTEGRATION V1.0 — 2026-03-27 ═══════ */

/* Hero photo */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  margin: 0 auto;
}

/* Service card images */
.service-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}
.service-card.featured .service-card-img {
  opacity: .85;
}

/* About photo + text layout */
.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.about-photo {
  flex-shrink: 0;
}
.about-photo img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.about-text {
  flex: 1;
}

@media (max-width: 768px) {
  .hero-photo { max-width: 100%; }
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-photo img {
    width: 220px;
    height: 280px;
    margin-bottom: 24px;
  }
  .service-card-img {
    height: 120px;
  }
}