/* ══════════════════════════════════════════════════
   JULCA — Shared Stylesheet
   Commissaire aux comptes · julca.fr
   ══════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:  #143B62;
  --blue-mid:   #2575A1;
  --blue-light: #3a8fc0;
  --white:      #faf7f2;
  --off-white:  #f5f0ea;
  --cream-dark: #ebe4da;
  --text:       #2a2218;
  --text-light: #7a6e5e;
  --nav-h:      72px;
  --max-w:      1100px;
  --radius:     0px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: var(--nav-h);
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,34,24,0.08);
}

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-svg { width: 52px; height: 40px; }
.logo-img { height: 64px; width: auto; }
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.18em; color: var(--blue-dark);
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-mid); }

.nav-rdv {
  background: var(--blue-mid); color: var(--white) !important;
  padding: 9px 20px; font-size: 13px !important;
  font-weight: 600 !important; letter-spacing: 0.06em !important;
  transition: background 0.2s !important; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none !important;
}
.nav-rdv:hover { background: var(--blue-light) !important; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--blue-dark); transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Back link (mission pages) */
.back-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--blue-dark);
  text-decoration: none; letter-spacing: 0.05em;
  font-weight: 500; transition: color 0.2s;
}
.back-link:hover { color: var(--blue-mid); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue-dark); color: var(--white);
  border: none; padding: 14px 30px;
  font-family: 'Nunito', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 0.06em;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); }

.btn-secondary {
  background: transparent; color: var(--blue-dark);
  border: 1.5px solid var(--blue-dark); padding: 14px 30px;
  font-family: 'Nunito', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 0.06em;
  cursor: pointer; transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: var(--blue-dark); color: var(--white); }

.btn-rdv {
  background: var(--blue-mid); color: var(--white);
  border: none; padding: 14px 30px;
  font-family: 'Nunito', sans-serif; font-size: 14px;
  font-weight: 600; letter-spacing: 0.06em;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-rdv:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3); padding: 14px 32px;
  font-family: 'Nunito', sans-serif; font-size: 14px;
  font-weight: 400; letter-spacing: 0.06em;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ── SECTION LABEL ── */
.section-label {
  text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; color: var(--blue-mid);
  text-transform: uppercase; margin-bottom: 44px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--blue-mid); opacity: 0.4;
}

/* ── HERO ── */
.hero {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 60px 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(37,117,161,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(180,160,130,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -80px; top: 15%;
  width: 320px; height: 320px;
  border: 2px solid rgba(180,160,130,0.1);
  transform: rotate(15deg); pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--blue-mid); text-transform: uppercase;
  margin-bottom: 20px; animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 58px); font-weight: 300;
  line-height: 1.18; color: var(--blue-dark);
  max-width: 700px; margin-bottom: 20px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 strong { font-weight: 700; }
.hero-sub {
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 14px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-desc {
  font-size: 15px; color: var(--text-light);
  max-width: 460px; line-height: 1.75; margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-location {
  margin-top: 36px; font-size: 12px;
  letter-spacing: 0.15em; color: #a0b0c0;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* ── HERO STATS BANNER ── */
.hero-stats {
  align-self: stretch;
  margin: 60px -60px 0;
  background: var(--blue-dark); color: var(--white);
  padding: 50px 60px;
  display: flex; align-items: center; justify-content: center; gap: 80px;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* ── EXPERTISES ── */
.expertises { padding: 100px 60px; background: var(--off-white); }
.expertises-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; max-width: var(--max-w); margin: 0 auto;
}
.expertise-card {
  background: var(--white); padding: 34px 26px;
  border: 1px solid rgba(180,160,130,0.15);
  border-top: 3px solid var(--blue-dark);
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
  cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(42,34,24,0.1);
  border-top-color: var(--blue-mid);
}
.card-icon { width: 34px; height: 34px; margin-bottom: 18px; color: var(--blue-mid); }
.card-illus {
  width: 56px; height: 56px; background: var(--blue-dark);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; overflow: hidden;
}
.card-illus img { width: 70%; height: 70%; object-fit: contain; }
.expertise-card h3 {
  font-size: 17px; font-weight: 600; color: var(--blue-dark);
  line-height: 1.3; margin-bottom: 10px;
}
.expertise-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--blue-mid);
  transition: gap 0.2s;
}
.expertise-card:hover .card-arrow { gap: 10px; }
.sub-location {
  text-align: center; font-size: 12px;
  letter-spacing: 0.14em; color: #a0b0c0; margin-top: 48px;
}

/* ── PRATIQUE / A PROPOS ── */
.pratique-section { padding: 100px 60px; background: var(--white); position: relative; overflow: hidden; }
.pratique-section::after {
  content: ''; position: absolute; right: -60px; top: -40px;
  width: 260px; height: 260px;
  border: 2px solid rgba(180,160,130,0.1);
  transform: rotate(20deg); pointer-events: none;
}
.pratique-inner { max-width: var(--max-w); margin: 0 auto; }
.pratique-inner h2 {
  font-size: clamp(26px, 3vw, 38px); font-weight: 300;
  color: var(--blue-dark); max-width: 680px;
  line-height: 1.25; margin-bottom: 18px;
}
.pratique-inner h2 strong { font-weight: 700; }
.pratique-inner > p {
  font-size: 15px; color: var(--text-light);
  max-width: 580px; line-height: 1.8; margin-bottom: 60px;
}

.profile {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 50px; align-items: start;
}
.profile-photo {
  width: 300px; height: 400px;
  object-fit: cover; object-position: top;
}
.profile-placeholder {
  width: 300px; height: 400px;
  background: linear-gradient(160deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.profile-placeholder svg { width: 75%; opacity: 0.35; }
.profile-info h3 {
  font-size: 28px; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 6px;
}
.profile-title {
  font-size: 14px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 18px;
}
.profile-desc {
  font-size: 14px; color: var(--text-light);
  line-height: 1.8; max-width: 420px; margin-bottom: 24px;
}
.profile-contact {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px;
}
.profile-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--blue-mid);
  text-decoration: none; font-weight: 600; transition: color 0.2s;
}
.profile-contact a:hover { color: var(--blue-dark); }

/* ── PROCESS ── */
.process {
  background: var(--blue-dark); padding: 80px 60px; color: var(--white);
}
.process .section-label { color: rgba(255,255,255,0.5); }
.process .section-label::before,
.process .section-label::after { background: rgba(255,255,255,0.2); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 900px; margin: 0 auto;
}
.process-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; padding: 20px;
}
.step-num {
  font-family: 'Orbitron', sans-serif; font-size: 28px;
  color: rgba(255,255,255,0.18); line-height: 1;
}
.step-label {
  font-size: 13px; color: rgba(255,255,255,0.75); text-align: center;
}

/* ── METHODOLOGIE ── */
.methodologie { padding: 100px 60px; background: var(--off-white); position: relative; overflow: hidden; }
.methodologie::after {
  content: ''; position: absolute; left: -50px; bottom: -40px;
  width: 200px; height: 200px;
  border: 2px solid rgba(180,160,130,0.1);
  transform: rotate(-12deg); pointer-events: none;
}
.methodologie-inner { max-width: var(--max-w); margin: 0 auto; }
.methodologie h2 {
  font-size: 38px; font-weight: 300; text-align: center;
  color: var(--blue-dark); margin-bottom: 14px;
}
.methodologie h2 strong { font-weight: 700; }
.methodologie-sub {
  text-align: center; font-size: 15px; color: var(--text-light);
  margin: 0 auto 60px; max-width: 480px; line-height: 1.65;
}
.methodologie-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(180,160,130,0.15);
  border: 1px solid rgba(180,160,130,0.12);
}
.meth-item {
  background: var(--off-white); padding: 38px;
  display: flex; gap: 20px; align-items: flex-start;
}
.meth-item:nth-child(odd) { background: var(--white); }
.meth-icon {
  width: 30px; height: 30px; color: var(--blue-mid);
  flex-shrink: 0; margin-top: 2px;
}
.meth-item h4 {
  font-size: 15px; font-weight: 600;
  color: var(--blue-dark); margin-bottom: 8px;
}
.meth-item p { font-size: 13px; color: var(--text-light); line-height: 1.65; }
.methodologie-note {
  text-align: center; font-size: 14px; color: var(--text-light);
  font-style: italic; padding: 28px 40px;
  border: 1px solid rgba(180,160,130,0.2);
  border-top: none; background: var(--white);
}

/* ── STATS ── */
.stats {
  background: var(--blue-dark); color: var(--white);
  padding: 70px 60px; display: flex;
  align-items: center; justify-content: center; gap: 80px;
}
.stat-main { text-align: center; }
.stat-main h3 {
  font-family: 'Aptos', 'Nunito', sans-serif; font-size: 28px;
  font-weight: 700; margin-bottom: 8px; letter-spacing: 0.05em;
}
.stat-main p {
  font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.08em;
}
.stat-icons { display: flex; gap: 40px; }
.stat-icon-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.stat-icon-item svg { width: 30px; height: 30px; color: rgba(255,255,255,0.5); }
.stat-icon-item span {
  font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
}

/* ── CONTACT BAR ── */
.contact-bar {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 60px; display: flex;
  align-items: center; justify-content: center; gap: 60px;
}
.contact-bar a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 13px; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.contact-bar a:hover { color: var(--white); }
.contact-bar .rdv-trigger {
  background: rgba(255,255,255,0.1); padding: 8px 18px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s; cursor: pointer;
}
.contact-bar .rdv-trigger:hover {
  background: rgba(255,255,255,0.2); color: var(--white);
}

/* ── CONTACT FORM SECTION ── */
.contact-section { padding: 100px 60px; background: var(--white); position: relative; overflow: hidden; }
.contact-section::after {
  content: ''; position: absolute; right: -40px; bottom: -30px;
  width: 180px; height: 180px;
  border: 2px solid rgba(180,160,130,0.1);
  transform: rotate(-8deg); pointer-events: none;
}
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info h2 {
  font-size: 38px; font-weight: 300; color: var(--blue-dark);
  margin-bottom: 10px; line-height: 1.2;
}
.contact-info h2 strong { font-weight: 700; }
.contact-info .sub {
  font-size: 12px; color: #a0b0c0;
  letter-spacing: 0.12em; margin-bottom: 28px; font-weight: 600;
}
.contact-addr {
  font-size: 14px; color: var(--text-light);
  line-height: 2.1; margin-bottom: 24px;
}

.rdv-card {
  background: var(--off-white);
  border: 1px solid rgba(180,160,130,0.2);
  border-left: 3px solid var(--blue-mid);
  padding: 22px 24px; margin-bottom: 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.rdv-card-text h4 {
  font-size: 14px; font-weight: 600;
  color: var(--blue-dark); margin-bottom: 4px;
}
.rdv-card-text p {
  font-size: 12px; color: var(--text-light); line-height: 1.5;
}
.rdv-card .btn-rdv { font-size: 13px; padding: 10px 20px; white-space: nowrap; }

.contact-logos {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px;
}
.contact-logos span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--blue-dark);
  opacity: 0.4; border: 1.5px solid currentColor; padding: 5px 10px;
}
.contact-logos img { display: block; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--blue-mid);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid rgba(180,160,130,0.25);
  padding: 11px 14px; font-family: 'Nunito', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--off-white); outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* File input */
.form-group input[type="file"] {
  padding: 10px 14px;
  cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
  background: var(--blue-dark); color: var(--white);
  border: none; border-radius: 4px;
  padding: 6px 14px; margin-right: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.form-group input[type="file"]::file-selector-button:hover {
  background: var(--blue-mid);
}

/* Honeypot field */
.form-honey { display: none !important; }

/* ── CERTIF BAR ── */
.certif-bar {
  background: var(--off-white); padding: 24px 60px;
  display: flex; align-items: center;
  justify-content: center; gap: 36px;
  border-top: 1px solid rgba(180,160,130,0.15);
}
.certif-bar span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--blue-dark); opacity: 0.3;
}
.certif-logo { height: 32px; width: auto; opacity: 0.35; }
.certif-logo-sm { height: 22px; width: auto; opacity: 0.45; }

/* ── FOOTER ── */
footer {
  background: var(--blue-dark); padding: 28px 60px;
  display: flex; flex-direction: column; gap: 20px;
}
.footer-row-1 {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-row-2 {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off-white); margin: 0 -60px -28px;
  padding: 20px 60px; border-top: 1px solid rgba(180,160,130,0.15);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.footer-logo-img {
  height: 64px; width: auto;
  filter: brightness(0) invert(1); opacity: 0.7;
}
.footer-certifs { display: flex; align-items: center; gap: 16px; }
.footer-certif-logo {
  height: 32px; width: auto;
}
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 12px; color: var(--text-light); }

/* ── BOOKINGS MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 25, 45, 0.75);
  backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.25s ease; }

.modal-box {
  background: var(--white);
  width: 100%; max-width: 820px; max-height: 92vh;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(10,25,45,0.3);
  animation: slideUp 0.3s ease; overflow: hidden;
}
.modal-header {
  background: var(--blue-dark); padding: 20px 28px;
  display: flex; align-items: center;
  justify-content: space-between; flex-shrink: 0;
}
.modal-header-left { display: flex; align-items: center; gap: 14px; }
.modal-header-icon { color: rgba(255,255,255,0.6); }
.modal-title {
  color: var(--white); font-size: 16px;
  font-weight: 600; letter-spacing: 0.03em;
}
.modal-subtitle {
  color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 3px;
}
.modal-close {
  background: rgba(255,255,255,0.1); border: none;
  color: var(--white); width: 36px; height: 36px;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 18px; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.25); }

.modal-body {
  flex: 1; overflow: hidden; position: relative; min-height: 520px;
}
.modal-body iframe {
  width: 100%; height: 100%; border: none;
  display: block; position: absolute; inset: 0;
}
.modal-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px; padding: 60px 40px; text-align: center;
  background: var(--off-white); height: 100%;
  position: absolute; inset: 0;
}
.modal-placeholder .pl-icon { color: var(--blue-mid); opacity: 0.35; }
.modal-placeholder h3 {
  font-size: 20px; font-weight: 600; color: var(--blue-dark);
}
.modal-placeholder p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.75; max-width: 420px;
}
.modal-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(180,160,130,0.15);
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; background: var(--off-white);
}
.modal-footer svg { color: var(--blue-mid); flex-shrink: 0; }
.modal-footer span { font-size: 12px; color: var(--text-light); }
.modal-footer a {
  color: var(--blue-mid); font-weight: 600; text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .expertises-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,247,242,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column; padding: 24px 20px;
    gap: 0; border-bottom: 1px solid rgba(42,34,24,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 14px 0;
    border-bottom: 1px solid rgba(42,34,24,0.06);
    font-size: 16px;
  }
  .nav-links .nav-rdv {
    display: block; text-align: center;
    margin-top: 10px; padding: 14px 20px;
  }
  .nav-burger { display: flex; }

  .hero { padding: 100px 24px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 30px; padding: 40px 24px; }

  .expertises, .pratique-section, .methodologie,
  .contact-section { padding: 70px 24px; }
  .expertises-grid { grid-template-columns: 1fr; }

  .profile { grid-template-columns: 1fr; }
  .profile-photo, .profile-placeholder { width: 160px; height: 200px; }

  .process { padding: 60px 24px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .methodologie-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .stats { flex-direction: column; gap: 40px; padding: 60px 24px; }

  footer { padding: 24px; text-align: center; }
  .footer-row-1, .footer-row-2 { flex-direction: column; gap: 12px; justify-content: center; }
  .footer-row-2 { margin: 0 -24px -24px; padding: 20px 24px; }
  .footer-links { justify-content: center; }
  .footer-certifs { justify-content: center; }

  .contact-bar { padding: 16px 24px; flex-direction: column; gap: 16px; }

  .rdv-card { flex-direction: column; align-items: flex-start; }

  .modal-box { max-height: 95vh; }
  .modal-body { min-height: 420px; }

  .certif-bar { flex-wrap: wrap; padding: 20px 24px; }
}
