/* ============================================
   RepaTech — Feuille de style principale
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── VARIABLES ── */
:root {
  --navy: #0f1c2e;
  --steel: #1e3a5f;
  --mid-blue: #2d5a8e;
  --accent: #4a8ec2;
  --light-blue: #a8c8e8;
  --silver: #b8c4d0;
  --light-silver: #dce5ed;
  --off-white: #f0f4f8;
  --white: #ffffff;
  --grey-mid: #6b7f93;
  --grey-dark: #3a4a5c;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--off-white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 60px;
  background: rgba(15,28,46,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74,142,194,0.15);
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
body {
  padding-top: 70px;
}
.logo-placeholder {
  width: 120px;
  border: none;
  outline: none;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo-text span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--silver);
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--mid-blue) !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 15px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.01em;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(74,142,194,0.35);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--mid-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,142,194,0.4);
}
.btn-ghost {
  border: 1px solid rgba(74,142,194,0.3);
  color: var(--light-blue); background: transparent;
  padding: 15px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.01em;
  transition: all 0.25s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(74,142,194,0.08);
  color: var(--white);
}

/* ── SECTIONS (partagé) ── */
section { padding: 100px 60px; }
.section-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 20px;
}
.section-desc {
  font-size: 16px; color: var(--silver);
  line-height: 1.7; max-width: 520px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 120px 60px 80px;
  position: relative; overflow: hidden;
  align-items: center; gap: 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(45,90,142,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30,58,95,0.3) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,142,194,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,142,194,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,142,194,0.12);
  border: 1px solid rgba(74,142,194,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 500;
  color: var(--light-blue); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: clamp(40px, 5vw, 66px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--light-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--silver); max-width: 480px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.phone-mockup {
  width: 220px; height: 440px;
  background: linear-gradient(160deg, #1e3a5f 0%, #0f1c2e 100%);
  border-radius: 36px;
  border: 2px solid rgba(74,142,194,0.3);
  box-shadow:
    0 0 0 1px rgba(74,142,194,0.08),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.phone-mockup::before {
  content: '';
  width: 60px; height: 6px;
  background: rgba(74,142,194,0.3);
  border-radius: 10px;
  position: absolute; top: 18px;
}
.repair-icon {
  width: 80px; height: 80px;
  background: rgba(74,142,194,0.1);
  border: 1px solid rgba(74,142,194,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.repair-lines {
  display: flex; flex-direction: column; gap: 8px; padding: 0 28px;
  width: 100%;
}
.repair-line { height: 6px; border-radius: 4px; background: rgba(74,142,194,0.15); }
.repair-line:first-child { background: linear-gradient(90deg, var(--accent), transparent); width: 75%; }
.repair-line:nth-child(2) { width: 55%; background: rgba(74,142,194,0.2); }
.repair-line:nth-child(3) { width: 85%; background: rgba(74,142,194,0.1); }
.floating-badge {
  position: absolute;
  background: var(--off-white); color: var(--navy);
  border-radius: 10px; padding: 10px 14px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  display: flex; align-items: center; gap: 8px;
}
.fb-1 { top: 60px; right: -50px; }
.fb-2 { bottom: 80px; left: -60px; }
.fb-dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #4caf83; }
.dot-blue { background: var(--accent); }

/* ── STATS BAR ── */
.stats-bar {
  background: rgba(30,58,95,0.4);
  border-top: 1px solid rgba(74,142,194,0.1);
  border-bottom: 1px solid rgba(74,142,194,0.1);
  padding: 30px 60px;
  display: flex; justify-content: space-around; gap: 20px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--white), var(--light-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--grey-mid); margin-top: 4px; letter-spacing: 0.04em; }

/* ── SERVICES ── */
#services { background: rgba(30,58,95,0.12); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; flex-wrap: wrap; gap: 30px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(74,142,194,0.08);
  border-radius: 16px; overflow: hidden;
}
.service-card {
  background: var(--navy); padding: 40px 32px;
  transition: background 0.25s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover { background: rgba(30,58,95,0.8); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  font-size: 32px; margin-bottom: 20px;
  width: 60px; height: 60px;
  background: rgba(74,142,194,0.08);
  border: 1px solid rgba(74,142,194,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--grey-mid); line-height: 1.65; }
.service-card .service-price { margin-top: 20px; font-size: 13px; color: var(--light-blue); font-weight: 500; }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 34px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--mid-blue), var(--accent), transparent);
}
.process-step { text-align: center; padding: 0 20px; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(74,142,194,0.2);
}
.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 13px; color: var(--grey-mid); line-height: 1.6; }

/* ── WHY US ── */
#why {
  background: rgba(15,28,46,0.6);
  padding: 80px 60px;
  text-align: center;
}
.why-header {
  text-align: center;
  margin-bottom: 50px;
}
.why-header .section-desc { margin: 0 auto; }
#why > div {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#why .why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  gap: 16px;
}
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card {
  background: rgba(30,58,95,0.4);
  border: 1px solid rgba(74,142,194,0.12);
  border-radius: 14px; padding: 24px 20px;
  transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover { border-color: rgba(74,142,194,0.35); transform: translateY(-4px); }
.why-card.large { grid-column: 1 / -1; display: flex; align-items: center; gap: 20px; }
.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--light-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.why-card h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-card p { font-size: 12px; color: var(--grey-mid); line-height: 1.6; }
.why-content { text-align: center; }
.why-content .section-title,
.why-content .section-tag,
.why-content .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
.why-points { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 820px; margin-left: auto; margin-right: auto; }
.why-point { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 32px 24px; background: rgba(30,58,95,0.35); border: 1px solid rgba(74,142,194,0.12); border-radius: 14px; transition: border-color 0.25s, transform 0.25s; }
.why-point:hover { border-color: rgba(74,142,194,0.35); transform: translateY(-4px); }
.why-point-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(74,142,194,0.1); border: 1px solid rgba(74,142,194,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.why-point-text h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-point-text p { font-size: 13px; color: var(--grey-mid); line-height: 1.55; }

/* ── TESTIMONIALS ── */
#testimonials { background: rgba(30,58,95,0.15); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-desc { margin: 0 auto; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(74,142,194,0.1);
  border-radius: 20px; padding: 32px 28px;
  transition: border-color 0.3s, background 0.3s;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute; top: 16px; right: 22px;
  font-family: 'Syne', sans-serif;
  font-size: 80px; font-weight: 800;
  color: rgba(74,142,194,0.07);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover { border-color: rgba(74,142,194,0.28); background: rgba(74,142,194,0.04); }
.stars { color: #f5c842; font-size: 12px; margin-bottom: 14px; letter-spacing: 3px; }
.review-text { font-size: 14px; color: rgba(220,235,248,0.7); line-height: 1.75; margin-bottom: 24px; font-style: italic; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(74,142,194,0.08); padding-top: 18px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(74,142,194,0.12);
  border: 1px solid rgba(74,142,194,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 13px; color: #4a8ec2;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--white); }
.reviewer-sub { font-size: 12px; color: var(--grey-mid); }

/* ── CONTACT ── */
#contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(74,142,194,0.1);
}
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(74,142,194,0.1); border: 1px solid rgba(74,142,194,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; color: var(--grey-mid); letter-spacing: 0.08em; text-transform: uppercase; }
.contact-detail-value { font-size: 15px; color: var(--white); font-weight: 500; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; color: var(--grey-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(30,58,95,0.3);
  border: 1px solid rgba(74,142,194,0.2);
  border-radius: 8px; padding: 12px 16px;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey-mid); }
.form-field select option { background: var(--navy); }
.form-field textarea { min-height: 100px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: rgba(10,18,30,0.9);
  border-top: 1px solid rgba(74,142,194,0.12);
  padding: 50px 60px 30px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-text { font-size: 20px; }
.footer-brand p { font-size: 13px; color: var(--grey-mid); line-height: 1.7; margin-top: 14px; max-width: 220px; }
.footer-col h5 {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--grey-mid); font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--light-blue); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(74,142,194,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--grey-mid); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(74,142,194,0.08);
  border: 1px solid rgba(74,142,194,0.15);
  border-radius: 100px; padding: 5px 12px;
  font-size: 11px; color: var(--accent);
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
/* Fallback si JS ne se déclenche pas */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.6s ease forwards; }

/* ── MENTIONS LÉGALES ── */
.legal-hero {
  padding: 160px 60px 80px;
  position: relative; overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(45,90,142,0.2) 0%, transparent 60%),
    linear-gradient(rgba(74,142,194,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,142,194,0.03) 1px, transparent 1px);
  background-size: auto, 50px 50px, 50px 50px;
}
.legal-hero-content { position: relative; z-index: 1; max-width: 700px; }
.legal-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 58px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 16px;
}
.legal-hero p { font-size: 15px; color: var(--grey-mid); }

.legal-content {
  padding: 0 60px 100px;
  max-width: 860px;
}
.legal-section {
  background: rgba(30,58,95,0.25);
  border: 1px solid rgba(74,142,194,0.1);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 16px;
  transition: border-color 0.25s;
}
.legal-section:hover { border-color: rgba(74,142,194,0.25); }
.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.legal-section p { font-size: 14px; color: var(--silver); line-height: 1.8; }
.legal-section p + p { margin-top: 10px; }

.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--light-blue); font-size: 13px;
  text-decoration: none; margin-bottom: 40px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--white); }
.legal-back::before { content: '←'; }

/* ── NAV GHOST BUTTON ── */
.nav-cta-ghost {
  border: 1px solid rgba(74,142,194,0.4);
  color: var(--light-blue) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  text-decoration: none;
  font-size: 14px;
}
.nav-cta-ghost:hover {
  background: rgba(74,142,194,0.1);
  color: var(--white) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 10px 16px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .logo-area { flex-shrink: 0; }
  .logo-placeholder { width: 65px; }
  .nav-links {
    display: flex !important;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
  }
  .nav-links li { list-style: none; }
  .nav-cta-ghost {
    padding: 7px 9px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }
  .nav-cta {
    padding: 7px 9px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }
  body { padding-top: 65px; }

  .hero { grid-template-columns: 1fr; padding: 30px 24px 60px; }
  .hero-visual { display: none; }
  section { padding: 60px 24px; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: 12px;
  }
  .service-card {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
  }
  .service-icon {
    width: 42px; height: 42px;
    font-size: 20px;
    border-radius: 10px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-card h3 {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
  }
  .service-card p { display: none; }
  .service-card::after { display: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  #why { padding: 60px 20px !important; }
  #why .why-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  #why .why-card { padding: 20px 14px !important; }
  #why > div { padding: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    padding: 0 !important;
    gap: 0 !important;
    justify-content: unset !important;
  }
  .stat {
    padding: 22px 12px !important;
    border-bottom: 1px solid rgba(74,142,194,0.1) !important;
    border-right: 1px solid rgba(74,142,194,0.08) !important;
  }
  .stat:nth-child(2n) { border-right: none !important; }
  .stat-num { font-size: 24px !important; }
  .legal-hero { padding: 120px 24px 60px; }
  .legal-content { padding: 0 24px 60px; }
  .legal-section { padding: 24px; }
}

@media (max-width: 400px) {
  .nav-cta-ghost, .nav-cta {
    font-size: 10px !important;
    padding: 6px 6px !important;
  }
}

/* ============================================
   FAQ — Coller ces lignes à la fin de style.css
   ============================================ */

/* Wrapper général */
.faq-wrapper {
  max-width: 860px;
  padding: 0 60px 100px;
}

/* Bouton espace propriétaire */
.faq-admin-bar {
  margin-bottom: 24px;
}
.faq-admin-toggle {
  background: transparent;
  border: 1px solid rgba(74,142,194,0.15);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  color: var(--grey-mid);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.faq-admin-toggle:hover {
  border-color: rgba(74,142,194,0.35);
  color: var(--light-blue);
}
.faq-admin-toggle-active {
  border-color: rgba(74,142,194,0.4);
  color: var(--accent);
  background: rgba(74,142,194,0.07);
}

/* Panneau admin */
.faq-admin-panel {
  display: none;
  background: rgba(15,28,46,0.75);
  border: 1px solid rgba(74,142,194,0.28);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
}
.faq-admin-panel.faq-admin-open {
  display: block;
}
.faq-admin-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(74,142,194,0.1);
  font-size: 22px;
}
.faq-admin-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.faq-admin-sub {
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 2px;
}
.faq-empty-text {
  font-size: 13px;
  color: var(--grey-mid);
  text-align: center;
  padding: 20px 0;
}

/* Carte admin */
.faq-admin-card {
  background: rgba(30,58,95,0.3);
  border: 1px solid rgba(74,142,194,0.1);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}
.faq-admin-pending {
  border-color: rgba(245,200,66,0.2);
  background: rgba(245,200,66,0.03);
}
.faq-admin-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.faq-admin-card-meta strong {
  font-size: 14px;
  color: var(--white);
}
.faq-admin-card-meta span {
  font-size: 12px;
  color: var(--grey-mid);
}
.faq-admin-question {
  font-size: 14px;
  color: var(--off-white);
  margin-bottom: 14px;
  line-height: 1.6;
}
.faq-admin-textarea {
  width: 100%;
  background: rgba(15,28,46,0.7);
  border: 1px solid rgba(74,142,194,0.2);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  min-height: 90px;
  resize: vertical;
  margin-bottom: 10px;
  display: block;
  transition: border-color 0.2s;
}
.faq-admin-textarea:focus {
  border-color: var(--accent);
}
.faq-admin-textarea::placeholder {
  color: var(--grey-mid);
}
.faq-admin-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.faq-admin-answered-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.faq-admin-answered-preview {
  font-size: 13px;
  color: var(--silver);
  background: rgba(74,142,194,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Boutons admin */
.faq-btn-publish {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-btn-publish:hover { background: var(--mid-blue); }
.faq-btn-edit {
  background: rgba(74,142,194,0.15);
  color: var(--light-blue);
  border: 1px solid rgba(74,142,194,0.3);
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-btn-edit:hover {
  background: rgba(74,142,194,0.25);
  color: var(--white);
}
.faq-btn-delete {
  background: transparent;
  border: 1px solid rgba(239,68,68,0.3);
  color: rgba(239,68,68,0.7);
  border-radius: 8px;
  padding: 9px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.faq-btn-delete:hover {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.6);
  color: rgb(239,68,68);
}

/* Section formulaire */
.faq-form-section {
  margin-bottom: 48px;
}
.faq-form-section h2 {
  margin-bottom: 10px;
}
.faq-form-section > p {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 24px;
  line-height: 1.65;
}
.faq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.faq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.faq-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.faq-field input,
.faq-field textarea {
  background: rgba(15,28,46,0.6);
  border: 1px solid rgba(74,142,194,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.faq-field input:focus,
.faq-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,142,194,0.1);
}
.faq-field input::placeholder,
.faq-field textarea::placeholder {
  color: var(--grey-mid);
}
.faq-field textarea {
  min-height: 120px;
  resize: vertical;
}
.faq-submit {
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-top: 6px;
}
.faq-success {
  display: none;
  background: rgba(76,175,131,0.1);
  border: 1px solid rgba(76,175,131,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: #4caf83;
  text-align: center;
  margin-top: 16px;
}

/* Header liste questions */
.faq-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.faq-count {
  background: rgba(74,142,194,0.1);
  border: 1px solid rgba(74,142,194,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* Carte question publique */
.faq-card {
  margin-bottom: 14px;
}
.faq-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.faq-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid-blue), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--light-blue);
  flex-shrink: 0;
}
.faq-card-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.faq-card-date {
  font-size: 11px;
  color: var(--grey-mid);
  margin-top: 2px;
}
.faq-card-question {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 16px;
}
.faq-answer-block {
  background: rgba(74,142,194,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
}
.faq-answer-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-answer-text {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.7;
}

/* Badges */
.faq-badge-answered {
  margin-left: auto;
  background: rgba(76,175,131,0.1);
  border: 1px solid rgba(76,175,131,0.25);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px;
  color: #4caf83;
  font-weight: 600;
  white-space: nowrap;
}
.faq-badge-pending {
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px;
  color: #f5c842;
  font-weight: 500;
  white-space: nowrap;
}
.faq-badge-ml { margin-left: auto; }

/* Etat vide */
.faq-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-mid);
  font-size: 14px;
  line-height: 1.7;
}
.faq-empty-icon {
  font-size: 38px;
  margin-bottom: 14px;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-wrapper { padding: 0 24px 60px; }
  .faq-form-row { grid-template-columns: 1fr; }
}

/* ── À PROPOS ── */
.about-wrapper { max-width: 860px; margin: 0 auto; padding: 80px 60px 100px; }

.about-hero { margin-bottom: 50px; }
.about-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(32px,5vw,52px); font-weight: 800; letter-spacing: -0.02em; color: var(--white); margin-bottom: 14px; line-height: 1.1; }
.about-hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--accent), var(--light-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-hero p { font-size: 16px; color: var(--silver); line-height: 1.7; }

.about-card {
  background: linear-gradient(135deg, rgba(30,58,95,0.5), rgba(15,28,46,0.8));
  border: 1px solid rgba(74,142,194,0.2);
  border-radius: 20px;
  padding: 60px;
}

.about-block { padding: 10px 0; }

.about-divider {
  height: 1px;
  background: rgba(74,142,194,0.12);
  margin: 40px 0;
}

.about-card-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(74,142,194,0.08);
  border: 1px solid rgba(74,142,194,0.2);
  border-radius: 6px;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.about-card p { font-size: 15px; color: var(--silver); line-height: 1.85; }
.about-card strong { color: var(--light-blue); }

.about-block-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.engagement-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.engagement-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--off-white);
}
.engagement-list li::before {
  content: '✓';
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(74,142,194,0.12);
  border: 1px solid rgba(74,142,194,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent);
}

.about-slogan { text-align: center; padding: 10px 0 0; }
.about-slogan p { font-family: 'Syne', sans-serif; font-size: clamp(16px,2vw,20px); font-weight: 700; color: var(--white); }
.about-slogan span { color: var(--accent); }

@media (max-width: 768px) {
  .about-wrapper { padding: 60px 20px 80px; }
  .about-card { padding: 32px 24px; }
}

/* ── TARIFS ── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.tarif-card {
  background: rgba(30,58,95,0.35);
  border: 1px solid rgba(74,142,194,0.18);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
}

.tarif-card:hover {
  background: rgba(30,58,95,0.55);
  border-color: rgba(74,142,194,0.35);
}

.tarif-service {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.tarif-detail {
  font-size: 12px;
  color: var(--grey-mid);
}

.tarif-price {
  margin-top: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

@media (max-width: 768px) {
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .tarifs-grid { grid-template-columns: 1fr; }
}

/* ── TARIFS TABLE ── */
.table-container { border-radius: 14px; border: 1px solid rgba(74,142,194,.2); width: 100%; }
table { width: 100%; border-collapse: collapse; table-layout: fixed; }
thead tr { background: rgba(30,58,95,.8); }
thead th { 
  padding: 10px 8px; 
  text-align: center; 
  font-family: "Syne", sans-serif; 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: .06em; 
  text-transform: uppercase; 
  color: var(--accent); 
  border-bottom: 1px solid rgba(74,142,194,.2); 
  white-space: normal !important; 
  word-break: break-word !important; 
  line-height: 1.4; 
  max-width: 60px;
}
thead th:first-child { text-align: left; width: 22%; }
tbody tr { border-bottom: 1px solid rgba(74,142,194,.08); transition: background .15s; }
tbody tr:hover { background: rgba(74,142,194,.06); }
tbody tr:last-child { border-bottom: none; }
tbody td { padding: 11px 8px; color: var(--silver); text-align: center; font-size: 12px; word-break: break-word; }
tbody td:first-child { text-align: left; color: var(--white); font-weight: 500; border-right: 1px solid rgba(74,142,194,.12); padding-left: 14px; }
tbody td:not(:first-child) { color: var(--accent); font-family: 'Syne', sans-serif; font-weight: 600; font-size: 12px; }