/* ══════════════════════════════════════
   E.L.E.V.A. Conciergerie — Style
   ══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: #242a33; background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
html { overflow-x: hidden; }
::selection { background: var(--green); color: #fff; }
::-moz-selection { background: var(--green); color: #fff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Colors ── */
:root {
  --green: #1D9A5C;
  --green-hover: #178a4e;
  --fg: #242a33;
  --muted: #6b7280;
  --border: #e5e5ea;
  --bg-secondary: #f6f7fc;
  --input-bg: #f7f8fc;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; color: var(--fg); line-height: 1.2; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 1rem; }
.text-xs { font-size: 0.875rem; }
.text-green { color: var(--green); }
.font-semibold { font-weight: 600; }
.leading-relaxed { line-height: 1.65; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Layout utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 52rem; }
.max-w-4xl { max-width: 64rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-10 { margin-top: 2.5rem; }
.btn-center { align-self: center; }
.gap-2rem { gap: 2rem; }
.overflow-hidden { overflow: hidden; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* ── Buttons ── */
.btn-green {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s;
  height: 58px;
  padding: 0 3rem 3px;
  line-height: 1;
}
.btn-green svg { flex-shrink: 0; position: relative; top: 1px; transition: transform 0.2s; }
.btn-green:hover svg { transform: translateX(4px); }
.btn-green:hover { background: var(--green-hover); }

.btn-green-sm {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 44px;
  padding: 0 1.5rem;
  transition: background 0.2s;
}
.btn-green-sm:hover { background: var(--green-hover); }

.btn-green-cta { font-size: 1.125rem; height: 56px; padding: 0 2.5rem; }

.btn-outline {
  background: transparent;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 44px;
  padding: 0 1.5rem;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--bg-secondary); }

/* ── Inputs ── */
.input-field {
  width: 100%;
  height: 56px;
  padding: 0 1.25rem;
  font-size: 1rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s;
}
.input-field::placeholder { color: rgba(36,42,51,0.6); }
.input-field:focus { border-color: var(--green); }

/* ── Card ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.card-green { background: #e6f5ed; border-color: rgba(29,154,92,0.2); box-shadow: 0 1px 2px rgba(29,154,92,0.05); }

/* ── Section helpers ── */
.section { padding: 6rem 0; }
.section-centered { min-height: 60vh; display: flex; align-items: center; }
.body-padded { padding-top: 64px; }
.body-padded .section-unified > .container {
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255,255,255,0.7) 0%, transparent 100%);
}

/* ── Section headings ── */
.section-heading { font-size: clamp(1.5rem, 3vw, 1.875rem); }
.section-heading-sm { font-size: clamp(1.5rem, 3vw, 1.875rem); }
.page-title { font-size: clamp(1.75rem, 4vw, 2.25rem); }

/* ── Unified background ── */
.section-unified {
  background: #fafbfe;
}
.section-unified:nth-of-type(odd) {
  background:
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(29,154,92,0.04) 0%, transparent 70%),
    #fafbfe;
}
.section-unified:nth-of-type(even) {
  background:
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(29,154,92,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255,255,255,0.6) 0%, transparent 60%),
    #fafbfe;
}
.section-fade-white {
  position: relative;
}
.section-fade-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  z-index: 0;
}

/* ── Header ── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.2s; }
.header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-nav { display: flex; align-items: center; gap: 1.5rem; }
.header-nav a { font-size: 0.875rem; transition: color 0.2s; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.logo-dot { font-size: 0.7em; margin: 0 2px; opacity: 0.7; vertical-align: 15%; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero { position: relative; min-height: 100svh; display: flex; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(170deg, hsla(220,15%,6%,0.88), hsla(220,10%,12%,0.75)); }
.hero-content { position: relative; z-index: 10; padding: 6rem 40px 2rem; display: flex; flex-direction: column; min-height: 100svh; }
.hero-title { font-size: clamp(2.25rem, 5.5vw, 3rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1rem; color: #E0E0E0; margin-bottom: 2rem; max-width: 28rem; line-height: 1.65; }
.hero-proof { display: flex; gap: 2rem; margin-top: 0.5rem; }
.hero-proof-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-proof-item strong { font-size: 2rem; font-weight: 800; color: #fff; }
.hero-proof-item span { font-size: 0.9375rem; color: #E0E0E0; }
.hero-phone-link { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: #E0E0E0; font-size: 1rem; margin-top: 1rem; padding: 0.5rem; }
.hero-partners { margin-top: 40px; text-align: center; padding-bottom: 5rem; position: relative; z-index: 20; }
.hero-partners-label { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 1rem; }
.hero-partners-logos { display: flex; align-items: center; justify-content: center; gap: 3.5rem; }
.partner-logo { height: 2.75rem; filter: brightness(0) invert(1); opacity: 0.45; }
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; z-index: 10; }

/* ── Form glow (hero) ── */
.form-glow {
  background: radial-gradient(ellipse 80% 70% at 95% 5%, #fff 0%, #f6f7fc 90%);
  border-radius: 24px;
  padding: 2.5rem 4rem 1.25rem;
  box-shadow: 0 0 40px rgba(29,154,92,0.5), 0 0 80px rgba(29,154,92,0.4), 0 0 140px rgba(29,154,92,0.3), 0 0 220px rgba(29,154,92,0.15), 0 20px 40px rgba(0,0,0,0.2);
}
.form-header { text-align: center; margin-bottom: 3rem; }
.form-title { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; line-height: 1.15; background: linear-gradient(to top right, var(--fg) 40%, #1a3d2a 80%, #164a36); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.form-subtitle { font-size: 1rem; color: var(--muted); margin-top: 0.375rem; }
.lead-form { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-inline-row .input-field { flex: 1; }
.cta-inline-row .btn-green { flex-shrink: 0; white-space: nowrap; }
.cta-card { background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(15,81,50,0.3), transparent), radial-gradient(ellipse 60% 50% at 90% 20%, rgba(34,200,112,0.15), transparent), var(--green); border-radius: 24px; padding: 4rem 3rem; max-width: 750px; margin: 0 auto; box-shadow: 0 0 40px rgba(29,154,92,0.25), 0 0 80px rgba(29,154,92,0.15), 0 20px 40px rgba(0,0,0,0.1); }
.cta-title { font-size: 44px; color: #fff; font-weight: 800; }
.cta-pill { display: flex; align-items: center; max-width: 320px; width: 100%; margin: 0 auto; position: relative; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.cta-pill-input { flex: 1; min-width: 0; height: 56px; padding: 0 4rem 0 1.25rem; font-size: 1rem; text-align: center; background: #fff; border: none; border-radius: 9999px; outline: none; color: var(--fg); }
.cta-pill-input::placeholder { color: rgba(36,42,51,0.4); }
.cta-pill-btn { position: absolute; right: -4px; top: -4px; bottom: -4px; width: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--fg), #374151); color: #fff; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: background 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.cta-pill-btn:hover { background: linear-gradient(135deg, #374151, var(--fg)); }
.cta-pill-btn svg { transition: transform 0.2s; }
.cta-pill-btn:hover svg { transform: translateX(3px); }

.form-disclaimer { font-size: 0.8125rem; color: var(--muted); text-align: center; margin-top: 12px; margin-bottom: 3rem; }

/* ── Multi-step form ── */
.form-step { display: flex; flex-direction: column; gap: 0; }
.form-step .btn-green { margin-top: 30px; }
.form-step.hidden { display: none; }
.form-field label { display: block; font-weight: 600; font-size: 1.375rem; margin-bottom: 0.5rem; color: var(--fg); text-align: center; }
.stats-bar .container { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }

/* ── Comparison columns ── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.compare-col { border-radius: 16px; padding: 2rem; }
.compare-col--bad { background: #fef2f2; border: 1px solid #fecaca; }
.compare-col--good { background: #e6f5ed; border: 1px solid #bbf7d0; }
.compare-col-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.5px; text-align: left; }
.compare-col--bad .compare-col-title { color: #b91c1c; }
.compare-col--good .compare-col-title { color: var(--green); }
.compare-list { list-style: none; display: flex; flex-direction: column; }
.compare-list li { font-size: 0.95rem; line-height: 1.5; padding: 0.625rem 0; padding-left: 1.75rem; position: relative; color: #374151; }
.compare-col--bad .compare-list li::before { content: '✕'; position: absolute; left: 0; top: 0.625rem; color: #b91c1c; font-weight: 700; }
.compare-col--good .compare-list li::before { content: '✓'; position: absolute; left: 0; top: 0.625rem; color: var(--green); font-weight: 700; }

/* ── Case study ── */
.case-study-wrapper { margin-top: 2rem; text-align: center; }
.case-study { display: inline-flex; align-items: center; gap: 3rem; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem 3.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.case-arrow { font-size: 2rem; color: var(--green); }
.case-val { text-align: center; max-width: 220px; }
.case-val strong { display: block; font-family: 'Inter', sans-serif; font-size: 2rem; color: var(--fg); margin-bottom: 0.375rem; }
.case-val span { font-size: 0.875rem; color: var(--muted); line-height: 1.5; display: block; }
.case-label { font-weight: 700; color: var(--fg); }
.case-label--green { color: var(--green); }
.case-val--after strong { color: var(--green); }/* ── Feature blocks (Zéro stress, Flexibilité { padding: 1rem 0; }

/* ══════════════════════════════════════
   COMMENT ÇA MARCHE (steps wave)
   ══════════════════════════════════════ */
.steps-wave { position: relative; min-height: 280px; }
.steps-wave-line { position: absolute; top: 0; bottom: 0; left: -10%; width: 120%; height: 100%; z-index: 0; }
.steps-wave-items { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3.5rem; min-height: 280px; }
.steps-wave-item { text-align: center; padding: 1.75rem; background: rgba(255,255,255,0.7); border-radius: 20px; }
.steps-wave-line-mobile { display: none; }
.steps-wave-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #22b868, #17875a); color: #fff; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ── Service checklist v5 (light, centered) ── */
.sv5-wrapper { text-align: left; }
.sv5-label { font-family: 'Inter', sans-serif; font-size: 1.0625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 1.25rem; }
.sv5-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.sv5-list li { display: flex; gap: 0.875rem; align-items: flex-start; }
.sv5-check { color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.sv5-list strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.0625rem; font-weight: 700; color: var(--fg); }
.sv5-detail { display: block; font-size: 0.875rem; color: var(--muted); margin-top: 0.125rem; }
.sv5-divider { border: none; margin: 2.5rem 0; }

/* ══════════════════════════════════════
   TESTIMONIALS (marquee)
   ══════════════════════════════════════ */
.marquee-wrapper { position: relative; width: 100%; }
.marquee-wrapper::before,
.marquee-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, #fafbfe, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(to left, #fafbfe, transparent); }
.marquee-row { overflow: hidden; padding: 0.5rem 0; }
.marquee-track { display: flex; gap: 1.25rem; width: max-content; will-change: transform; }
.marquee-card { flex-shrink: 0; width: 340px; background: #f6f7fc; border: 1px solid var(--border); border-radius: 20px; padding: 1.5rem; text-align: left; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.marquee-left { animation: marquee-scroll-left 400s linear infinite; }
.marquee-right { animation: marquee-scroll-right 400s linear infinite; }
.marquee-left-slow { animation: marquee-scroll-left 500s linear infinite; }
@keyframes marquee-scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.testimonial-text { color: rgba(36,42,51,0.7); }
.stars { display: flex; gap: 2px; }
.star { color: #f59e0b; font-size: 0.875rem; }

/* ══════════════════════════════════════
   GUARANTEE CARDS
   ══════════════════════════════════════ */
.guarantee-card { text-align: center; padding: 2rem; background: none; border: none; box-shadow: none; }
.guarantee-icon { margin-bottom: 1rem; color: var(--green); }
.guarantee-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.accordion-item { background: none; border: none; border-bottom: 1px solid var(--border); border-radius: 0; margin-bottom: 0; padding: 0; }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger { width: 100%; background: none; text-align: left; font-weight: 600; color: var(--fg); font-size: 1.0625rem; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 1rem; }
.accordion-trigger::after { content: '+'; font-size: 1.25rem; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .accordion-trigger::after { content: '−'; transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; padding-bottom: 0; font-size: 1rem; color: var(--muted); line-height: 1.7; opacity: 0; transition: max-height 0.35s ease, opacity 0.25s ease, padding-bottom 0.35s ease; }
.accordion-item.open .accordion-content { max-height: 300px; opacity: 1; padding-bottom: 1.25rem; }
.faq-container { max-width: 68rem; }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--white); }
.portfolio-title { text-align: center; margin-bottom: 32px; }
.portfolio-viewer { max-width: 680px; margin: 0 auto; }
.portfolio-main { position: relative; margin-bottom: 10px; overflow: hidden; border-radius: 16px; }
.portfolio-main-img { width: 100%; height: 400px; object-fit: cover; display: block; }
.portfolio-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.45); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
.portfolio-arrow:hover { background: rgba(0,0,0,0.65); }
.portfolio-arrow-left { left: 12px; }
.portfolio-arrow-right { right: 12px; }
.portfolio-thumbs { display: flex; gap: 6px; justify-content: center; }
.portfolio-thumb { flex-shrink: 0; width: 80px; height: 56px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; transition: border-color 0.2s, opacity 0.2s; opacity: 0.6; }
.portfolio-thumb.active { border-color: var(--green); opacity: 1; }
.portfolio-thumb:hover { opacity: 1; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-photo-round { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 3px solid var(--green); }
.founder-phone { display: block; margin-top: 0.25rem; }
.founder-bio { flex: 1; min-width: 280px; }
.bio-text { font-size: 1rem; line-height: 1.75; color: var(--fg); margin-bottom: 1.25rem; }
.bio-text:last-child { margin-bottom: 0; }

/* ── Valeurs v2 (demo style) ── */
.valeurs-wrapper { max-width: 580px; margin: 0 auto; }
.valeurs-title { text-align: center; font-family: 'Inter', sans-serif; font-size: 2.25rem; color: var(--fg); letter-spacing: 8px; margin-bottom: 0.5rem; }
.valeurs-list { list-style: none; }
.valeurs-list li { display: flex; align-items: baseline; gap: 0.875rem; padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--muted); }
.valeurs-list li:last-child { border-bottom: none; }
.valeur-letter { font-family: 'Inter', sans-serif; font-size: 1.5rem; color: var(--green); flex-shrink: 0; width: 24px; text-align: center; line-height: 1; }
.valeurs-list li strong { color: var(--fg); font-weight: 600; }
.valeur-detail { color: var(--muted); margin-left: 0.75rem; }

/* ══════════════════════════════════════
   SUBPAGES — TARIFS
   ══════════════════════════════════════ */
.pricing-table { border-radius: 10px; overflow: hidden; border: 2px solid rgba(29,154,92,0.2); }
.pricing-header { background: var(--green); color: #fff; padding: 1.25rem 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.pricing-header span { font-weight: 700; font-size: 1.0625rem; }
.pricing-row { padding: 1.5rem 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid rgba(29,154,92,0.1); background: #fff; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row-alt { background: rgba(29,154,92,0.03); }
.pricing-label { font-size: 1.0625rem; color: var(--fg); }
.pricing-value { font-weight: 800; font-size: 1.375rem; color: var(--green); }

.highlight-box { display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem 0; }
.highlight-box-icon { flex-shrink: 0; }
.highlight-box-title { font-weight: 700; color: var(--fg); font-size: 1.125rem; margin: 0; }
.highlight-box-desc { margin-top: 0.25rem; }

.comparison-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.comparison-card { padding: 2rem; flex: 1; min-width: 200px; }
.comparison-card--muted { opacity: 0.6; }
.comparison-card-label { color: var(--green); font-weight: 600; }
.comparison-value { font-size: 2.5rem; font-weight: 800; }
.comparison-value--muted { color: var(--muted); }
.comparison-value--green { color: var(--green); }
.comparison-sub { margin-top: 0.25rem; }

/* ── Exemple concret (tarifs) ── */
.exemple-context { margin-bottom: 2rem; }
.exemple-timeline { border-left: 2px solid var(--green); padding-left: 1.5rem; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.exemple-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 0.25rem; }
.exemple-step p { color: var(--muted); }
.exemple-step p strong { color: var(--muted); }
.exemple-context p { color: var(--muted); }
.exemple-context p strong { color: var(--muted); }

/* ══════════════════════════════════════
   SUBPAGES — MERCI
   ══════════════════════════════════════ */
.merci-icon { font-size: 3rem; color: var(--green); margin-bottom: 1rem; }
.merci-title { font-size: 2rem; margin-bottom: 0.75rem; }

/* ══════════════════════════════════════
   SUBPAGES — RESSOURCES (blog)
   ══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); background: rgba(29,154,92,0.08); padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.75rem; width: fit-content; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.5rem; color: var(--fg); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.55; flex: 1; }
.blog-card-date { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; opacity: 0.6; }

/* ── Article template ── */
.article-header { margin-bottom: 2.5rem; }
.article-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); background: rgba(29,154,92,0.08); padding: 0.25rem 0.75rem; border-radius: 4px; margin-bottom: 1rem; }
.article-title { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; margin-bottom: 1rem; }
.article-meta { font-size: 0.875rem; color: var(--muted); display: flex; gap: 1.5rem; flex-wrap: wrap; }
.article-cover { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; margin-bottom: 2.5rem; }
.article-body { max-width: 680px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.article-body p { font-size: 1.0625rem; line-height: 1.75; color: var(--fg); margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-body li { font-size: 1.0625rem; line-height: 1.75; color: var(--fg); margin-bottom: 0.5rem; }
.article-body li::marker { color: var(--green); }
.article-body strong { color: var(--fg); font-weight: 700; }
.article-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { opacity: 0.8; }
.article-body blockquote { border-left: 3px solid var(--green); padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(29,154,92,0.04); border-radius: 0 8px 8px 0; }
.article-body blockquote p { color: var(--muted); margin-bottom: 0; font-style: italic; }

.inline-form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; margin: 2.5rem 0; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.inline-form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.inline-form-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }

.article-related { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.article-related h2 { font-size: 1.375rem; margin-bottom: 1.5rem; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer { background: linear-gradient(180deg, var(--fg) 0%, #1a1f27 60%, #151920 100%); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1fr; gap: 2rem; }
.footer h4 { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { font-size: 0.875rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════
   MOBILE MENU & STICKY CTA
   ══════════════════════════════════════ */
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1.5rem 2rem; overflow: hidden; }
.mobile-menu .btn-green-sm { display: flex; width: 100%; justify-content: center; border-radius: 12px; color: #fff !important; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.625rem 0; font-size: 0.875rem; color: rgba(36,42,51,0.6); }
.hamburger { display: none; background: none; padding: 0.5rem; color: var(--muted) !important; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

/* Desktop */
@media (min-width: 769px) {
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; flex: 1; align-content: center; }
}

/* Tablet */
@media (max-width: 1023px) {
  .header-nav, .header-actions { display: none; }
  .hamburger { display: block; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { gap: 1.5rem; }
  .case-study { gap: 1.5rem; padding: 2rem; }
  .cta-card { padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 1.5rem; }
  .stats-bar .container { gap: 2rem; }
  .hero-grid { gap: 2.5rem; }
  .hero-content { padding: 5rem 40px 2rem; }
  .hero-proof { gap: 1.5rem; }
  .form-glow { padding: 2rem 2rem 1.25rem; }
  .steps-wave-items { gap: 2rem; }
  .marquee-wrapper::before, .marquee-wrapper::after { width: 80px; }
  .marquee-card { width: 300px; padding: 1.25rem; }
  .pricing-header, .pricing-row { padding: 1rem 1.5rem; }
  .comparison-value { font-size: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 40px; }
  .section { padding: 3.5rem 0; }

  .hero-grid { display: block; text-align: center; }
  .hero-grid > div:first-child { margin-bottom: 2.5rem; }
  .hero-content { padding: 5rem 40px 2rem; }
  .hero { min-height: auto; }
  .hero-title { font-size: 43px; }
  .hero-subtitle { font-size: 0.9375rem; margin-left: auto; margin-right: auto; }
  .hero-proof { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero-proof-item strong { font-size: 1.5rem; }
  .hero-proof-item span { font-size: 0.8125rem; }
  .hero-partners-logos { gap: 2rem; }
  .partner-logo { height: 2rem; }
  .form-glow { max-width: 440px; margin: 0 auto; }
  .hero-partners { padding-bottom: 3rem; }

  .form-glow { padding: 1.75rem 40px 1.25rem; }
  .btn-green { font-size: 1rem; height: 50px; padding: 0 1.5rem; }
  .input-field { height: 48px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 200px; }
  .footer-grid {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-grid > div:first-child p { max-width: none; margin: 0.75rem auto 0; }
  .footer-grid > div:not(:first-child) { text-align: center; }
  .footer a { font-size: 0.8125rem; }
  .footer h4 { font-size: 0.6875rem; }
  .footer-bottom { text-align: center; }

  .stats-bar .container { gap: 0.75rem; }
  .stat-item { padding: 1rem 1.25rem; flex: 1 1 calc(50% - 0.75rem); min-width: 0; }
  .stat-value { font-size: 1.25rem; }

  .engage-items { flex-direction: column; align-items: center; gap: 0.75rem; }
  .engage-bar { padding: 1.5rem 0; }

  h2 { font-size: 1.375rem !important; }

  .card { padding: 1.25rem; }
  .tilt-left, .tilt-right { transform: none; }

  .wid-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .wid-services { grid-template-columns: 1fr; }
  .cta-inline-row { flex-direction: column; }
  .compare-grid { grid-template-columns: 1fr; width: 70%; min-width: 400px; margin: 0 auto; }
  .case-study { flex-direction: column; gap: 1rem; padding: 1.25rem; width: 70%; min-width: 400px; margin: 0 auto; }
  .guarantee-card { width: 70%; min-width: 400px; margin: 0 auto; }
  .sv5-wrapper { width: 70%; min-width: 400px; margin: 0 auto; }
  .case-arrow { transform: rotate(90deg); }

  .card-stack { height: 300px; }
  .card-stack-item { width: 110px; height: 155px; }
  .card-stack-item:nth-child(1) { transform: rotate(-10deg) translate(-160px, 12px); }
  .card-stack-item:nth-child(2) { transform: rotate(-7deg) translate(-115px, -8px); }
  .card-stack-item:nth-child(3) { transform: rotate(-4deg) translate(-70px, 6px); }
  .card-stack-item:nth-child(4) { transform: rotate(-1.5deg) translate(-28px, -10px); }
  .card-stack-item:nth-child(5) { transform: rotate(0.5deg) translate(0, 8px); }
  .card-stack-item:nth-child(6) { transform: rotate(2deg) translate(28px, -10px); }
  .card-stack-item:nth-child(7) { transform: rotate(4deg) translate(70px, 6px); }
  .card-stack-item:nth-child(8) { transform: rotate(7deg) translate(115px, -8px); }
  .card-stack-item:nth-child(9) { transform: rotate(10deg) translate(160px, 12px); }

  .portfolio-main-img { height: 260px; }
  .portfolio-thumb { width: 64px; height: 44px; }

  .steps-wave { min-height: auto; position: relative; }
  .steps-wave-line { display: none; }
  .steps-wave-line-mobile { display: block; position: absolute; left: 50%; top: 0; bottom: 0; width: 80px; height: 100%; transform: translateX(-50%); z-index: 0; }
  .steps-wave-item { width: 70%; min-width: 400px; margin: 0 auto; }
  .steps-wave-items { position: relative; z-index: 1; }
  .steps-wave-items { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .steps-wave-item { align-self: auto !important; padding: 1.25rem; }

  .sim-block-gray, .sim-block-green { padding: 0.75rem; }

  .included-grid { grid-template-columns: 1fr; }
  .comparison-cards { flex-direction: column; align-items: center; }
  .comparison-card { width: 70%; min-width: 400px; }
  .comparison-value { font-size: 1.75rem; }
  .founder-layout { flex-direction: column; align-items: center; text-align: center; }

  .article-cover { height: 260px; }
  .article-body h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
  .article-body p, .article-body li { font-size: 1rem; }
  .article-meta { gap: 0.75rem; }
  .article-related .blog-grid { grid-template-columns: 1fr !important; }
  .inline-form-card { padding: 1.5rem; }

  .valeurs-title { font-size: 1.75rem; letter-spacing: 5px; }
  .valeurs-list li { gap: 0.625rem; padding: 0.75rem 0; font-size: 0.9375rem; }
  .valeur-letter { font-size: 1.25rem; }

  .marquee-wrapper::before, .marquee-wrapper::after { width: 60px; }
  .marquee-card { width: 280px; padding: 1.25rem; }
  .marquee-track { gap: 0.75rem; }

  .accordion-trigger { font-size: 0.9375rem; padding: 1rem 0; }

  .pricing-header, .pricing-row { padding: 1rem 1.25rem; }
  .pricing-label { font-size: 0.9375rem; }
  .pricing-value { font-size: 1.125rem; }

  .cta-card { padding: 2.5rem 1.5rem; width: 70%; min-width: 400px; }
  .cta-title { font-size: 40px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item { font-size: 0.875rem; }
  .engage-item { font-size: 0.8125rem; }
  .hero-proof-item strong { font-size: 1.25rem; }
  .hero-title { font-size: 35px; }
  .hero-content { padding: 4.5rem 20px 1.5rem; }
  .form-glow { padding: 1.5rem 20px 1rem; }
  .form-glow { max-width: 100%; }
  .form-glow { padding: 1.5rem 1.25rem 1rem; }
  .marquee-card { width: 260px; }
  .portfolio-main-img { height: 220px; }
  .portfolio-thumb { width: 52px; height: 36px; }
  .blog-card-img { height: 160px; }
  .valeurs-title { font-size: 1.5rem; letter-spacing: 4px; }
  .cta-card { padding: 2rem 1.25rem; width: 100%; min-width: auto; }
  .cta-title { font-size: 35px; }
  .pricing-header, .pricing-row { padding: 0.875rem 1rem; }
  .form-field label { font-size: 1.1rem; }
  .hero-phone-link { flex-direction: column; gap: 0.25rem; }
  .hero-wave { height: 30px; }
  .hero-partners-logos { flex-direction: column; gap: 1.5rem; }
  .partner-logo { height: 1.75rem; }
  .steps-wave-item { width: 100%; min-width: auto; }
  .case-study { width: 100%; min-width: auto; }
  .guarantee-card { width: 100%; min-width: auto; }
  .sv5-wrapper { width: 100%; min-width: auto; }
  .compare-grid { width: 100%; min-width: auto; }
  .comparison-card { width: 100%; min-width: auto; }
}

/* ── Legal Pages ── */
.legal-heading { font-size: 1.25rem; font-weight: 700; color: var(--fg); margin: 2.5rem 0 0.75rem; }
.legal-text { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.legal-text a { color: var(--green); text-decoration: underline; }
.legal-list { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-list li { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.25rem; }

/* ── WhatsApp Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
