/* ================================
   MP CONSEILS - Feuille de style principale
   Palette : Bleu marine #18273B / Or #C9A961 / Crème #F8F5EE
   ================================ */

/* RESET ET BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fdfbf7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }

/* TYPOGRAPHIE */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.2;
  color: #18273B;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.5px; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C9A961;
  margin-bottom: 1rem;
  display: inline-block;
}

.gold { color: #C9A961; }

/* CONTENEURS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ================================
   HEADER / NAVIGATION
   ================================ */
.site-header {
  background: #18273B;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; letter-spacing: 0.5px; }
.logo-mark {
  width: 36px; height: 36px;
  background: #C9A961; color: #18273B;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  border-radius: 2px;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  color: #cbd5e1;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: #C9A961; opacity: 1; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #C9A961;
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 0.85rem; color: #cbd5e1; }
.btn-nav {
  background: #C9A961;
  color: #18273B;
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.btn-nav:hover { background: #d4b876; opacity: 1; }

.menu-toggle {
  display: none;
  background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; padding: 4px;
}

/* ================================
   BOUTONS
   ================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: #C9A961;
  color: #18273B;
}
.btn-primary:hover { background: #d4b876; opacity: 1; transform: translateY(-1px); }
.btn-dark {
  background: #18273B;
  color: #fff;
}
.btn-dark:hover { background: #243a59; opacity: 1; }
.btn-outline {
  background: transparent;
  color: #18273B;
  border: 1.5px solid #18273B;
}
.btn-outline:hover { background: #18273B; color: #fff; opacity: 1; }
.btn-light {
  background: #fff;
  color: #18273B;
}
.btn-light:hover { background: #f8f5ee; opacity: 1; }

/* ================================
   HERO (commun simplifié)
   ================================ */
.hero {
  background: #18273B;
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 800px; margin: 1rem auto; }
.hero p {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 1.5rem;
  color: #cbd5e1;
  line-height: 1.7;
}
.hero-meta {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* HERO HOME spécifique */
.hero-home {
  padding: 120px 0 100px;
  text-align: left;
}
.hero-home .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-home h1 { text-align: left; max-width: none; margin: 1rem 0 1.5rem; }
.hero-home p { text-align: left; margin: 0 0 2rem; }
.hero-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 32px;
  border-radius: 4px;
  position: relative;
}
.hero-stat-card::before {
  content: '"'; position: absolute; top: -20px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: #C9A961; line-height: 1;
}
.hero-stat-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 600;
  color: #C9A961;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 16px;
}
.hero-stat-text {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
}

/* ================================
   SECTIONS GÉNÉRIQUES
   ================================ */
section { padding: 80px 0; }
.section-light { background: #fdfbf7; }
.section-cream { background: #f8f5ee; }
.section-dark { background: #18273B; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 1rem; }
.section-header .lead {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .lead { color: #cbd5e1; }

/* BANDEAU CONFIANCE */
.trust-bar {
  background: #fff;
  border-top: 1px solid #e5e0d3;
  border-bottom: 1px solid #e5e0d3;
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid #e5e0d3;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 1.6rem;
  color: #C9A961;
  margin-bottom: 12px;
}
.trust-item h4 { font-family: 'Inter', sans-serif; font-size: 1rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.85rem; color: #6b7280; }

/* ================================
   GRILLE STATS / OPPORTUNITÉS
   ================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #e5e0d3;
  border-left: 1px solid #e5e0d3;
}
.stat-card {
  background: #fff;
  padding: 40px 32px;
  border-right: 1px solid #e5e0d3;
  border-bottom: 1px solid #e5e0d3;
  transition: background 0.2s;
}
.stat-card:hover { background: #fdfbf7; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #C9A961;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.stat-card p { font-size: 0.9rem; color: #4b5563; line-height: 1.65; margin: 0; }

/* ================================
   GRILLE SERVICES
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 32px 28px;
  border: 1px solid #e5e0d3;
  border-radius: 2px;
  transition: all 0.25s;
  position: relative;
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: #C9A961;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 39, 59, 0.08);
}
.service-icon {
  width: 48px; height: 48px;
  background: #18273B;
  color: #C9A961;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-radius: 2px;
}
.service-card h3 { margin-bottom: 10px; font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; }
.service-card p { font-size: 0.9rem; color: #4b5563; line-height: 1.65; margin-bottom: 16px; }
.service-link {
  font-size: 0.85rem;
  color: #18273B;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.service-link::after { content: ' →'; transition: transform 0.2s; display: inline-block; }
.service-link:hover::after { transform: translateX(4px); }

/* ================================
   PROCESSUS / ÉTAPES
   ================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step { position: relative; }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #C9A961;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { font-size: 0.9rem; color: #4b5563; line-height: 1.65; }
.section-dark .process-step p { color: #cbd5e1; }
.section-dark .process-num { color: #C9A961; }

/* ================================
   ENGAGEMENTS / 6 BLOCS
   ================================ */
.commits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.commit-block {
  padding-left: 20px;
  border-left: 2px solid #C9A961;
}
.commit-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #C9A961;
  margin-bottom: 4px;
  line-height: 1.1;
}
.commit-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.commit-block h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.commit-block p { font-size: 0.9rem; color: #4b5563; line-height: 1.65; }

/* ================================
   TÉMOIGNAGES
   ================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  padding: 32px;
  border: 1px solid #e5e0d3;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 0; left: 24px;
  font-size: 5rem;
  color: #C9A961;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: #18273B;
  margin: 24px 0 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #C9A961;
  color: #18273B;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.author-name { font-weight: 600; font-size: 0.95rem; }
.author-role { font-size: 0.8rem; color: #6b7280; }

/* ================================
   FAQ ACCORDION
   ================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e5e0d3;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #18273B;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-question:hover { color: #C9A961; }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: #C9A961;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.3s; }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 24px 0;
}
.faq-answer p { font-size: 0.95rem; color: #4b5563; line-height: 1.7; }

/* ================================
   FORMULAIRE
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: #4b5563; line-height: 1.7; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e0d3;
}
.contact-detail i { color: #C9A961; font-size: 1.1rem; width: 24px; }
.contact-detail strong { font-weight: 600; }

.contact-form {
  background: #fff;
  padding: 40px;
  border: 1px solid #e5e0d3;
  border-top: 3px solid #C9A961;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #18273B;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e0d3;
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fdfbf7;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C9A961;
  background: #fff;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  background: #f0f9f4;
  border-left: 3px solid #16a34a;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ================================
   CTA BAND
   ================================ */
.cta-band {
  background: #18273B;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at center, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 640px; margin: 0 auto 1rem; }
.cta-band p { color: #cbd5e1; max-width: 560px; margin: 0 auto 2rem; font-size: 1rem; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background: #0f1825;
  color: #94a3b8;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 1.2rem; color: #fff; font-weight: 600; margin-bottom: 12px; }
.footer-text { font-size: 0.85rem; line-height: 1.7; max-width: 320px; }
.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; font-size: 0.9rem; }
.footer-links a:hover { color: #C9A961; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a:hover { color: #C9A961; }

/* ================================
   PAGES INTÉRIEURES - HERO COMPACT
   ================================ */
.page-hero {
  background: #18273B;
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin: 0.5rem 0; }
.page-hero p { color: #cbd5e1; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: #94a3b8; margin-bottom: 8px; }
.breadcrumb a:hover { color: #C9A961; }

/* ================================
   PAGE SERVICE DÉTAILLÉ
   ================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-content h2 { margin: 2rem 0 1rem; }
.service-content h3 { margin: 1.5rem 0 0.75rem; font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; }
.service-content p { color: #4b5563; line-height: 1.75; margin-bottom: 1rem; }
.service-content ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.service-content li { color: #4b5563; line-height: 1.75; margin-bottom: 0.5rem; }
.service-content blockquote {
  border-left: 3px solid #C9A961;
  padding: 16px 24px;
  margin: 1.5rem 0;
  background: #fdfbf7;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #18273B;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #e5e0d3;
  border-top: 3px solid #C9A961;
  padding: 32px;
}
.service-sidebar h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 16px; }
.service-sidebar p { font-size: 0.9rem; color: #4b5563; margin-bottom: 16px; }
.service-sidebar .btn { width: 100%; text-align: center; }

.other-services {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e0d3;
}
.other-services h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: #6b7280; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.other-services ul { list-style: none; }
.other-services li { margin-bottom: 8px; }
.other-services a { font-size: 0.9rem; color: #18273B; }
.other-services a:hover { color: #C9A961; opacity: 1; }

/* ================================
   CAS CLIENTS
   ================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.case-card {
  background: #fff;
  border: 1px solid #e5e0d3;
  overflow: hidden;
  transition: all 0.25s;
}
.case-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 39, 59, 0.08); }
.case-banner {
  background: #18273B;
  color: #fff;
  padding: 32px;
  position: relative;
}
.case-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 60%);
}
.case-sector {
  font-size: 0.75rem;
  color: #C9A961;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  position: relative;
}
.case-banner h3 { color: #fff; margin: 0; position: relative; }
.case-body { padding: 32px; }
.case-body p { color: #4b5563; font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }
.case-result {
  display: flex; gap: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e0d3;
  margin-top: 16px;
}
.case-result-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #C9A961;
  font-weight: 600;
  line-height: 1;
}
.case-result-item p { font-size: 0.8rem; color: #6b7280; margin: 4px 0 0; }

/* ================================
   BLOG
   ================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e5e0d3;
  overflow: hidden;
  transition: all 0.25s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 39, 59, 0.08); }
.blog-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #18273B 0%, #243a59 100%);
  position: relative;
  overflow: hidden;
}
.blog-image::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
}
.blog-image i {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #C9A961; font-size: 3rem; opacity: 0.7;
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex; gap: 12px;
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.blog-meta .blog-cat { color: #C9A961; font-weight: 600; }
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 16px;
}
.blog-readmore {
  font-size: 0.85rem;
  font-weight: 600;
  color: #18273B;
}
.blog-readmore::after { content: ' →'; transition: transform 0.2s; display: inline-block; }
.blog-readmore:hover::after { transform: translateX(4px); }

/* PAGE ARTICLE */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body p {
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.article-body h2 {
  margin: 2.5rem 0 1rem;
}
.article-body h3 {
  margin: 1.75rem 0 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.article-body ul, .article-body ol { margin-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { color: #1f2937; line-height: 1.8; margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 3px solid #C9A961;
  padding: 16px 24px;
  margin: 2rem 0;
  background: #fdfbf7;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #18273B;
  line-height: 1.5;
}
.article-meta-top {
  text-align: center;
  margin-bottom: 2rem;
}
.article-meta-top .blog-meta { justify-content: center; }

/* ================================
   À PROPOS
   ================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { color: #4b5563; line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }
.about-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #18273B 0%, #243a59 100%);
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 60%);
}
.about-image-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: #fff;
}
.about-image-text .gold-line {
  width: 40px; height: 2px; background: #C9A961;
  margin-bottom: 12px;
}
.about-image-text h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.about-image-text p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-item { text-align: center; }
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: rgba(201, 169, 97, 0.1);
  color: #C9A961;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(201, 169, 97, 0.3);
}
.value-item h3 { margin-bottom: 12px; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; }
.value-item p { font-size: 0.9rem; color: #4b5563; line-height: 1.7; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-home .container { grid-template-columns: 1fr; }
  .stats-grid, .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .commits-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #18273B;
    flex-direction: column;
    padding: 20px 24px;
    gap: 14px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
  }
  .nav-links.show { display: flex; }
  .nav-phone { display: none; }
  .nav-actions .btn-nav { padding: 8px 14px; font-size: 0.8rem; }
  
  section, .hero-home, .hero { padding: 60px 0; }
  .stats-grid, .services-grid, .blog-grid, .testimonials-grid, .cases-grid, .values-grid { grid-template-columns: 1fr; }
  .process-grid, .commits-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-item { border-right: none; border-bottom: 1px solid #e5e0d3; padding-bottom: 24px; }
  .trust-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; }
  .contact-form { padding: 24px; }
  .case-result { flex-direction: column; gap: 12px; }
}

/* ================================
   ANIMATIONS LÉGÈRES
   ================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p, .hero .btn, .page-hero h1, .page-hero p {
  animation: fadeUp 0.6s ease-out backwards;
}
.hero p { animation-delay: 0.1s; }
.hero .btn { animation-delay: 0.2s; }
