/* ============================================================
   Immigration Voyages — immigration-voyage.com
   Charte rouge & blanc, version épurée
   Polices : Sora (titres) + Inter (texte)
   Mobile-first, aucun framework
   ============================================================ */

:root {
  --red: #E8231A;         /* rouge logo — CTA et accents */
  --red-dark: #C21510;
  --red-deep: #8F0E0B;
  --navy: #B31410;        /* alias historiques conservés */
  --navy-dark: #171314;   /* quasi noir neutre — titres, blocs sombres */
  --navy-deep: #171314;
  --blue: #D31E14;        /* survols, focus */
  --teal: #128C4B;        /* vert succès (coches, WhatsApp) */
  --teal-light: #E9F8EF;
  --amber: #C79A2A;       /* or discret */
  --amber-light: #FBF3DC;
  --ink: #1F1B1A;
  --muted: #6B6462;
  --line: #ECE9E8;
  --bg: #FAFAF9;
  --blush: #FDF0EF;       /* rose très pâle — pastilles d'icônes */
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(23, 19, 20, .08);
  --shadow-sm: 0 4px 14px rgba(23, 19, 20, .06);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.68;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand-name, .btn, .step-num, .stat b {
  font-family: 'Sora', 'Inter', 'Segoe UI', sans-serif;
}
img { max-width: 100%; display: block; }
a { color: var(--red-dark); text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #C9C2C0;
  font-size: .8rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar a { color: #EDE8E7; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-item svg { width: 13px; height: 13px; stroke: var(--amber); flex: none; }
.topbar-item .wa-ico { fill: #35D07F; stroke: none; }
.topbar-right { display: flex; gap: 12px; align-items: center; }
.topbar-right .sep { opacity: .3; }
.topbar .hours { display: none; }
@media (min-width: 900px) { .topbar .hours { display: inline-flex; } }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand-name { font-weight: 700; color: var(--navy-dark); font-size: 1rem; line-height: 1.22; letter-spacing: -.2px; }
.brand-name small { display: block; font-weight: 600; color: var(--red); font-size: .6rem; text-transform: uppercase; letter-spacing: 1.8px; margin-top: 8px; }

.nav-links { display: none; align-items: center; gap: 20px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .92rem; position: relative; padding: 6px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  border-radius: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: none; align-items: center; gap: 12px; }
.lang-switch {
  font-weight: 600; font-size: .8rem; color: var(--navy-dark);
  border: 1px solid var(--line); border-radius: 8px; padding: 6px 11px;
}
.lang-switch:hover { border-color: var(--navy-dark); }
.burger {
  display: inline-flex; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 24px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 940px) {
  .nav-links, .nav-cta { display: flex; }
  .burger { display: none; }
}
@media (min-width: 940px) and (max-width: 1099px) {
  .nav-links { gap: 15px; }
  .nav-links a { font-size: .86rem; }
  .nav-cta .btn { padding: 9px 14px; font-size: .8rem; }
}

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 20px 22px; background: var(--white); border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 11px 10px; border-radius: 10px; color: var(--ink); font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--bg); color: var(--red); }
.mobile-menu .btn { margin-top: 10px; text-align: center; }
@media (min-width: 940px) { .mobile-menu { display: none !important; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: .93rem;
  border: none; cursor: pointer; transition: .22s; line-height: 1.2;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(232, 35, 26, .25); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy-dark); color: #fff; }
.btn-navy:hover { background: #000; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: transparent; color: var(--navy-dark); border: 1px solid #D8D3D2; }
.btn-outline:hover { border-color: var(--navy-dark); }
.btn-whatsapp { background: #1EBE57; color: #fff; }
.btn-whatsapp:hover { background: #17A34A; transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .84rem; }

/* ---------- Hero (clair, épuré) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(232, 35, 26, .07), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; gap: 44px; align-items: center;
  padding: 62px 0 78px;
}
@media (min-width: 940px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; padding: 84px 0 100px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  color: var(--muted); margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(18,140,75,.16); }
.hero h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); line-height: 1.13; font-weight: 700; letter-spacing: -1px; color: var(--navy-dark); }
.hero h1 .accent { color: var(--red); }
.hero-sub { margin: 22px 0 30px; color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ink); font-weight: 500; }
.hero-trust svg { width: 16px; height: 16px; stroke: var(--teal); flex: none; }
.links-cat svg { width: 22px; height: 22px; stroke: var(--red); fill: none; flex: none; }

/* Carte itinéraire — bloc rouge signature */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: linear-gradient(160deg, var(--red-dark) 0%, var(--red-deep) 100%);
  border-radius: 20px; padding: 28px;
  width: 100%; max-width: 400px; color: #fff;
  box-shadow: 0 24px 48px rgba(194, 21, 16, .25);
}
.hero-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hero-card h3 svg { width: 18px; height: 18px; stroke: #FFD9A0; }
.route { display: flex; flex-direction: column; }
.route-step { display: flex; gap: 14px; }
.route-marker { display: flex; flex-direction: column; align-items: center; }
.route-marker .pin {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  font-size: .72rem; font-weight: 700; color: #FFD9A0;
}
.route-marker .line { width: 2px; flex: 1; min-height: 20px; background: linear-gradient(180deg, rgba(255,217,160,.55), rgba(255,255,255,.12)); }
.route-step:last-child .line { display: none; }
.route-body { padding-bottom: 18px; }
.route-body strong { display: block; color: #fff; font-size: .9rem; font-weight: 600; }
.route-body span { font-size: .78rem; color: #F4C4C0; }

.hero-plane { display: none; }

/* ---------- Stats band ---------- */
.stats { background: transparent; position: relative; z-index: 3; }
.stats .container {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 30px 28px; margin-top: -44px; border: 1px solid var(--line);
}
@media (min-width: 800px) { .stats .container { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat b { font-size: 1.85rem; color: var(--navy-dark); font-weight: 700; display: block; line-height: 1.1; }
.stat b .plus { color: var(--red); }
.stat span { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 78px 0; }
.section.alt { background: var(--bg); }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-weight: 700; font-size: .74rem;
  text-transform: uppercase; letter-spacing: 2.4px; margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 20px; height: 1.5px; background: var(--red); border-radius: 2px; }
.section-head h2, .section-head-left h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 700; color: var(--navy-dark); letter-spacing: -.6px; line-height: 1.22; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: .96rem; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: .28s; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #F3D4D2; }
.service-icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush);
}
.service-icon svg { width: 25px; height: 25px; stroke: var(--red); }
.service-card h3 { font-size: 1.04rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 10px; letter-spacing: -.2px; }
.service-card p { font-size: .89rem; color: var(--muted); flex: 1; }
.service-link { margin-top: 16px; font-weight: 600; font-size: .85rem; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { width: 15px; height: 15px; transition: .25s; }
.service-card:hover .service-link svg { transform: translateX(4px); }
.price-tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: var(--blush); color: var(--red-dark); font-size: .78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px;
}
.step-num {
  width: 38px; height: 38px; border-radius: 50%; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  background: var(--blush); color: var(--red-dark); border: 1px solid #F3D4D2;
}
.step:last-child .step-num { background: var(--red); color: #fff; border-color: var(--red); }
.step h3 { font-size: .96rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 8px; }
.step p { font-size: .84rem; color: var(--muted); }

/* ---------- Why us ---------- */
.why { display: grid; gap: 44px; align-items: center; }
@media (min-width: 940px) { .why { grid-template-columns: 1fr 1fr; } }
.why-visual {
  border-radius: 20px; overflow: hidden; position: relative; min-height: 380px;
  background:
    radial-gradient(480px 280px at 82% 18%, rgba(255, 217, 160, .18), transparent 60%),
    linear-gradient(160deg, var(--red-dark) 0%, var(--red-deep) 70%, #5C0705 100%);
  display: flex; align-items: center; justify-content: center;
}
.why-visual img.logo-big { width: 44%; filter: brightness(0) invert(1) drop-shadow(0 18px 36px rgba(0,0,0,.3)); opacity: .95; }
.why-visual .badge-float {
  position: absolute; background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 600; color: var(--navy-dark);
}
.why-visual .badge-float svg { width: 20px; height: 20px; stroke: var(--teal); flex: none; }
.badge-float.b1 { top: 22px; left: 18px; }
.badge-float.b2 { bottom: 22px; right: 18px; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item { display: flex; gap: 16px; }
.why-item .ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
}
.why-item .ico svg { width: 22px; height: 22px; stroke: var(--red); }
.why-item h3 { font-size: .98rem; font-weight: 600; color: var(--navy-dark); }
.why-item p { font-size: .88rem; color: var(--muted); margin-top: 4px; }
.section-head-left .eyebrow::before { display: none; }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .testi-track { grid-template-columns: repeat(3, 1fr); } }
.testi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.testi .quote-mark { font-size: 2.4rem; line-height: 1; color: var(--red); font-family: Georgia, serif; opacity: .5; }
.testi p { font-size: .91rem; color: var(--ink); flex: 1; margin: 8px 0 18px; }
.testi-footer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  /* fond unique très contrasté + couleur forcée : .testi-footer span écrasait le blanc */
  background: var(--red-dark) !important;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.testi-footer strong { display: block; font-size: .89rem; color: var(--navy-dark); }
.testi-footer span { font-size: .75rem; color: var(--muted); font-weight: 500; }
.testi .result {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: var(--teal-light); color: #0A5C33; font-size: .72rem; font-weight: 700;
  padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 10px; border: 1px solid #BFE5CE;
}
.testi .result svg { width: 13px; height: 13px; stroke: #0A5C33; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(640px 280px at 12% 130%, rgba(255, 217, 160, .18), transparent 60%),
    linear-gradient(140deg, var(--red-dark), var(--red-deep));
  border-radius: 20px; color: #fff; padding: 56px 32px; text-align: center;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 1.95rem); font-weight: 700; margin-bottom: 12px; letter-spacing: -.5px; }
.cta-band p { color: #F4C4C0; max-width: 540px; margin: 0 auto 28px; font-size: .95rem; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-red { background: #fff; color: var(--red-dark); box-shadow: none; }
.cta-band .btn-red:hover { background: #FDF0EF; }

/* ---------- Community strip ---------- */
.community {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
  background: var(--teal-light); border: 1px solid #CDEBDA; border-radius: var(--radius);
  padding: 26px 30px;
}
.community h3 { color: #0C6B39; font-size: 1.06rem; font-weight: 700; display: flex; gap: 10px; align-items: center; }
.community p { color: #34655A; font-size: .89rem; margin-top: 4px; }

/* ---------- Page hero (pages intérieures) ---------- */
.page-hero {
  background: linear-gradient(180deg, #FFFFFF, var(--bg));
  border-bottom: 1px solid var(--line);
  color: var(--navy-dark); padding: 52px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 700; letter-spacing: -.8px; }
.page-hero .crumbs { margin-top: 10px; font-size: .84rem; color: var(--muted); font-weight: 500; }
.page-hero .crumbs a { color: var(--red-dark); }
.page-hero .crumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Service detail ---------- */
.service-detail { display: grid; gap: 34px; align-items: start; padding: 46px 0; border-bottom: 1px solid var(--line); }
.service-detail:last-child { border-bottom: none; }
@media (min-width: 900px) { .service-detail { grid-template-columns: 1fr 1.4fr; } }
.service-detail .head h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy-dark); margin: 14px 0 10px; letter-spacing: -.4px; }
.service-detail .head p.lead { color: var(--muted); font-size: .94rem; }
.service-detail .big-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
}
.service-detail .big-icon svg { width: 29px; height: 29px; stroke: var(--red); }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 11px; font-size: .92rem; color: var(--ink); }
.check-list svg { width: 19px; height: 19px; stroke: var(--teal); flex: none; margin-top: 3px; }
.pill-note {
  margin-top: 20px; background: var(--amber-light); border-left: 3px solid var(--amber);
  border-radius: 0 10px 10px 0; padding: 13px 16px; font-size: .86rem; color: #7A5A10;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 34px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.info-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.info-card + .info-card { margin-top: 14px; }
.info-card .ico {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
}
.info-card .ico svg { width: 21px; height: 21px; stroke: var(--red); }
.info-card h3 { font-size: .94rem; color: var(--navy-dark); font-weight: 700; }
.info-card p, .info-card a { font-size: .89rem; color: var(--muted); }
.info-card a:hover { color: var(--red); }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.28rem; color: var(--navy-dark); font-weight: 700; margin-bottom: 6px; letter-spacing: -.3px; }
.form-card > p { color: var(--muted); font-size: .89rem; margin-bottom: 24px; }
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label { display: block; font-size: .81rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #DDD8D7; border-radius: 10px;
  font: inherit; font-size: .92rem; color: var(--ink); background: var(--white); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(232,35,26,.08);
}
.map-frame { border: 0; width: 100%; height: 330px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.eval-banner {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
  background: var(--blush); border: 1px solid #F3D4D2; border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 28px;
}
.eval-banner h3 { color: var(--red-dark); font-size: 1rem; font-weight: 700; }
.eval-banner p { color: #8A4A45; font-size: .86rem; margin-top: 3px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: .28s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-cover {
  height: 150px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--red-dark), var(--red-deep));
}
.post-cover svg { width: 42px; height: 42px; stroke: rgba(255,255,255,.85); }
.post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: .74rem; color: var(--muted); font-weight: 500; margin-bottom: 10px; }
.post-meta .cat { background: var(--blush); color: var(--red-dark); font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.post-body h3 { font-size: 1.02rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 8px; letter-spacing: -.2px; }
.post-body p { font-size: .87rem; color: var(--muted); flex: 1; }
.post-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.post-foot .service-link { margin-top: 0; }
.post-reactions { display: flex; gap: 14px; font-size: .78rem; color: var(--muted); font-weight: 500; }
.post-reactions svg { width: 15px; height: 15px; stroke: var(--muted); vertical-align: -2px; }

/* ---------- Footer ---------- */
footer { background: var(--navy-dark); color: #B5AEAC; margin-top: 78px; }
.footer-grid {
  display: grid; gap: 36px; padding: 60px 0 40px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand img { width: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .87rem; max-width: 300px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); transition: .25s;
}
.socials a:hover { background: var(--red); }
.socials svg { width: 17px; height: 17px; stroke: #fff; }
footer h4 { color: #fff; font-size: .92rem; font-weight: 600; margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #B5AEAC; font-size: .87rem; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .87rem; }
.footer-contact svg { width: 16px; height: 16px; stroke: var(--amber); flex: none; margin-top: 4px; }
.footer-contact a { color: #EDE8E7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .77rem;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1EBE57; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(30,190,87,.4); transition: .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Partage blog ---------- */
.share-bar { display: flex; gap: 8px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
.share-bar .share-label { font-size: .74rem; color: var(--muted); font-weight: 600; margin-right: 2px; }
.share-btn {
  width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center; transition: .2s; padding: 0;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.share-btn svg { width: 16px; height: 16px; }
.share-btn.wa svg { fill: #1EBE57; }
.share-btn.fb svg { stroke: #1877F2; fill: none; }
.share-btn.tg svg { stroke: #29A9EB; fill: none; }
.share-btn.img svg { stroke: var(--red); fill: none; }
.share-btn.dl svg { stroke: var(--navy-dark); fill: none; }
.copy-protect, .copy-protect * {
  -webkit-user-select: none; -moz-user-select: none; user-select: none;
}

/* ---------- Liens utiles ---------- */
.link-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: .25s;
}
.link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.link-card .ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
}
.link-card .ico svg { width: 20px; height: 20px; stroke: var(--red); }
.link-card h3 { font-size: .95rem; color: var(--navy-dark); font-weight: 700; }
.link-card p { font-size: .84rem; color: var(--muted); margin: 4px 0 10px; }
.link-card .service-link { margin-top: 0; word-break: break-all; }
.links-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .links-grid { grid-template-columns: repeat(2, 1fr); } }
.links-cat {
  font-size: 1.15rem; font-weight: 700; color: var(--navy-dark);
  margin: 44px 0 18px; padding-bottom: 10px; border-bottom: 2px solid var(--blush);
  display: flex; align-items: center; gap: 10px;
}
.links-cat:first-of-type { margin-top: 0; }

/* ---------- Surbrillances au survol ---------- */
.testi, .step, .info-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.testi:hover, .step:hover, .info-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: #F3D4D2;
}
.footer-links a { display: inline-block; transition: transform .2s ease, color .2s ease; }
.footer-links a:hover { transform: translateX(4px); }
.stat { transition: transform .25s ease; border-radius: 10px; padding: 6px; }
.stat:hover { transform: translateY(-3px); }
.stat:hover b { color: var(--red); }
.check-list li { border-radius: 8px; transition: background .2s ease; padding: 4px 8px; margin: -4px -8px; }
.check-list li:hover { background: var(--blush); }
.topbar a, .footer-contact a { transition: color .2s ease; }
.brand { transition: transform .2s ease; }
.brand:hover { transform: scale(1.02); }
.eval-banner, .community { transition: box-shadow .25s ease; }
.eval-banner:hover, .community:hover { box-shadow: var(--shadow); }

/* ---------- Confort de lecture & accessibilité ---------- */
:focus-visible {
  outline: 3px solid rgba(232, 35, 26, .45);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: rgba(232, 35, 26, .16); }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .section { padding: 58px 0; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-band .actions .btn { width: 100%; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-30 { margin-top: 30px; }
