/* ================================================================
   HOOJ Digital — style.css
   ================================================================ */

/* ── Plus Jakarta Sans — auto-hébergé ── */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

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

:root {
  --accent:       #7c3aed;
  --accent-lt:    #8b5cf6;
  --accent-glow:  rgba(124,58,237,.11);
  --dark:         #0f0c29;
  --dark2:        #302b63;
  --white:        #ffffff;
  --light:        #f5f3ff;
  --border:       #ede9fe;
  --text:         #0f172a;
  --muted:        #64748b;
  --shadow:       0 2px 16px rgba(0,0,0,.06);
  --shadow-md:    0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 16px 56px rgba(0,0,0,.12);
  --radius:       14px;
  --font:         'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: #fff; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── Scroll-Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible          { opacity: 1; transform: none; }
.reveal-delay-1          { transition-delay: .1s; }
.reveal-delay-2          { transition-delay: .2s; }
.reveal-delay-3          { transition-delay: .3s; }
.reveal-delay-4          { transition-delay: .4s; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 68px;
  background: rgba(15,12,41,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s;
}
.nav-logo {
  font-size: 19px; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -.025em; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--accent-lt); }
.nav-logo-icon { display: block; flex-shrink: 0; color: var(--accent-lt); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--accent-lt);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-data-link {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.45); text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 15px; border-radius: 6px;
  transition: all .2s;
}
.nav-data-link:hover { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }

.nav-cta {
  background: var(--accent); color: #fff;
  padding: 9px 22px; border-radius: 7px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
}

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: rgba(255,255,255,.8); font-size: 20px;
  transition: color .2s;
}
.nav-burger:hover { color: #fff; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 199;
  background: #0f0c29;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-direction: column; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .25s, transform .25s;
}
.mobile-menu.open {
  display: flex; opacity: 1; pointer-events: all; transform: none;
}
.mobile-menu a {
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: 16px; font-weight: 500;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.03); }
.mobile-menu a.mobile-cta {
  margin: 12px 28px 8px; background: var(--accent); color: #fff;
  text-align: center; border-radius: 9px; border: none;
  padding: 14px 28px;
}

/* ── Hero ── */
#hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1445 35%, #302b63 65%, #1e1b4b 100%);
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  padding: 100px 64px; text-align: center;
}

.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(124,58,237,.16) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: orb-drift 9s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(139,92,246,.13) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation: orb-drift 11s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(6,182,212,.09) 0%, transparent 70%);
  top: 40%; right: 18%;
  animation: orb-drift 14s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28px, -18px) scale(1.07); }
}

#hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1; max-width: 820px;
  animation: heroFadeIn .9s ease .05s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Spinner form */
.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .8s linear infinite; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,.16); border: 1px solid rgba(124,58,237,.32);
  color: #c4b5fd; font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #a78bfa;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(167,139,250,.5); }
  50%      { opacity: .6; box-shadow: 0 0 0 5px transparent; }
}

.hero-inner h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800; line-height: 1.06; letter-spacing: -.035em;
  color: #fff; margin-bottom: 24px;
}
.hero-inner h1 em { font-style: normal; color: #a78bfa; }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.58); line-height: 1.7;
  max-width: 560px; margin: 0 auto 44px;
}

.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 52px;
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 15px 34px; border-radius: 9px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all .25s;
}
.btn-primary:hover {
  background: var(--accent-lt); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(124,58,237,.45);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.22); color: rgba(255,255,255,.8);
  padding: 15px 34px; border-radius: 9px; background: transparent;
  font-size: 15px; font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all .25s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.55); color: #fff;
  background: rgba(255,255,255,.05); transform: translateY(-2px);
}

.hero-pills {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.hero-pill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48); font-size: 12px; font-weight: 500;
  padding: 6px 16px; border-radius: 100px;
}

/* ── Shared section utilities ── */
.section-wrap  { max-width: 1200px; margin: 0 auto; }
.sec-pad       { padding: 112px 64px; background: var(--white); }
.sec-pad-alt   { padding: 112px 64px; background: var(--light); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 22px; height: 2px;
  background: var(--accent); border-radius: 2px; opacity: .55;
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; letter-spacing: -.025em;
  color: var(--text); line-height: 1.14; margin-bottom: 16px;
}
.sec-title em { font-style: normal; color: var(--accent); }
.sec-sub  { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 540px; }
.sec-head { margin-bottom: 64px; }

/* ── Réassurance ── */
#reassurance {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.reassurance-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.rea-item {
  display: flex; align-items: center; gap: 16px;
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.rea-item:last-child { border-right: none; }
.rea-item:hover { background: #fafbff; }
.rea-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--accent-glow); border: 1px solid rgba(124,58,237,.16);
  display: flex; align-items: center; justify-content: center;
}
.rea-icon i  { font-size: 18px; color: var(--accent); }
.rea-label   { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.rea-sub     { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── Pricing / Services ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px;
}
.p-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px;
  position: relative; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.p-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,.28);
}
.p-card.featured {
  background: linear-gradient(160deg, #faf8ff 0%, #f3e8ff 100%);
  border-color: var(--accent);
  box-shadow: 0 6px 32px rgba(124,58,237,.13);
}
.p-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #06b6d4);
  border-radius: var(--radius) var(--radius) 0 0;
}
.p-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.p-tier {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.p-name  { font-size: 21px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.p-pages {
  font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.p-pages i { font-size: 11px; }
.p-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.p-feats {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 28px; flex: 1;
}
.p-feats li {
  font-size: 14px; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.p-feats li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  flex-shrink: 0; margin-top: 1px;
  background: var(--accent-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/11px;
  border: 1px solid rgba(124,58,237,.2);
}
.p-btn {
  display: block; text-align: center; margin-top: auto;
  border: 1.5px solid var(--accent); color: var(--accent);
  border-radius: 8px; padding: 12px 24px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all .2s;
}
.p-btn:hover { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(124,58,237,.3); }
.p-card.featured .p-btn                   { background: var(--accent); color: #fff; }
.p-card.featured .p-btn:hover             { background: var(--accent-lt); }

.config-intro {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: .01em;
}

/* ── Configurateur de tarifs ── */
.configurateur {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}

.config-step { margin-bottom: 40px; }
.config-step:last-of-type { margin-bottom: 0; }

.config-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}

.pages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.pages-btn {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: border-color .2s, background .2s, box-shadow .2s;
  user-select: none;
}
.pages-btn:hover { border-color: var(--accent-lt); }
.pages-btn.active {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 0 4px rgba(124,58,237,.07);
}

.pages-btn-label {
  font-size: .88rem; font-weight: 700;
  color: var(--text); display: block; margin-bottom: 4px;
}
.pages-btn-sub {
  font-size: .72rem; color: var(--muted);
  display: block; line-height: 1.4;
}
.pages-btn.active .pages-btn-label { color: var(--accent); }

.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle-btn {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  background: var(--white);
  transition: border-color .2s, background .2s, box-shadow .2s;
  user-select: none;
}
.toggle-btn:hover { border-color: var(--accent-lt); }
.toggle-btn.active {
  border-color: var(--accent);
  background: var(--accent-glow);
  box-shadow: 0 0 0 4px rgba(124,58,237,.07);
}

.toggle-btn-title {
  font-size: .9rem; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.toggle-btn-desc {
  font-size: .78rem; color: var(--muted); line-height: 1.4;
}
.toggle-btn.active .toggle-btn-title { color: var(--accent); }

.config-result {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.result-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}

.result-price {
  font-size: 2.6rem; font-weight: 900;
  color: var(--text); line-height: 1;
  transition: opacity .2s;
}
.result-price span {
  font-size: 1rem; font-weight: 500;
  color: var(--muted); margin-left: 4px;
}
.result-price.devis { font-size: 1.6rem; color: var(--muted); }

.result-maint {
  margin-top: 8px; font-size: .82rem; color: var(--muted);
}
.result-maint strong { color: var(--accent); }

.result-note {
  font-size: .74rem; color: var(--muted);
  margin-top: 5px; font-style: italic;
}

.result-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 10px;
  padding: 15px 28px;
  font-size: .95rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap; font-family: var(--font);
}
.result-cta:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
}

.config-note {
  margin-top: 24px;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.config-note strong { color: var(--text); }

/* ── Offer cards (2-col) ── */
.offer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 28px;
}
.offer-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.offer-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,.28);
}
.offer-card.featured {
  background: linear-gradient(160deg, #faf8ff 0%, #f3e8ff 100%);
  border-color: var(--accent);
  box-shadow: 0 6px 32px rgba(124,58,237,.13);
}
.offer-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #06b6d4);
  border-radius: var(--radius) var(--radius) 0 0;
}
.offer-name {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.offer-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.offer-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.offer-feats {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex: 1;
}
.offer-feats li {
  font-size: 14px; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.offer-feats li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%;
  flex-shrink: 0; margin-top: 1px;
  background: var(--accent-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c3aed' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/11px;
  border: 1px solid rgba(124,58,237,.2);
}
.offer-btn {
  display: block; text-align: center; margin-top: auto;
  border: 1.5px solid var(--accent); color: var(--accent);
  border-radius: 8px; padding: 12px 24px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: all .2s;
}
.offer-btn:hover { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(124,58,237,.3); }
.offer-card.featured .offer-btn              { background: var(--accent); color: #fff; }
.offer-card.featured .offer-btn:hover        { background: var(--accent-lt); }

/* E-commerce strip */
.ecom-strip {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  border: 1.5px solid var(--accent); border-radius: var(--radius);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.ecom-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #06b6d4);
}
.ecom-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.ecom-icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.ecom-icon i  { font-size: 22px; color: #fff; }
.ecom-name    { font-size: 19px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.ecom-desc    { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 520px; }
.ecom-tags    { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; list-style: none; }
.ecom-tags li {
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2);
  padding: 4px 12px; border-radius: 100px;
}
.ecom-cta {
  background: var(--accent); color: #fff;
  padding: 14px 30px; border-radius: 9px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 9px; transition: all .2s;
}
.ecom-cta:hover {
  background: var(--accent-lt); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
}

.maint-notice {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 18px 22px; margin-top: 28px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  display: flex; align-items: flex-start; gap: 12px;
}
.maint-notice i { color: var(--accent); font-size: 16px; margin-top: 1px; flex-shrink: 0; }

/* ── Maintenance ── */
.maint-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.maint-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.maint-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(124,58,237,.25);
}
.maint-top {
  display: flex; align-items: center; gap: 18px; margin-bottom: 20px;
}
.maint-ico {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent-glow); border: 1px solid rgba(124,58,237,.18);
  display: flex; align-items: center; justify-content: center;
}
.maint-ico i      { font-size: 22px; color: var(--accent); }
.maint-name       { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.maint-price      { font-size: 22px; font-weight: 800; color: var(--accent); }
.maint-price small { font-size: 13px; font-weight: 500; color: var(--muted); }
.maint-desc       { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.maint-feats      { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.maint-feats li   { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 9px; }
.maint-feats li i { font-size: 12px; color: var(--accent); flex-shrink: 0; }

/* ── Pack Maintenance ── */
.maint-pack {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.maint-pack-left { flex-shrink: 0; }

.maint-pack-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.maint-pack-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.maint-pack-name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.maint-pack-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.maint-pack-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.maint-pack-feats li svg { color: var(--accent); flex-shrink: 0; }

.maint-pack-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.maint-pack-cta:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
}

.maint-pack-note {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .maint-pack {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ── Réalisations ── */
.projet-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.projet-visual {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.projet-visual:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(0,0,0,.2);
}

.projet-browser { background: #0f172a; border-radius: 16px; overflow: hidden; }
.projet-browser-bar {
  background: #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  font-family: monospace;
  letter-spacing: .02em;
}

.projet-browser-screen { background: #eef2f7; padding: 20px; }
.projet-screen-hero {
  background: #0f3460;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 14px;
  color: #fff;
}
.projet-screen-badge {
  font-size: 10px;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.projet-screen-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
}
.projet-screen-cta {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
}

.projet-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.projet-tags span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(124,58,237,.1);
  color: var(--accent);
}
.projet-name {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.025em;
  margin-bottom: 4px;
}
.projet-sector {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.projet-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.projet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap .2s ease;
}
.projet-link:hover { gap: 13px; }

@media (max-width: 900px) {
  .projet-card { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Processus ── */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 35px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.step-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent); margin-bottom: 20px;
  transition: all .25s; box-shadow: var(--shadow);
}
.process-step:hover .step-num {
  background: var(--accent-glow); border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(124,58,237,.2);
}
.step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Page hero (pages intérieures) ── */
.page-hero {
  background: var(--dark);
  padding: 100px 64px 80px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800; color: #fff;
  letter-spacing: -.025em; line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: normal; color: var(--accent-lt); }
.page-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,.6);
  max-width: 580px; margin: 0 auto;
  line-height: 1.75;
}

/* ── À propos ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center;
}
.about-label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.about-title {
  font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -.02em;
  line-height: 1.2; color: var(--text); margin-bottom: 20px;
}
.about-title em { font-style: normal; color: var(--accent); }
.about-body { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.about-perks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-perks li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text); }
.about-perks li i { width: 20px; font-size: 14px; color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .25s, box-shadow .25s;
}
.about-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-card-icon  { font-size: 26px; color: var(--accent); margin-bottom: 12px; }
.about-card-num   { font-size: 32px; font-weight: 800; color: var(--text); letter-spacing: -.02em; margin-bottom: 4px; }
.about-card-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.75fr; gap: 72px; align-items: start;
}
.contact-tagline { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }
.contact-info    { display: flex; flex-direction: column; gap: 14px; }
.c-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color .2s;
}
.c-card:hover { border-color: rgba(124,58,237,.25); }
.c-card-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--accent-glow); border: 1px solid rgba(124,58,237,.16);
  display: flex; align-items: center; justify-content: center;
}
.c-card-icon i   { color: var(--accent); font-size: 16px; }
.c-card-label    { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; display: block; margin-bottom: 2px; }
.c-card-value    { font-size: 14px; color: var(--text); font-weight: 600; }

.form-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 48px; box-shadow: var(--shadow-md);
}
.form-box-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-box-sub   { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; font-family: var(--font);
  color: var(--text); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,58,237,.09);
}
.form-group textarea  { min-height: 130px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c0ccd8; }
.form-submit {
  width: 100%; background: var(--accent); color: #fff;
  border: none; padding: 15px 28px; border-radius: 9px;
  font-size: 15px; font-weight: 700; font-family: var(--font);
  cursor: pointer; margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .2s;
}
.form-submit:hover {
  background: var(--accent-lt); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124,58,237,.35);
}
.form-submit:disabled {
  opacity: .7; cursor: not-allowed; transform: none;
}
#form-feedback {
  margin-top: 14px; padding: 13px 16px; border-radius: 9px;
  font-size: 14px; font-weight: 500; display: none;
  align-items: center; gap: 9px;
}
#form-feedback:not(:empty) { display: flex; }
.form-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.form-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Footer ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 64px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo       { font-size: 18px; font-weight: 800; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.footer-logo span  { color: var(--accent-lt); }
.footer-logo .nav-logo-icon { color: var(--accent-lt); }
.footer-nav        { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a      { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-legal      { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-links      { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a    { font-size: 12px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.65); }
.footer-copy       { font-size: 11px; color: rgba(255,255,255,.22); }
@media (max-width: 768px) {
  .footer-inner  { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-legal  { align-items: flex-start; }
  .footer-links  { justify-content: flex-start; }
}

/* ── Legal pages ── */
.legal-page {
  background: var(--light);
  min-height: calc(100vh - 68px);
  padding: 64px 24px 96px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 56px 64px;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  text-decoration: none; margin-bottom: 36px;
  transition: gap .2s;
}
.legal-back:hover { gap: 12px; }
.legal-inner h1 {
  font-size: clamp(26px, 4vw, 34px); font-weight: 800;
  color: var(--text); margin-bottom: 6px; letter-spacing: -.03em;
}
.legal-update {
  font-size: 13px; color: var(--muted); margin-bottom: 40px;
}
.legal-inner section { margin-bottom: 40px; }
.legal-inner h2 {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-inner h3 {
  font-size: 14px; font-weight: 600; color: var(--text);
  margin: 16px 0 8px;
}
.legal-inner p {
  font-size: 14.5px; color: #334155; line-height: 1.75;
  margin-bottom: 12px;
}
.legal-inner ul {
  padding-left: 20px; margin-bottom: 12px;
}
.legal-inner ul li {
  font-size: 14.5px; color: #334155; line-height: 1.75; margin-bottom: 4px;
}
.legal-inner a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-inner a:hover { color: var(--accent-lt); }

@media (max-width: 768px) {
  .legal-inner { padding: 32px 24px; }
}

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 660px;
  background: #1e1b4b;
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  z-index: 9999;
  flex-wrap: wrap;
  animation: slideUp .35s ease;
}
#cookie-banner.hidden { display: none; }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-text {
  font-size: 13.5px; color: rgba(255,255,255,.8); line-height: 1.55; flex: 1;
}
.cookie-text a { color: var(--accent-lt); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 8px; border: none;
  cursor: pointer; transition: all .2s;
}
.cookie-btn-accept {
  background: var(--accent); color: #fff;
}
.cookie-btn-accept:hover { background: var(--accent-lt); }
.cookie-btn-refuse {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
}
.cookie-btn-refuse:hover { background: rgba(255,255,255,.14); color: #fff; }

@media (max-width: 480px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1100px) {
  nav, footer { padding-left: 40px; padding-right: 40px; }
  .sec-pad, .sec-pad-alt { padding: 88px 40px; }
  #hero { padding: 80px 40px; }
  .reassurance-inner { padding: 0 40px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-data-link, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .sec-pad, .sec-pad-alt { padding: 72px 24px; }
  #hero { padding: 64px 24px; min-height: calc(100svh - 68px); }

  .reassurance-inner { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .rea-item:nth-child(2n) { border-right: none; }
  .rea-item:nth-child(3),
  .rea-item:nth-child(4) { border-top: 1px solid var(--border); }

  .pricing-grid { grid-template-columns: 1fr; }
  .p-card.featured { order: -1; }

  .ecom-strip { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .ecom-cta { width: 100%; justify-content: center; }

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

  .process-steps { grid-template-columns: 1fr 1fr; }

  .about-cards { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 32px 24px; }
  .configurateur { padding: 32px 24px; }
  .pages-grid { grid-template-columns: repeat(2, 1fr); }
  .toggle-row { grid-template-columns: 1fr; }
  .config-result { flex-direction: column; align-items: flex-start; gap: 20px; }
  .result-cta { width: 100%; justify-content: center; }

  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: var(--accent-lt);
}
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .hero-inner h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }

  .reassurance-inner { grid-template-columns: 1fr; }
  .rea-item { border-right: none; border-bottom: 1px solid var(--border); }
  .rea-item:last-child { border-bottom: none; }

  .process-steps { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .sec-head { margin-bottom: 48px; }
}

/* ================================================================
   BLOG
   ================================================================ */

/* ── Blog Hero ── */
.blog-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 24px 64px;
  text-align: center;
  color: #fff;
}
.blog-hero-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.blog-hero-title em { color: var(--accent-lt); font-style: normal; }
.blog-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Blog Card ── */
.blog-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.blog-card:hover {
  border-color: var(--accent-lt);
  box-shadow: var(--shadow-md);
}
.blog-card-soon {
  opacity: .5;
  pointer-events: none;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-tag {
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(124,58,237,.2);
}
.blog-date, .blog-read {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.blog-card-title a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
  margin-top: 4px;
}
.blog-card-link:hover { gap: 10px; }

/* ================================================================
   ARTICLE
   ================================================================ */

/* ── Article Header ── */
.article-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 60px 24px 56px;
  color: #fff;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 10px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.article-meta .blog-date,
.article-meta .blog-read { color: rgba(255,255,255,.6); }
.article-title {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 760px;
}
.article-intro {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 760px;
}

/* ── Article Body ── */
.article-body { padding: 64px 24px 80px; }
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 16px;
  letter-spacing: -.02em;
}
.article-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 10px;
}
.article-content p {
  font-size: 16px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 16px;
}
.article-content strong { color: var(--text); }
.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.article-callout {
  background: var(--accent-glow);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0;
}
.article-callout i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.article-callout p { margin: 0; font-size: 15px; color: var(--text); }
.article-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
}
.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}
.article-checklist i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ── Article CTA ── */
.article-cta-box {
  max-width: 720px;
  margin: 56px auto 32px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: #fff;
}
.article-cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.article-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.article-back {
  max-width: 720px;
  margin: 0 auto;
}
.article-back a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.article-back a:hover { color: var(--accent); }

/* ── Compare Grid (article agence vs freelance) ── */
.article-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 24px;
}
.compare-col {
  border-radius: var(--radius);
  padding: 20px;
}
.compare-plus { background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.2); }
.compare-minus { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.15); }
.compare-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.compare-plus .compare-title { color: #16a34a; }
.compare-minus .compare-title { color: #dc2626; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.compare-col ul li { font-size: 14px; color: #334155; line-height: 1.5; padding-left: 10px; position: relative; }
.compare-col ul li::before { content: '—'; position: absolute; left: 0; color: var(--muted); }

/* ── Ordered list ── */
.article-ordered-list {
  list-style: none;
  counter-reset: ol-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 24px;
}
.article-ordered-list li {
  counter-increment: ol-counter;
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
  padding-left: 36px;
  position: relative;
}
.article-ordered-list li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Erreur blocks (article 5 erreurs) ── */
.erreur-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.erreur-block:last-of-type { border-bottom: none; }
.erreur-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-glow);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.erreur-body { flex: 1; }
.erreur-body h2 {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

/* ── Responsive Blog/Article ── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-cta-box { padding: 28px 20px; }
}
