/* ── NetCompta – main.css ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0f1f3d;
  --green:       #22c55e;
  --green-dark:  #16a34a;
  --light-green: #dcfce7;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --max-w:       1160px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--navy);
  min-height: 100vh;
}

/* ── NAV ── */
nav, .site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nc-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0;
}
.nc-logo__top {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.nc-logo__icon { width: 44px; flex-shrink: 0; }
.nc-logo__name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: #0f2a56;
  letter-spacing: -0.025em;
  line-height: 1;
}
.nc-logo__tagline {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.5rem;
  color: #29a06a;
  letter-spacing: 0.02em;
  margin-top: 1px;
  margin-left: 49px;
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.btn-devis {
  background: var(--navy);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s !important;
}
.btn-devis:hover { background: #1e3a6e !important; }

/* ── HERO ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-green);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* Heading */
h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
h1 .accent {
  color: var(--green);
  position: relative;
  display: inline-block;
}
h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: var(--green);
  border-radius: 2px;
}

/* Paragraph */
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2rem;
}

/* CTA */
.cta-row {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(15,31,61,0.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,31,61,0.25); }
.btn-outline {
  border: 2px solid var(--border);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(15,31,61,0.04); }

/* Stats */
.stats { display: flex; gap: 2rem; }
.stat-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.stat-item span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── DASHBOARD CARD ── */
.dashboard-wrap { position: relative; }

.float-badge {
  position: absolute;
  top: -14px; right: -10px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(15,31,61,0.3);
  z-index: 10;
}
.float-badge svg { width: 12px; height: 12px; fill: #facc15; }

.dashboard-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(15,31,61,0.1), 0 1px 3px rgba(15,31,61,0.05);
  border: 1px solid var(--border);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.card-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
}
.online-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0.875rem;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  background: var(--bg);
  transition: background 0.2s;
  cursor: default;
}
.service-row:hover { background: #f1f5f9; }
.service-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.icon-blue   { background: #dbeafe; }
.icon-orange { background: #ffedd5; }
.icon-dark   { background: #1e293b; }
.icon-purple { background: #ede9fe; }

.service-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.check-icon { color: var(--green); font-weight: 700; font-size: 1rem; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.secure-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}
.footer-loc {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
.footer-loc span { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
.footer-loc .loc-france { color: var(--green-dark); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem 2rem;
    gap: 2.5rem;
  }
  .nav-links { display: none; }
  .stats { gap: 1.2rem; }
}

/* ── ACTUALITÉS ── */
.actu-section {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.actu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.actu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.actu-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.actu-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0;
}

/* Grille 3 colonnes */
.actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Carte article */
.actu-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.actu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,31,61,0.1);
}

/* Image */
.actu-img {
  height: 160px;
  overflow: hidden;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.actu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.actu-img--placeholder {
  font-size: 3rem;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

/* Corps */
.actu-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.actu-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  background: var(--light-green);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}
.actu-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}
.actu-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.actu-date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Responsive actualités */
@media (max-width: 900px) {
  .actu-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .actu-grid { grid-template-columns: 1fr; }
  .actu-header { flex-direction: column; align-items: flex-start; }
}

/* ── PAGE BLOG / ACTUALITÉS ── */
.blog-page {
  background: var(--bg);
  padding: 4rem 2rem 5rem;
}
.blog-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.blog-page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-page-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}
.blog-pagination {
  margin-top: 3rem;
  text-align: center;
}
.blog-pagination .nav-links a,
.blog-pagination .nav-links span {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.blog-pagination .nav-links a:hover { background: var(--light-green); }

/* ── PAGE ARTICLE INDIVIDUEL ── */
.single-page {
  background: var(--bg);
  padding: 3rem 2rem 5rem;
}
.single-inner {
  max-width: 760px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--green-dark); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.single-header { margin-bottom: 1.5rem; }
.single-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0.75rem 0 0.5rem;
}
.single-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.single-thumb {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.single-thumb img { width: 100%; height: auto; display: block; }

.single-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}
.single-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.single-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.single-content p { margin-bottom: 1.2rem; }
.single-content ul, .single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.single-content li { margin-bottom: 0.4rem; }
.single-content strong { color: var(--navy); }
.single-content a { color: var(--green-dark); text-decoration: underline; }

.single-cta {
  background: linear-gradient(135deg, #0f2a56 0%, #1e3f70 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.single-cta p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: #0a1628;
  color: #cbd5e1;
  margin-top: 0;
}

.footer-top {
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top .footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

/* Infos */
.footer-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}
.fc-icon { font-size: 1rem; flex-shrink: 0; }

/* Lien Maps */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,160,106,0.15);
  border: 1px solid rgba(41,160,106,0.4);
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.maps-link:hover {
  background: rgba(41,160,106,0.25);
  border-color: rgba(41,160,106,0.7);
}
.maps-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Carte */
.footer-map {
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Barre du bas */
.footer-bottom {
  padding: 1.25rem 2rem;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #64748b;
}
.footer-bottom-inner strong { color: #94a3b8; }
.footer-links {
  display: flex;
  gap: 1.25rem;
}
.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #29a06a; }

/* Responsive footer */
@media (max-width: 768px) {
  .footer-top .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-map { height: 220px; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── BOUTON COMPTE CLIENT ── */
.btn-compte {
  border: 2px solid #29a06a !important;
  color: #29a06a !important;
  opacity: 1 !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap;
}
.btn-compte:hover {
  background: #29a06a !important;
  color: #ffffff !important;
}

/* ── PAGE HERO (commun à toutes les pages) ── */
.page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #dcfce7 100%);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.page-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-section { background: var(--bg); padding: 4rem 2rem 5rem; }
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(15,31,61,0.08); }
.sc-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.sc-list { list-style: none; padding: 0; }
.sc-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.sc-list li::before { content: '✓'; color: var(--green); font-weight: 700; }

.services-cta {
  background: linear-gradient(135deg, #0f2a56 0%, #1e3f70 100%);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
.services-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white;
}
.services-cta p { color: #94a3b8; margin-bottom: 1.5rem; font-size: 1rem; }

/* ── MÉTHODE ── */
.methode-section { background: var(--bg); padding: 4rem 2rem 5rem; }
.methode-inner { max-width: var(--max-w); margin: 0 auto; }
.methode-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 4rem; }
.methode-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.3;
  flex-shrink: 0;
  line-height: 1;
  min-width: 60px;
}
.step-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.step-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

.valeurs-block { margin-bottom: 4rem; }
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.valeur-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.valeur-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.valeur-item h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.valeur-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── CABINET ── */
.cabinet-section { background: var(--bg); padding: 4rem 2rem 5rem; }
.cabinet-inner { max-width: var(--max-w); margin: 0 auto; }
.dirigeant-block {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}
.dirigeant-avatar {
  flex-shrink: 0;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f2a56, #29a06a);
  display: flex; align-items: center; justify-content: center;
}
.avatar-initiales {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
}
.dirigeant-info h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
}
.dirigeant-info p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.dirigeant-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.badge-item {
  background: var(--light-green);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.chiffres-block { margin-bottom: 3rem; }
.chiffres-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.chiffre-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}
.chiffre-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.chiffre-item span { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.histoire-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.histoire-block p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.histoire-block p:last-child { margin-bottom: 0; }
.histoire-block strong { color: var(--navy); }

/* ── CONTACT ── */
.contact-section { background: var(--bg); padding: 4rem 2rem 5rem; }
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}
.contact-form-wrap h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* Formulaire */
.nc-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #29a06a; background: white; }
.form-group textarea { resize: vertical; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-item:hover { border-color: #29a06a; background: var(--light-green); }
.checkbox-item input { accent-color: #29a06a; }

.form-success {
  background: var(--light-green);
  color: var(--green-dark);
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Infos contact */
.contact-info h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.ci-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.ci-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.ci-item span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.contact-map { margin-top: 0.5rem; }

/* ── RESPONSIVE PAGES ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .valeurs-grid  { grid-template-columns: 1fr 1fr; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .valeurs-grid  { grid-template-columns: 1fr; }
  .chiffres-grid { grid-template-columns: 1fr 1fr; }
  .dirigeant-block { flex-direction: column; align-items: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .methode-step { flex-direction: column; gap: 0.5rem; }
}
