/* ============================================================
   GROUPE REINE — Feuille de style partagée
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1a4f3a;
  --green-mid:   #2e7d62;
  --green-light: #4aab8a;
  --green-pale:  #c8e8dc;
  --green-bg:    #e8f4f0;
  --cream:       #f7f5f0;
  --bg:          #f4f6f4;
  --text-dark:   #0d1f16;
  --text-mid:    #4a6358;
  --text-light:  #8aa89e;
  --border:      #d4e5de;
  --white:       #ffffff;
  --shadow:      0 4px 28px rgba(30,92,74,.10);
}

html { scroll-behavior: smooth; }
body { font-family:'Montserrat',sans-serif; color:var(--text-dark); background:var(--bg); overflow-x:hidden; }

/* ===================== NAVBAR ===================== */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 clamp(20px,5vw,60px); height:64px;
  background:rgba(10,21,16,.82);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.nav-logo { display:flex; align-items:center; font-size:.95rem; font-weight:900; letter-spacing:1.5px; text-transform:uppercase; color:#fff; text-decoration:none; }
.nav-logo span { color:var(--green-light); }
.nav-menu { display:flex; align-items:center; gap:26px; }
.nav-menu a { font-size:.74rem; font-weight:600; letter-spacing:.3px; color:rgba(255,255,255,.68); text-decoration:none; transition:color .2s; white-space:nowrap; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color:var(--green-light); }
.nav-actions { display:flex; align-items:center; gap:14px; }
.nav-extranet {
  display:flex; align-items:center; gap:8px;
  background:var(--green-mid); color:#fff;
  font-family:'Montserrat',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
  padding:9px 18px; border-radius:6px; text-decoration:none;
  transition:background .2s,transform .2s; white-space:nowrap;
}
.nav-extranet:hover { background:var(--green-light); transform:translateY(-1px); }
.nav-divider { width:1px; height:20px; background:rgba(255,255,255,.12); }
.nav-contact-link { font-size:.72rem; font-weight:600; color:rgba(255,255,255,.55); text-decoration:none; transition:color .2s; }
.nav-contact-link:hover { color:var(--green-light); }
.nav-toggle { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span { display:block; width:22px; height:2px; background:#fff; margin:4px 0; border-radius:2px; transition:.25s; }

@media (max-width:960px) {
  .nav-toggle { display:block; }
  .nav-menu {
    position:fixed; top:64px; left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:rgba(10,21,16,.97); backdrop-filter:blur(18px);
    padding:8px clamp(20px,5vw,60px) 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
    max-height:0; overflow:hidden; transition:max-height .3s ease, padding .3s ease;
  }
  .nav-menu.open { max-height:340px; padding-top:16px; }
  .nav-menu a { width:100%; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.06); font-size:.85rem; }
  .nav-contact-link, .nav-divider { display:none; }
}

/* ===================== UTILS ===================== */
.container { width:100%; max-width:1160px; margin:0 auto; padding:0 clamp(20px,5vw,60px); }
.tag { display:inline-block; font-size:.65rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--green-mid); background:var(--green-bg); padding:5px 14px; border-radius:30px; margin-bottom:18px; }
.btn { font-family:'Montserrat',sans-serif; font-size:.78rem; font-weight:700; letter-spacing:.5px; text-transform:uppercase; padding:15px 32px; border-radius:4px; border:none; cursor:pointer; transition:transform .2s,box-shadow .2s,background .2s; text-decoration:none; display:inline-block; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--green-mid); color:#fff; box-shadow:0 8px 28px rgba(46,125,98,.4); }
.btn-primary:hover { background:var(--green-light); box-shadow:0 12px 36px rgba(46,125,98,.5); }
.btn-outline { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color:rgba(255,255,255,.7); background:rgba(255,255,255,.06); }

/* ===================== HERO (accueil) ===================== */
.hero { position:relative; width:100%; min-height:100vh; display:flex; align-items:center; overflow:hidden; background:var(--text-dark); }
.hero-bg {
  position:absolute; inset:0;
  background:
    linear-gradient(105deg, rgba(10,25,18,.88) 0%, rgba(10,25,18,.55) 45%, rgba(10,25,18,.15) 100%),
    url('fond1.jpg') center/cover no-repeat;
  transform:scale(1.04);
  animation:zoomBg 14s ease-out forwards;
}
@keyframes zoomBg { to { transform:scale(1); } }
.hero-grain {
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size:180px; opacity:.5; pointer-events:none;
}
.hero-line { position:absolute; left:clamp(32px,6vw,80px); top:0; bottom:0; width:1px; background:linear-gradient(to bottom, transparent, rgba(74,171,138,.45) 30%, rgba(74,171,138,.45) 70%, transparent); animation:fadeIn 1.2s .3s both; }
.hero-badge { position:absolute; top:clamp(24px,4vw,48px); left:clamp(60px,9vw,120px); font-size:.65rem; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:var(--green-pale); display:flex; align-items:center; gap:10px; animation:slideDown .8s .2s both; }
.hero-badge::before { content:''; width:28px; height:1px; background:var(--green-light); }
.hero-content { position:relative; z-index:2; padding:clamp(80px,12vw,160px) clamp(60px,9vw,120px); max-width:740px; }
.hero-eyebrow { font-size:.65rem; font-weight:700; letter-spacing:4px; text-transform:uppercase; color:var(--green-light); margin-bottom:20px; animation:slideUp .7s .4s both; }
.hero-heading { font-size:clamp(2.6rem,6vw,5rem); font-weight:900; line-height:.95; letter-spacing:-2px; color:var(--white); margin-bottom:28px; animation:slideUp .7s .55s both; }
.hero-heading em { font-style:italic; font-weight:300; color:var(--green-pale); }
.hero-heading .ul { display:inline-block; position:relative; }
.hero-heading .ul::after { content:''; position:absolute; left:0; bottom:4px; width:100%; height:3px; background:var(--green-light); border-radius:2px; transform:scaleX(0); transform-origin:left; animation:lineGrow .6s 1.2s forwards; }
@keyframes lineGrow { to { transform:scaleX(1); } }
.hero-body { font-size:clamp(.88rem,1.3vw,.98rem); font-weight:400; line-height:1.75; color:rgba(255,255,255,.6); max-width:400px; margin-bottom:40px; animation:slideUp .7s .7s both; }
.cta-group { display:flex; flex-wrap:wrap; gap:14px; animation:slideUp .7s .85s both; }
.stats-bar { position:absolute; bottom:0; left:0; right:0; z-index:3; display:flex; background:rgba(255,255,255,.06); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border-top:1px solid rgba(255,255,255,.1); animation:fadeIn .8s 1.1s both; }
.stat { flex:1; padding:22px 28px; display:flex; flex-direction:column; gap:4px; border-right:1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right:none; }
.stat-num { font-size:clamp(1.2rem,2vw,1.6rem); font-weight:800; color:#fff; letter-spacing:-1px; line-height:1; }
.stat-num span { color:var(--green-light); }
.stat-label { font-size:.62rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.4); }
.scroll-hint { position:absolute; right:clamp(24px,4vw,48px); bottom:90px; z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.3); font-size:.58rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; animation:fadeIn 1s 1.4s both; }
.scroll-mouse { width:22px; height:34px; border:1.5px solid rgba(255,255,255,.25); border-radius:11px; display:flex; justify-content:center; padding-top:6px; }
.scroll-dot { width:3px; height:6px; background:var(--green-light); border-radius:2px; animation:scrollDot 1.6s 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%,100%{transform:translateY(0);opacity:1;} 60%{transform:translateY(8px);opacity:0;} }

/* ===================== SUBHERO (pages intérieures) ===================== */
.subhero { position:relative; background:#072121; color:#fff; padding:calc(64px + clamp(48px,7vw,90px)) 0 clamp(44px,6vw,72px); overflow:hidden; }
.subhero::before { content:''; position:absolute; top:-140px; right:-120px; width:420px; height:420px; border-radius:50%; background:radial-gradient(circle, rgba(74,171,138,.16) 0%, transparent 70%); pointer-events:none; }
.breadcrumb { font-size:.68rem; font-weight:600; letter-spacing:.5px; color:rgba(255,255,255,.45); margin-bottom:22px; }
.breadcrumb a { color:rgba(255,255,255,.6); text-decoration:none; }
.breadcrumb a:hover { color:var(--green-light); }
.breadcrumb span { color:var(--green-light); }
.subhero .tag { color:var(--green-pale); background:rgba(200,232,220,.12); }
.subhero h1 { font-size:clamp(2rem,4.5vw,3.4rem); font-weight:900; letter-spacing:-1.5px; line-height:1.03; margin-bottom:18px; max-width:820px; }
.subhero h1 em { font-style:italic; font-weight:300; color:var(--green-pale); }
.subhero .lead { font-size:clamp(.92rem,1.4vw,1.05rem); line-height:1.7; color:rgba(255,255,255,.66); max-width:640px; }

/* ===================== ARTICLE / PROSE ===================== */
.article { padding:clamp(48px,7vw,84px) 0; }
.article .container { max-width:880px; }
.prose h2 { font-size:clamp(1.35rem,2.6vw,1.9rem); font-weight:900; letter-spacing:-.6px; color:var(--green-dark); line-height:1.15; margin:44px 0 16px; }
.prose h2:first-child { margin-top:0; }
.prose h2 .dot { color:var(--green-light); }
.prose h3 { font-size:1.02rem; font-weight:800; color:var(--text-dark); margin:28px 0 10px; }
.prose p { font-size:.93rem; line-height:1.85; color:var(--text-mid); margin-bottom:14px; }
.prose ul { list-style:none; margin:0 0 18px; }
.prose ul li { position:relative; padding-left:26px; font-size:.92rem; line-height:1.75; color:var(--text-mid); margin-bottom:9px; }
.prose ul li::before { content:''; position:absolute; left:4px; top:11px; width:8px; height:8px; border-radius:50%; background:var(--green-light); }
.prose strong { color:var(--green-dark); font-weight:700; }
.prose a { color:var(--green-mid); font-weight:600; text-decoration:none; }
.prose a:hover { text-decoration:underline; }
.callout { background:var(--green-bg); border-left:3px solid var(--green-mid); border-radius:0 10px 10px 0; padding:18px 22px; margin:22px 0; font-size:.9rem; line-height:1.7; color:var(--text-dark); }
.callout strong { color:var(--green-dark); }

/* Deux colonnes de "features" réutilisables */
.feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:26px 0; }
.feature-card { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:24px 22px; transition:transform .25s, box-shadow .25s; }
.feature-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.feature-card .fc-icon { width:44px; height:44px; border-radius:12px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.feature-card h3 { font-size:.92rem; font-weight:800; color:var(--text-dark); margin:0 0 8px; }
.feature-card p { font-size:.83rem; line-height:1.7; color:var(--text-mid); margin:0; }
@media (max-width:680px){ .feature-grid { grid-template-columns:1fr; } }

/* ===================== TABLEAUX DE PRIX ===================== */
.pricing-wrap { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin:28px 0; }
@media (max-width:760px){ .pricing-wrap { grid-template-columns:1fr; } }
.price-card { background:var(--white); border:1px solid var(--border); border-radius:18px; overflow:hidden; box-shadow:var(--shadow); }
.price-head { background:var(--green-dark); color:#fff; padding:18px 24px; display:flex; align-items:center; justify-content:space-between; }
.price-head h3 { font-size:.95rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; margin:0; }
.price-head .price-floor { font-size:.68rem; font-weight:600; color:var(--green-pale); }
.rate-table { width:100%; border-collapse:collapse; }
.rate-table th { text-align:left; font-size:.6rem; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-light); padding:14px 24px 8px; }
.rate-table th:last-child { text-align:right; }
.rate-table td { font-size:.9rem; color:var(--text-mid); padding:11px 24px; border-top:1px solid var(--border); }
.rate-table td:last-child { text-align:right; font-weight:800; color:var(--green-dark); }
.rate-table tr:first-child td { border-top:none; }
.price-note { padding:14px 24px 18px; font-size:.76rem; color:var(--text-light); line-height:1.6; border-top:1px solid var(--border); background:var(--cream); }
.price-note strong { color:var(--green-mid); }

/* Grille des frais d'intervention */
.grid-table-wrap { overflow-x:auto; margin:22px 0; border:1px solid var(--border); border-radius:14px; }
.grid-table { width:100%; border-collapse:collapse; min-width:520px; background:var(--white); }
.grid-table caption { text-align:left; font-size:.7rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--green-mid); padding:16px 20px 6px; }
.grid-table th { text-align:left; font-size:.66rem; font-weight:800; letter-spacing:.8px; text-transform:uppercase; color:var(--text-light); padding:12px 20px; background:var(--cream); border-bottom:1px solid var(--border); }
.grid-table td { font-size:.85rem; color:var(--text-mid); padding:12px 20px; border-bottom:1px solid var(--border); }
.grid-table td:first-child { color:var(--text-dark); font-weight:600; }
.grid-table tr:last-child td { border-bottom:none; }

/* ===================== CARTES "PAGES LIÉES" ===================== */
.related { background:var(--cream); padding:clamp(50px,7vw,80px) 0; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:820px){ .related-grid { grid-template-columns:1fr; } }
.related-card { display:block; background:var(--white); border:1px solid var(--border); border-radius:16px; padding:28px 26px; text-decoration:none; transition:transform .25s, box-shadow .25s; }
.related-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.related-card .rc-icon { width:48px; height:48px; border-radius:13px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.related-card h3 { font-size:.98rem; font-weight:800; color:var(--text-dark); margin:0 0 8px; letter-spacing:-.2px; }
.related-card p { font-size:.82rem; line-height:1.65; color:var(--text-mid); margin:0 0 14px; }
.related-card .rc-link { font-size:.78rem; font-weight:700; color:var(--green-mid); }

/* ===================== SPLIT ===================== */
.split { display:grid; grid-template-columns:1fr 1fr; min-height:580px; }
.split-text { background:var(--green-dark); padding:clamp(50px,7vw,90px) clamp(40px,6vw,80px); display:flex; flex-direction:column; justify-content:center; }
.split-text h2 { font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:900; line-height:1.05; letter-spacing:-1px; color:var(--white); margin-bottom:36px; }
.split-text h2 .dot { color:var(--green-light); }
.feature { margin-bottom:28px; }
.feature:last-child { margin-bottom:0; }
.feature h3 { font-size:.82rem; font-weight:700; color:var(--white); margin-bottom:8px; }
.feature p { font-size:.82rem; font-weight:400; line-height:1.7; color:rgba(255,255,255,.55); }
.split-img { position:relative; overflow:hidden; }
.split-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s ease; }
.split-img:hover img { transform:scale(1.03); }
.split-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to right, rgba(26,79,58,.25), transparent); pointer-events:none; }

/* ===================== ESTIMATION ===================== */
.estim-section { background:var(--cream); padding:clamp(60px,8vw,100px) 0; position:relative; overflow:hidden; }
.estim-section::before { content:''; position:absolute; top:-160px; left:-160px; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle, rgba(74,171,138,.08) 0%, transparent 70%); pointer-events:none; }
.section-head { text-align:center; margin-bottom:52px; }
.section-head h2 { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; letter-spacing:-1px; color:var(--text-dark); line-height:1.1; margin-bottom:12px; }
.section-head p { font-size:.88rem; color:var(--text-mid); font-weight:400; max-width:520px; margin:0 auto; line-height:1.7; }
.section-head h2 em { font-style:italic; font-weight:300; color:var(--green-mid); }
.estim-grid { display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(28px,4vw,56px); align-items:stretch; position:relative; z-index:1; max-width:1080px; margin:0 auto; }
.estim-pitch { display:flex; flex-direction:column; justify-content:center; padding:8px 0; }
.estim-pitch .pitch-eyebrow { font-size:.65rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--green-mid); margin-bottom:18px; }
.estim-pitch h3 { font-size:clamp(1.4rem,2.4vw,1.9rem); font-weight:900; color:var(--text-dark); letter-spacing:-.8px; line-height:1.15; margin-bottom:18px; }
.estim-pitch h3 em { font-style:italic; font-weight:300; color:var(--green-mid); }
.estim-pitch > p { font-size:.88rem; line-height:1.75; color:var(--text-mid); margin-bottom:28px; }
.estim-benefits { display:flex; flex-direction:column; gap:14px; }
.estim-benefit { display:flex; align-items:flex-start; gap:14px; }
.estim-benefit-icon { width:34px; height:34px; border-radius:10px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.estim-benefit-text { font-size:.83rem; line-height:1.55; color:var(--text-dark); font-weight:500; padding-top:6px; }
.estim-benefit-text strong { color:var(--green-dark); font-weight:700; }
.estim-card { background:var(--white); border-radius:20px; box-shadow:0 10px 40px rgba(30,92,74,.08); border:1px solid var(--border); padding:clamp(28px,3.5vw,40px); position:relative; }
.estim-card-badge { position:absolute; top:-12px; left:clamp(28px,3.5vw,40px); background:var(--green-dark); color:var(--green-pale); font-size:.58rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; padding:6px 14px; border-radius:20px; }
.estim-card h4 { font-size:1.05rem; font-weight:800; color:var(--text-dark); letter-spacing:-.3px; margin-bottom:6px; margin-top:6px; }
.estim-card-sub { font-size:.78rem; color:var(--text-mid); margin-bottom:24px; line-height:1.55; }
.estim-form { display:flex; flex-direction:column; gap:16px; }
.estim-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.estim-form .form-field { display:flex; flex-direction:column; gap:6px; }
.estim-form .form-field label { font-size:.66rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--text-mid); }
.estim-form .form-field label .req { color:var(--green-mid); margin-left:2px; }
.estim-form .form-field input, .estim-form .form-field select, .estim-form .form-field textarea { background:#fafaf7; border:1px solid var(--border); border-radius:10px; padding:12px 14px; font-family:'Montserrat',sans-serif; font-size:.85rem; font-weight:500; color:var(--text-dark); outline:none; transition:border-color .2s,background .2s,box-shadow .2s; }
.estim-form .form-field input::placeholder, .estim-form .form-field textarea::placeholder { color:var(--text-light); font-weight:400; }
.estim-form .form-field input:focus, .estim-form .form-field select:focus, .estim-form .form-field textarea:focus { border-color:var(--green-mid); background:#fff; box-shadow:0 0 0 4px rgba(74,171,138,.1); }
.estim-form .form-field textarea { resize:vertical; min-height:80px; font-family:'Montserrat',sans-serif; }
.estim-type-group { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.estim-type-opt { position:relative; cursor:pointer; }
.estim-type-opt input { position:absolute; opacity:0; pointer-events:none; }
.estim-type-opt-box { display:flex; align-items:center; gap:10px; padding:13px 14px; border:1.5px solid var(--border); border-radius:10px; background:#fafaf7; transition:all .2s; }
.estim-type-opt input:checked + .estim-type-opt-box { border-color:var(--green-mid); background:rgba(74,171,138,.06); }
.estim-type-opt-radio { width:16px; height:16px; border-radius:50%; border:1.5px solid var(--border); flex-shrink:0; position:relative; transition:border-color .2s; }
.estim-type-opt input:checked + .estim-type-opt-box .estim-type-opt-radio { border-color:var(--green-mid); }
.estim-type-opt input:checked + .estim-type-opt-box .estim-type-opt-radio::after { content:''; position:absolute; inset:3px; border-radius:50%; background:var(--green-mid); }
.estim-type-opt-label { font-size:.83rem; font-weight:600; color:var(--text-dark); }
.estim-form .btn-estim { background:var(--green-mid); color:#fff; border:none; font-family:'Montserrat',sans-serif; font-size:.78rem; font-weight:800; letter-spacing:.5px; text-transform:uppercase; padding:15px 28px; border-radius:10px; cursor:pointer; transition:background .2s,transform .2s,box-shadow .2s; box-shadow:0 6px 20px rgba(74,171,138,.25); margin-top:4px; }
.estim-form .btn-estim:hover { background:var(--green-light); transform:translateY(-1px); box-shadow:0 10px 28px rgba(74,171,138,.35); }
.estim-form .btn-estim:disabled { opacity:.6; cursor:wait; transform:none; }
.estim-notice { font-size:.7rem; color:var(--text-light); text-align:center; line-height:1.5; margin-top:4px; }
.estim-success { display:none; background:rgba(74,171,138,.1); border:1px solid rgba(74,171,138,.25); border-radius:10px; padding:14px 18px; color:var(--green-dark); font-size:.82rem; font-weight:600; line-height:1.5; }
.estim-error { display:none; background:rgba(200,50,50,.08); border:1px solid rgba(200,50,50,.25); border-radius:10px; padding:14px 18px; color:#a83232; font-size:.82rem; font-weight:500; line-height:1.5; }
@media (max-width:820px) {
  .estim-grid { grid-template-columns:1fr; gap:32px; }
  .estim-form .form-row, .estim-type-group { grid-template-columns:1fr; }
  .estim-card-badge { left:24px; }
}

/* ===================== SERVICES ===================== */
.services-section { background:var(--white); padding:clamp(60px,8vw,100px) 0; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card { background:var(--bg); border-radius:16px; padding:32px 28px; border:1px solid var(--border); transition:transform .25s,box-shadow .25s; text-decoration:none; display:block; }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.service-icon { width:50px; height:50px; border-radius:14px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.service-card h3 { font-size:.9rem; font-weight:700; color:var(--text-dark); margin-bottom:10px; letter-spacing:-.2px; }
.service-card p { font-size:.8rem; font-weight:400; line-height:1.7; color:var(--text-mid); }
.service-card .rc-link { display:inline-block; margin-top:12px; font-size:.75rem; font-weight:700; color:var(--green-mid); }

/* ===================== CONTACT ===================== */
.contact-section { background:var(--green-dark); padding:clamp(60px,8vw,100px) 0; position:relative; overflow:hidden; }
.contact-section::before { content:''; position:absolute; top:-120px; right:-120px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle, rgba(74,171,138,.15) 0%, transparent 70%); pointer-events:none; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center; }
.contact-text h2 { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:900; color:#fff; letter-spacing:-1px; line-height:1.1; margin-bottom:16px; }
.contact-text h2 em { font-style:italic; font-weight:300; color:var(--green-light); }
.contact-text p { font-size:.88rem; line-height:1.75; color:rgba(255,255,255,.6); margin-bottom:32px; }
.contact-info { display:flex; flex-direction:column; gap:14px; }
.contact-info-item { display:flex; align-items:center; gap:14px; font-size:.82rem; color:rgba(255,255,255,.75); font-weight:500; text-decoration:none; }
.contact-info-item:hover { color:#fff; }
.ci-icon { width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-cta-block { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:18px; padding:clamp(28px,3.5vw,40px); display:flex; flex-direction:column; gap:14px; }
.cta-eyebrow { font-size:.6rem; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--green-light); }
.cta-title { font-size:clamp(1.3rem,2.2vw,1.7rem); font-weight:900; color:#fff; letter-spacing:-.6px; line-height:1.15; margin-bottom:4px; }
.cta-title em { font-style:italic; font-weight:300; color:var(--green-light); }
.cta-text { font-size:.85rem; line-height:1.7; color:rgba(255,255,255,.65); margin-bottom:8px; }
.cta-list { list-style:none; padding:0; margin:0 0 12px 0; display:flex; flex-direction:column; gap:8px; }
.cta-list li { display:flex; align-items:center; gap:10px; font-size:.82rem; font-weight:500; color:rgba(255,255,255,.85); }
.cta-list li svg { flex-shrink:0; }
.cta-btn-large { display:block; background:var(--green-light); color:#fff; text-decoration:none; text-align:center; font-family:'Montserrat',sans-serif; font-size:.85rem; font-weight:800; letter-spacing:.5px; text-transform:uppercase; padding:18px 24px; border-radius:10px; box-shadow:0 8px 24px rgba(74,171,138,.4); transition:background .2s,transform .2s,box-shadow .2s; }
.cta-btn-large:hover { background:var(--green-mid); transform:translateY(-2px); box-shadow:0 12px 32px rgba(74,171,138,.5); }
.cta-or { font-size:.7rem; color:rgba(255,255,255,.35); text-align:center; letter-spacing:2px; font-weight:600; margin:0; }
.cta-tel-link { display:flex; align-items:center; justify-content:center; gap:10px; color:rgba(255,255,255,.85); text-decoration:none; font-size:.85rem; font-weight:600; padding:10px; border-radius:8px; transition:color .2s; }
.cta-tel-link:hover { color:var(--green-light); }

/* ===================== FOOTER ===================== */
footer { background:#072121; padding:52px 0 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:28px; }
.footer-brand .brand-logo { font-size:1.1rem; font-weight:900; color:#fff; letter-spacing:1px; text-transform:uppercase; margin-bottom:12px; }
.footer-brand .brand-logo span { color:var(--green-light); }
.footer-brand p { font-size:.78rem; line-height:1.7; color:rgba(255,255,255,.4); max-width:240px; }
.footer-col h4 { font-size:.65rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:.78rem; color:rgba(255,255,255,.55); text-decoration:none; font-weight:500; transition:color .2s; display:flex; align-items:center; gap:7px; }
.footer-col ul li a:hover { color:var(--green-light); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; font-size:.7rem; color:rgba(255,255,255,.25); font-weight:500; flex-wrap:wrap; gap:8px; }
.footer-bottom a { color:rgba(255,255,255,.35); text-decoration:none; }
.footer-bottom a:hover { color:var(--green-light); }

/* ===================== BANDEAU HONORAIRES ===================== */
.honoraires-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: clamp(28px,4vw,48px) clamp(20px,5vw,60px); }
.hon-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.hon-badge { background: var(--green-dark); color: var(--green-pale); font-size: .6rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; white-space: nowrap; }
.hon-items { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1; justify-content: center; }
.hon-item { display: flex; align-items: center; gap: 14px; padding: 0 clamp(20px,3vw,40px); }
.hon-picto { width: 54px; height: 54px; border-radius: 14px; background: var(--green-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hon-type { font-size: .85rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.hon-price { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }
.hon-price strong { color: var(--green-mid); font-weight: 900; font-size: 1.2rem; }
.hon-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }
.hon-cta { background: var(--green-mid); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 12px 24px; border-radius: 6px; text-decoration: none; white-space: nowrap; transition: background .2s, transform .2s; }
.hon-cta:hover { background: var(--green-light); transform: translateY(-1px); }

/* ===================== TIMELINE ===================== */
.timeline-section { background: #072121; padding: clamp(60px,8vw,100px) 0; }
.timeline-section .section-head { margin-bottom: 60px; }
.timeline-section .section-head h2 { color: var(--white); }
.timeline-section .section-head p { color: rgba(255,255,255,.55); }
.timeline-section .tag { color: var(--green-pale); background: rgba(200,232,220,.12); }
.timeline-section .section-head h2 em { color: var(--green-pale); }
.timeline { position: relative; }
.tl-line { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.15); transform: translateY(-50%); }
.tl-steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.tl-step { display: flex; flex-direction: column; align-items: center; position: relative; }
.tl-step.tl-top { flex-direction: column; padding-bottom: 20px; justify-content: flex-end; }
.tl-step.tl-bottom { flex-direction: column-reverse; padding-top: 20px; justify-content: flex-start; }
.tl-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--green-light); border: 3px solid #072121; box-shadow: 0 0 0 2px var(--green-light); flex-shrink: 0; z-index: 1; }
.tl-content { text-align: center; padding: 0 8px 16px; }
.tl-step.tl-bottom .tl-content { padding: 16px 8px 0; }
.tl-num { font-size: .9rem; font-weight: 400; color: rgba(255,255,255,.5); margin-bottom: 4px; letter-spacing: .5px; }
.tl-num span { font-weight: 900; color: var(--white); font-size: 1.6rem; letter-spacing: -1px; }
.tl-title { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.4; max-width: 140px; margin: 0 auto; }

/* ===================== FAQ ===================== */
.faq-section { background: var(--cream); padding: clamp(60px,8vw,100px) 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: var(--white); border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; font-size: .9rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; user-select: none; }
.faq-question:hover { background: var(--green-bg); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--green-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .25s; }
.faq-item.open .faq-icon { background: var(--green-mid); transform: rotate(45deg); }
.faq-icon svg { display: block; }
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; font-size: .85rem; line-height: 1.75; color: var(--text-mid); padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer strong { color: var(--green-dark); }

/* ===================== KEYFRAMES + RESPONSIVE ===================== */
@keyframes fadeIn   { from{opacity:0;} to{opacity:1;} }
@keyframes slideUp  { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }
@keyframes slideDown{ from{opacity:0;transform:translateY(-12px);} to{opacity:1;transform:translateY(0);} }

@media (max-width:900px) {
  .split { grid-template-columns:1fr; }
  .split-img { min-height:320px; }
  .services-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .form-row { grid-template-columns:1fr; }
  .stats-bar { flex-wrap:wrap; }
  .stat { flex:50%; border-bottom:1px solid rgba(255,255,255,.08); }
  .scroll-hint { display:none; }
}
@media (max-width: 700px) {
  .tl-line { display: none; }
  .tl-steps { grid-template-columns: 1fr; gap: 0; }
  .tl-step.tl-top, .tl-step.tl-bottom { flex-direction: row; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .tl-step.tl-top .tl-content, .tl-step.tl-bottom .tl-content { text-align: left; padding: 0; }
  .tl-dot { margin-top: 4px; flex-shrink: 0; }
  .tl-title { max-width: none; }
  .hon-items { flex-direction: column; align-items: flex-start; }
  .hon-divider { width: 100%; height: 1px; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width:540px) { .footer-grid { grid-template-columns:1fr; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation:none !important; transition:none !important; } html{scroll-behavior:auto;} }
