/* ══════════════════════════════════════════
   OWL NIGHT DIGITAL SERVICES — styles.css
   Identité : bleu électrique #2D6FFF, blanc, fond #080808
   ══════════════════════════════════════════ */

:root {
  --bg:        #080808;
  --bg-soft:   #0f0f0f;
  --bg-card:   rgba(255,255,255,0.04);
  --bg-card-h: rgba(255,255,255,0.08);
  --border:    rgba(255,255,255,0.09);
  --border-h:  rgba(255,255,255,0.18);
  --text:      #ffffff;
  --muted:     #8a8fa8;
  --muted2:    #5a5f72;
  --blue:      #2D6FFF;
  --blue-light:#5a90ff;
  --blue-dark: #1a4fd6;
  --green:     #4cde8a;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow:    0 24px 70px rgba(0,0,0,0.6);
  --glow-blue: 0 0 50px rgba(45,111,255,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { color: var(--muted); line-height: 1.8; }

.container { width: min(1080px, 100% - 40px); margin-inline: auto; }
.section { padding-top: 100px; }


/* ── Typo ── */
.eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 14px;
}
h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -.04em; color: var(--text);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.04em; color: var(--text);
  margin-bottom: 16px;
}
h3 { font-size: 17px; font-weight: 700; letter-spacing: -.02em; color: var(--text); margin-bottom: 9px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px;
  border-radius: 6px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; border: 0;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
  white-space: nowrap; letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 36px rgba(45,111,255,.35);
}
.btn-primary:hover { background: var(--blue-light); box-shadow: 0 14px 44px rgba(45,111,255,.48); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--blue); }
.btn-full { width: 100%; }

/* ════════════════════════════
   HEADER
   ════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,.88);
}
.nav {
  position: relative;
  display: flex; align-items: center; gap: 20px;
  min-height: 72px;
}

/* Logo — reproduit l'identité ODS */
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo {
  display: flex; align-items: center;
  gap: 2px;
  font-size: 22px; font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.logo-o {
  color: var(--blue);
  font-style: italic;
  text-shadow: 0 0 20px rgba(45,111,255,.5);
}
.logo-d {
  color: #fff;
  font-style: italic;
}
.logo-s {
  color: var(--blue);
  font-style: italic;
  text-shadow: 0 0 20px rgba(45,111,255,.5);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; border-left: 1px solid var(--border); padding-left: 14px; }
.brand-name { font-size: 11px; font-weight: 800; color: var(--text); letter-spacing: .12em; text-transform: uppercase; }
.brand-sub  { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  margin-inline: auto;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); transition: color .15s; }
.nav-cta { font-size: 13px; flex-shrink: 0; border-radius: 6px; }

.nav-toggle {
  display: none; background: none; border: 0;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
}
.nav-toggle span + span { margin-top: 6px; }

/* ════════════════════════════
   HERO
   ════════════════════════════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 90px 0 70px;
  position: relative; z-index: 1;
}
.hero-sub { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }
.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(76,222,138,.12);
  border: 1px solid rgba(76,222,138,.35);
  display: grid; place-items: center;
  color: var(--green); font-size: 11px; font-weight: 900; flex-shrink: 0;
}

/* Mockup */
.hero-visual { position: relative; display: grid; place-items: center; }
.site-mockup {
  width: min(400px, 100%);
  border-radius: var(--radius-lg);
  background: #111;
  border: 1px solid rgba(45,111,255,.3);
  box-shadow: var(--shadow), var(--glow-blue);
  overflow: hidden;
}
.mockup-bar {
  display: flex; gap: 6px; align-items: center;
  padding: 12px 16px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mockup-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.mockup-body { padding: 22px; display: grid; gap: 18px; }
.mk-hero-block { display: grid; gap: 9px; }
.mk-line { height: 9px; border-radius: 4px; background: rgba(255,255,255,.1); }
.mk-line.big  { height: 16px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); width: 80%; }
.mk-line.med  { width: 60%; }
.mk-line.short { width: 50%; }
.mk-line.faint { opacity: .4; width: 65%; }
.mk-btn { width: 90px; height: 28px; border-radius: 5px; background: var(--blue); margin-top: 4px; }
.mk-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mk-card {
  padding: 12px 8px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  display: grid; gap: 7px;
}
.badge-delivered {
  position: absolute; bottom: 16px; right: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 15px;
  border-radius: var(--radius-md);
  background: rgba(76,222,138,.1);
  border: 1px solid rgba(76,222,138,.28);
  font-size: 13px; font-weight: 700; color: var(--green);
  backdrop-filter: blur(10px);
  animation: floatUp 4s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ════════════════════════════
   POUR QUI
   ════════════════════════════ */
.pour-qui {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative; z-index: 1;
}
.pq-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--muted2);
}
.pq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.pq-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  padding: 24px 12px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  background: #0d0d0d;
  text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
  cursor: default;
}
.pq-item:hover {
  border-color: rgba(45,111,255,.35);
  background: rgba(45,111,255,.05);
  transform: translateY(-3px);
}
.pq-illus {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pq-illus img {
  width: 80px; height: 80px;
  object-fit: contain;
  transition: transform .2s;
}
.pq-item:hover .pq-illus img { transform: scale(1.08); }
.pq-item span {
  font-size: 12px; font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
  line-height: 1.4;
  transition: color .2s;
}
.pq-item:hover span { color: var(--text); }

/* ════════════════════════════
   SERVICES
   ════════════════════════════ */
.section-header { max-width: 660px; margin-bottom: 44px; }
.section-intro { font-size: 16px; max-width: 540px; margin-top: 8px; }

.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.service-main { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

.service-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s, transform .2s;
}
.service-card:hover { background: #111; border-color: rgba(45,111,255,.4); transform: translateY(-3px); }

.service-emoji { margin-bottom: 16px; display: block; }

/* All ODS SVG illustrations used as icons */
.svc-img     { width: 64px; height: 64px; object-fit: contain; display: block; }
.card-lg .svc-img { width: 72px; height: 72px; }

.offer-img   { width: 52px; height: 52px; object-fit: contain; display: block; }
.contact-img { width: 28px; height: 28px; object-fit: contain; display: inline-block; flex-shrink: 0; }
.note-img    { width: 20px; height: 20px; object-fit: contain; display: inline-block; vertical-align: middle; margin-right: 6px; }
.service-includes { display: grid; gap: 8px; margin-top: 14px; }
.service-includes li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--muted);
}
.service-includes li::before { content: '✓'; color: var(--blue-light); font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

.card-link { display: inline-flex; align-items: center; margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--blue-light); gap: 0; transition: gap .15s; }
.card-link:hover { gap: 4px; }

/* ════════════════════════════
   TARIFS — TABLE COMPARAISON
   ════════════════════════════ */
.pricing-table {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  background: #0d0d0d;
}

/* ── En-têtes plans ── */
.pt-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pt-label-col {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.pt-plan {
  padding: 32px 20px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  position: relative;
}
.pt-plan:last-child { border-right: 0; }

.pt-plan-featured {
  background: rgba(45,111,255,.06);
  border-left: 1px solid rgba(45,111,255,.25);
  border-right: 1px solid rgba(45,111,255,.25);
}

.pt-plan h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.pt-plan .price-desc {
  font-size: 12px; color: var(--muted);
  line-height: 1.55; margin-bottom: 16px;
  min-height: 36px;
}
.pt-plan .price-amount {
  display: flex; align-items: flex-end; gap: 3px;
  justify-content: center; line-height: 1;
  margin-bottom: 18px;
}
.pt-plan .price-amount strong {
  font-size: 44px; font-weight: 900;
  color: var(--text); letter-spacing: -.04em;
}
.pt-plan .price-cur {
  font-size: 18px; font-weight: 700;
  color: var(--muted); margin-bottom: 6px;
}
.pt-plan .popular-badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px; border-radius: 0 0 8px 8px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}

/* ── Body : catégories + lignes ── */
.pt-body { display: flex; flex-direction: column; }

.pt-category {
  grid-column: 1 / -1;
  padding: 12px 24px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(45,111,255,.06);
  border-top: 1px solid rgba(45,111,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.pt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s;
}
.pt-row:hover { background: rgba(255,255,255,.02); }
.pt-row:last-child { border-bottom: 0; }

.pt-feat {
  padding: 14px 24px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  display: flex; align-items: center;
  border-right: 1px solid rgba(255,255,255,.05);
}
.pt-val {
  padding: 14px 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--muted);
  border-right: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.pt-val:last-child { border-right: 0; }
.pt-val-featured {
  background: rgba(45,111,255,.05);
  border-left: 1px solid rgba(45,111,255,.15);
  border-right: 1px solid rgba(45,111,255,.15);
  color: var(--text);
}

.ico-yes {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(45,111,255,.15);
  color: var(--blue-light);
  font-size: 11px; font-weight: 900;
}
.ico-no {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,.04);
  color: var(--muted2);
  font-size: 13px; font-weight: 400;
}

/* Ligne CTA en bas */
.pt-row-cta {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.07);
}
.pt-row-cta .pt-val { padding: 20px 12px; }
.pt-row-cta .pt-feat { border-right: 1px solid rgba(255,255,255,.05); }

/* Boutons dans la table */
.btn-ghost-price {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text); border-radius: 7px;
  font-size: 13px; font-weight: 700;
  min-height: 42px; padding: 0 16px;
  transition: background .2s, border-color .2s, transform .18s;
}
.btn-ghost-price:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.btn-blue-price {
  background: var(--blue); color: #fff;
  border-radius: 7px; font-size: 13px; font-weight: 700;
  min-height: 42px; padding: 0 16px;
  box-shadow: 0 6px 22px rgba(45,111,255,.35);
  transition: background .2s, box-shadow .2s, transform .18s;
}
.btn-blue-price:hover { background: var(--blue-light); box-shadow: 0 10px 30px rgba(45,111,255,.5); }

.pricing-note {
  margin-top: 20px; padding: 15px 20px;
  border-radius: var(--radius-md);
  background: rgba(45,111,255,.06);
  border: 1px solid rgba(45,111,255,.16);
  font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* Offre personnalisée */
.custom-offer {
  margin-top: 16px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: border-color .2s;
}
.custom-offer:hover { border-color: rgba(45,111,255,.35); }
.custom-offer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.custom-offer-icon {
  font-size: 32px; flex-shrink: 0;
}
.custom-offer h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 6px;
}
.custom-offer p {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin: 0;
  max-width: 560px;
}
.custom-offer .btn-blue-price {
  flex-shrink: 0;
  min-height: 46px; padding: 0 24px;
  font-size: 14px; border-radius: 7px;
  white-space: nowrap;
}

/* ════════════════════════════
   ÉTAPES
   ════════════════════════════ */
.steps { display: grid; gap: 10px; }
.step {
  display: grid; grid-template-columns: 50px 1fr;
  gap: 18px; align-items: start;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s;
}
.step:hover { background: #111; border-color: rgba(45,111,255,.35); }
.step-num {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(45,111,255,.12);
  border: 1px solid rgba(45,111,255,.3);
  color: var(--blue-light); font-weight: 900; font-size: 15px; flex-shrink: 0;
}
.step-body h3 { font-size: 16px; margin-bottom: 7px; }
.step-body p  { font-size: 14px; margin: 0; }

/* ════════════════════════════
   FAQ
   ════════════════════════════ */
.faq-list { display: grid; gap: 7px; max-width: 740px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: #0d0d0d; overflow: hidden; transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(45,111,255,.4); }
.faq-item summary {
  padding: 17px 20px; font-size: 15px; font-weight: 700;
  color: var(--text); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 16px; font-size: 14px; line-height: 1.75; }

/* ════════════════════════════
   CONTACT
   ════════════════════════════ */
.contact-section {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: 60px; padding-bottom: 100px;
}
.contact-copy p { font-size: 16px; }
.contact-alts { margin-top: 26px; }
.contact-alt-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #0d0d0d;
  font-size: 13px; font-weight: 600; color: var(--muted);
  transition: border-color .2s, color .2s;
}
.contact-alt-link:hover { border-color: rgba(45,111,255,.4); color: var(--text); }

.contact-form { display: grid; gap: 13px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #0d0d0d; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
label { display: grid; gap: 6px; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted2); }
input, select, textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #111; color: var(--text);
  font: inherit; font-size: 14px; outline: none;
  transition: border-color .2s;
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: var(--muted); opacity: .5; }
input:focus, select:focus, textarea:focus { border-color: rgba(45,111,255,.6); }
select option { background: #111; }
.contact-form .btn { margin-top: 4px; }
.form-note { font-size: 12px; color: var(--muted2); text-align: center; line-height: 1.6; margin: 0; }

/* ════════════════════════════
   FOOTER
   ════════════════════════════ */
.site-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-nav { display: flex; gap: 20px; }
.footer-nav a { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; transition: color .15s; }
.footer-nav a:hover { color: var(--text); }

/* ════════════════════════════
   REVEAL
   ════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .badge-delivered { animation: none; }
}

/* ════════════════════════════
   RESPONSIVE TABLETTE
   ════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    position: absolute; inset: 72px 0 auto 0;
    display: grid; gap: 3px; padding: 12px;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid var(--border);
  }
  .nav.open .nav-links a { display: block; padding: 11px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,.03); }

  .hero { grid-template-columns: 1fr; padding: 60px 0 48px; gap: 36px; }
  .hero-sub { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-main { grid-column: 1; grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  /* Table tarifs : scroll horizontal sur tablette */
  .pricing-table { overflow-x: auto; }
  .pt-head { min-width: 640px; }
  .pt-body .pt-row,
  .pt-body .pt-category { min-width: 640px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ════════════════════════════
   RESPONSIVE MOBILE
   ════════════════════════════ */
@media (max-width: 600px) {
  .container { width: calc(100% - 28px); }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero { padding-top: 40px; gap: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .badge-delivered { display: none; }
  .section { padding-top: 70px; }
  .pour-qui { flex-direction: column; align-items: flex-start; }
  .pq-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 18px; }
  .step { grid-template-columns: 1fr; }
  .custom-offer { flex-direction: column; align-items: flex-start; gap: 20px; }
  .custom-offer .btn-blue-price { width: 100%; justify-content: center; }
}

/* Footer logo smaller */
.footer-logo { font-size: 15px !important; }

/* ════════════════════════════
   PAGE HERO (pages intérieures)
   ════════════════════════════ */
.page-hero {
  padding: 80px 0 56px;
  max-width: 760px;
  position: relative; z-index: 1;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 52px); }
.page-hero .hero-sub { font-size: 17px; max-width: 580px; margin: 0 0 28px; color: var(--muted); line-height: 1.75; }
.page-hero .hero-actions { margin-top: 0; }

/* ════════════════════════════
   LIEN ACTIF NAVIGATION
   ════════════════════════════ */
.nav-links a.active {
  color: var(--text);
  background: rgba(45,111,255,.1);
  border-radius: 5px;
  padding: 4px 10px;
}
.footer-nav a.active { color: var(--text); }
@media (max-width: 960px) {
  .nav.open .nav-links a.active { background: rgba(45,111,255,.12); }
}

/* ════════════════════════════
   ILLUSTRATIONS ODS
   ════════════════════════════ */
.svc-img     { width: 64px; height: 64px; object-fit: contain; display: block; }
.offer-img   { width: 52px; height: 52px; object-fit: contain; display: block; }
.contact-img { width: 28px; height: 28px; object-fit: contain; display: inline-block; flex-shrink: 0; }
.note-img    { width: 18px; height: 18px; object-fit: contain; display: inline-block; vertical-align: middle; margin-right: 5px; }
.service-emoji { margin-bottom: 16px; display: block; }
.custom-offer-icon { flex-shrink: 0; display: flex; align-items: center; }
.custom-offer-icon img { width: 52px; height: 52px; object-fit: contain; }

/* Pour qui — illustrations */
.pq-illus { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pq-illus img { width: 80px; height: 80px; object-fit: contain; transition: transform .2s; }
.pq-item:hover .pq-illus img { transform: scale(1.08); }

/* ════════════════════════════
   EXEMPLES
   ════════════════════════════ */
.exemples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.exemple-card {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
}
.exemple-card:hover {
  border-color: rgba(45,111,255,.35);
  transform: translateY(-3px);
}

.exemple-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ex-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(45,111,255,.1);
  border: 1px solid rgba(45,111,255,.2);
  border-radius: 4px;
  padding: 2px 8px;
}
.ex-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ex-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.ex-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ex-list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.ex-list li::before {
  content: '✓';
  color: var(--blue-light);
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Mini mockup preview ── */
.ex-preview {
  margin-top: auto;
  border-radius: 10px;
  background: #111;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.exp-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 8px 10px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.exp-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.exp-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-line {
  height: 7px;
  border-radius: 3px;
  background: rgba(255,255,255,.08);
}
.exp-line.full  { width: 100%; background: linear-gradient(90deg,var(--blue),var(--blue-light)); opacity: .7; }
.exp-line.med   { width: 65%; }
.exp-btn {
  width: 70px;
  height: 22px;
  border-radius: 4px;
  background: var(--blue);
  opacity: .8;
}

/* cards in mockup */
.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.exp-cards span {
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
}

/* form mockup */
.exp-form { display: flex; flex-direction: column; gap: 6px; }
.exp-input {
  height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.exp-input.tall { height: 36px; }
.exp-btn-sm {
  width: 80px;
  height: 20px;
  border-radius: 4px;
  background: var(--blue);
  opacity: .8;
  margin-top: 2px;
}

/* stats mockup */
.exp-stats {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
  margin-top: 4px;
}
.exp-stat {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.exp-stat-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,.12);
}
.exp-stat-bar.accent { background: var(--blue); opacity: .9; }

/* brand mockup */
.exp-brand-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}
.exp-logo-block {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.04em;
}
.exp-logo-o, .exp-logo-s { color: var(--blue); }
.exp-logo-d { color: #fff; }
.exp-palette {
  display: flex;
  gap: 6px;
}
.exp-palette span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}

/* social grid mockup */
.exp-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.exp-social-grid span {
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.exp-social-grid span.accent {
  background: rgba(45,111,255,.2);
  border-color: rgba(45,111,255,.3);
}

/* CTA card (dernière card sur-mesure) */
.ex-cta-card {
  margin-top: auto;
  padding: 18px;
  border-radius: 10px;
  background: rgba(45,111,255,.07);
  border: 1px solid rgba(45,111,255,.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ex-cta-card p {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

/* ── CTA band ── */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  transition: border-color .2s;
}
.cta-band:hover { border-color: rgba(45,111,255,.3); }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p  { font-size: 15px; max-width: 480px; margin: 0; }
.cta-band .btn { flex-shrink: 0; }

@media (max-width: 960px) {
  .exemples-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
}
@media (max-width: 600px) {
  .exemples-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   FORMULAIRE — ÉTATS
   ════════════════════════════ */
.form-success-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(76,222,138,.1);
  border: 1px solid rgba(76,222,138,.3);
  color: var(--green);
  font-size: 14px; font-weight: 600;
  text-align: center;
}
.form-error-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255,80,80,.08);
  border: 1px solid rgba(255,80,80,.25);
  color: #ff6b6b;
  font-size: 14px; font-weight: 600;
  text-align: center;
}
#ods-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* ════════════════════════════
   WHATSAPP BOUTON FLOTTANT
   ════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, padding .3s ease;
  white-space: nowrap;
  overflow: hidden;
  max-width: 220px;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(37,211,102,.6);
}
.wa-float svg {
  width: 24px; height: 24px;
  flex-shrink: 0;
}
.wa-float span {
  font-size: 13px;
  transition: opacity .25s ease, max-width .3s ease;
}

/* Pulse animation sur l'icône */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,.15);
  opacity: 0;
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 600px) {
  .wa-float { padding: 13px; border-radius: 50%; }
  .wa-float span { display: none; }
}
