/* ══════════════════════════════════════════════
   antwnlifts.fr : styles de base
   ══════════════════════════════════════════════ */

:root {
  --ink: #1D1D1F;
  --ink-2: #6E6E73;
  --ink-3: #B0B0B8;
  --line: rgba(0,0,0,.07);
  --line-2: rgba(0,0,0,.08);
  --alt: #F5F5F7;
  --accent: #0A84FF;
  --accent-dark: #0069D9;
  --accent-deep: #0060DF;
  --accent-soft: #F0F7FF;
  --accent-border: #CCE4FF;
  --accent-light: #4DA3FF;
  --display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 900; letter-spacing: -0.03em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 56px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { font-family: var(--display); font-weight: 900; font-size: 18px; color: var(--ink); letter-spacing: -0.5px; }
.nav-logo em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 36px; list-style: none; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.nav-links a { position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { background: var(--ink); color: #fff; padding: 9px 20px; border-radius: 980px; font-family: var(--display); font-weight: 700; font-size: 13px; transition: background .2s; }
.nav-cta:hover { background: var(--accent); }

/* ── BUTTONS ── */
.btn-main {
  position: relative; overflow: hidden;
  background: var(--accent); color: #fff;
  padding: 15px 32px; border-radius: 980px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-main:hover { background: var(--accent-dark); transform: scale(1.02); }
.btn-main svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-sec {
  color: var(--ink); padding: 15px 24px; border-radius: 980px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,.15);
  transition: border-color .2s, transform .2s;
}
.btn-sec:hover { border-color: rgba(0,0,0,.4); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; align-items: center;
  padding: 120px 72px 100px; max-width: 1300px; margin: 0 auto;
}
.hero-text { display: flex; flex-direction: column; position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 32px; }
/* text-wrap: balance égalise les lignes ; .nb interdit en plus la coupure
   qui laissait « stagne. » seul sur sa ligne là où balance n'est pas géré. */
.hero h1 { font-size: 80px; line-height: .98; letter-spacing: -4.5px; color: var(--ink); margin-bottom: 28px; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--accent); }
.nb { white-space: nowrap; }
.hero-sub { font-size: 18px; color: var(--ink-2); line-height: 1.65; max-width: 420px; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat strong { display: block; font-family: var(--display); font-size: 28px; font-weight: 900; letter-spacing: -1.5px; color: var(--ink); font-variant-numeric: tabular-nums; }
.hero-stat span { font-size: 12px; color: var(--ink-2); margin-top: 2px; display: block; }
/* ── MARQUEE ── */
.marquee-wrap { background: var(--ink); padding: 18px 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 60px; width: max-content; animation: marquee 45s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap:hover .marquee-inner { animation-play-state: paused; }
.marquee-item { font-family: var(--display); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4); white-space: nowrap; letter-spacing: .3px; }
.marquee-item strong { color: #fff; font-weight: 700; }

/* ── LAYOUT ── */
.section { padding: 120px 72px; max-width: 1300px; margin: 0 auto; }
.wrap-alt { background: var(--alt); }
.section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--accent); margin-bottom: 20px; }
.section-title { font-size: 56px; letter-spacing: -2.5px; line-height: 1.04; color: var(--ink); margin-bottom: 24px; }
.section-title em { font-style: normal; color: var(--accent); }
.section-sub { font-size: 18px; color: var(--ink-2); line-height: 1.65; max-width: 560px; margin-bottom: 64px; }

/* ── VERBATIM ── */
.verbatim-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin-bottom: 80px; }
.verbatim-item { background: #fff; padding: 36px 40px; transition: background .3s; }
.verbatim-item:hover { background: #FBFCFE; }
.verbatim-item p { font-size: 16px; color: var(--ink); line-height: 1.65; font-style: italic; margin-bottom: 12px; }
.verbatim-item span { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── PROBLEMS ── */
.problem-row { display: flex; align-items: flex-start; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.problem-row:last-child { border-bottom: none; }
.problem-num { font-size: 11px; font-weight: 700; color: var(--ink-2); letter-spacing: 1px; width: 24px; flex-shrink: 0; margin-top: 4px; }
.problem-row h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.3px; }
.problem-row p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ── BIG QUOTE ── */
.big-quote { max-width: 1100px; margin: 0 auto; padding: 120px 72px; text-align: center; }
.big-quote blockquote { font-family: var(--display); font-size: 44px; font-weight: 800; letter-spacing: -2px; line-height: 1.18; color: var(--ink); }
.big-quote blockquote em { font-style: normal; color: var(--accent); }
.big-quote cite { display: block; margin-top: 28px; font-size: 12px; color: var(--ink-2); letter-spacing: 1.5px; font-style: normal; text-transform: uppercase; font-weight: 600; }

/* ── PROCESS ── */
.process-grid { max-width: 760px; }

/* Le rail relie les pastilles. Il est cale sur 44px du haut et du bas :
   32px de padding sur .phase + la moitie des 24px de la pastille. Si tu
   changes l'un des deux, recale ces valeurs, sinon le trait depassera. */
.phases { position: relative; }
.phases-rail {
  position: absolute; left: 11px; top: 44px; bottom: 44px; width: 2px;
  background: var(--line-2); border-radius: 2px; overflow: hidden; z-index: 0;
}
.phases-fill {
  display: block; width: 100%; height: 0;
  background: var(--accent); border-radius: 2px;
  transition: height .2s linear;
}

.phase {
  position: relative; z-index: 1;
  display: flex; gap: 22px; padding: 32px 0;
  border-bottom: 1px solid var(--line); align-items: flex-start;
}
.phase:last-of-type { border-bottom: none; }

.phase-num {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 2px solid var(--line-2);
  font-family: var(--display); font-size: 10px; font-weight: 800;
  letter-spacing: 0; color: var(--ink-3);
  transition: border-color .45s var(--ease), background .45s var(--ease),
              color .45s var(--ease), box-shadow .45s var(--ease);
}
.phase.done .phase-num { border-color: var(--accent); background: var(--accent); color: #fff; }
.phase.on .phase-num {
  border-color: var(--accent); background: var(--accent); color: #fff;
  box-shadow: 0 0 0 5px rgba(10,132,255,.16);
}
.phase.on .phase-week { color: var(--accent); }
.phase-week, .phase h3 { transition: color .45s var(--ease); }
.phase-week { font-size: 11px; font-weight: 600; color: var(--ink-2); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.phase h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.5px; }
.phase p { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.phase p em { font-style: normal; color: var(--ink); font-weight: 600; }

/* ── POUR QUI ── */
.pour-qui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; max-width: 900px; }
.pour-qui-grid.full { max-width: none; }
.pq-card { padding: 44px 40px; background: #fff; }
.pq-card.oui { background: var(--accent-soft); }
.pq-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 28px; letter-spacing: -0.3px; color: var(--ink); }
.pq-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pq-card li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; }
.pq-card.oui li { color: #1F4A80; }
.pq-card.non li { color: var(--ink-2); }
.pq-card.oui li::before { content: '✓'; color: var(--accent); font-weight: 900; flex-shrink: 0; }
.pq-card.non li::before { content: '✗'; color: #D1D1D6; font-weight: 900; flex-shrink: 0; }
.pq-card.neutre li { color: var(--ink-2); gap: 12px; }
.pq-card.neutre li::before { content: '→'; color: var(--accent); font-weight: 900; flex-shrink: 0; }

/* ── OUTILS ──
   Une carte par app, cliquable. Elles remplacent l'ancien couple
   "bloc détaillé par outil + carte projet", qui disait deux fois la même
   chose et faisait 3000px à lui seul. Ici tout est visible d'un coup,
   sans onglet ni accordéon à ouvrir. */
.tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.tool {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line-2); border-radius: 20px; padding: 30px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.tool:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,.08); border-color: var(--accent-border); }
.tool-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tool-name { font-family: var(--display); font-size: 17px; font-weight: 900; letter-spacing: -0.4px; color: var(--ink); }
.tool-name em { font-style: normal; color: var(--accent); }
.tool-go { color: var(--ink-3); font-size: 15px; flex-shrink: 0; transition: transform .3s var(--ease), color .3s; }
.tool:hover .tool-go { transform: translate(3px, -3px); color: var(--accent); }
.tool-role { font-size: 13px; font-weight: 600; color: var(--ink-3); margin: 7px 0 20px; }
.tool ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.tool li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.tool li::before { content: '→'; color: var(--accent); font-weight: 900; flex-shrink: 0; }
/* margin-top:auto colle la ligne bleue en bas : les 3 cartes n'ont pas la
   même hauteur de texte, mais leurs encarts restent alignés. */
.tool-key { font-size: 13.5px; line-height: 1.55; color: #1F4A80; background: var(--accent-soft); border-radius: 14px; padding: 15px 17px; margin-top: auto; }
.tool-url { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .2px; margin-top: 16px; }
.tools-aside { font-size: 15px; color: var(--ink-2); line-height: 1.65; max-width: 640px; }
.tools-aside a { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--accent-border); }
.tools-aside a:hover { border-bottom-color: var(--accent); }

/* ── INCLUS ── */
.inclus-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-2); border-radius: 24px; overflow: hidden; background: #fff; }
.inclus-item { padding: 40px 36px; border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); transition: background .3s; }
.inclus-item:nth-child(3n) { border-right: none; }
.inclus-item:nth-child(n+4) { border-bottom: none; }
.inclus-item:hover { background: #FBFCFE; }
.inclus-icon { width: 30px; height: 30px; border-radius: 50%; background: #E6F2FF; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: transform .3s var(--ease); }
.inclus-item:hover .inclus-icon { transform: scale(1.12) rotate(-6deg); }
.inclus-icon svg { width: 15px; height: 15px; stroke: var(--accent); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.inclus-item h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.inclus-item p { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr; }
.about-content { max-width: 720px; }
.about-content p { font-size: 17px; color: var(--ink-2); line-height: 1.8; margin-bottom: 20px; }
.about-content strong { color: var(--ink); font-weight: 600; }

/* ── FAQ ── */
.faq-inner { max-width: 680px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 20px; user-select: none; line-height: 1.4; color: var(--ink);
  list-style: none; transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }

/* Le + est fait de deux barres : la verticale pivote pour donner le −. */
.faq-ico {
  position: relative; flex-shrink: 0; width: 28px; height: 28px;
  transition: transform .4s var(--ease);
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 1.5px; border-radius: 2px; background: var(--ink);
  transition: transform .4s var(--ease), background .25s ease;
}
.faq-ico::before { transform: translate(-50%, -50%); }
.faq-ico::after  { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q:hover .faq-ico::before, .faq-q:hover .faq-ico::after { background: var(--accent); }
.faq-item[open] .faq-ico { transform: rotate(180deg); }
.faq-item[open] .faq-ico::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item[open] .faq-ico::before, .faq-item[open] .faq-ico::after { background: var(--accent); }
.faq-item[open] .faq-q { color: var(--accent); }

/* Hauteur pilotée par main.js ; overflow:hidden pour que le texte se dévoile. */
.faq-panel { overflow: hidden; }
.faq-a { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-top: 14px; }

/* ── CTA ── */
.cta-section { position: relative; overflow: hidden; background: var(--ink); padding: 140px 72px; text-align: center; }
.cta-section > * { position: relative; z-index: 2; }
.cta-section .section-label { color: var(--accent-light); }
.cta-section h2 { font-size: 64px; font-weight: 900; letter-spacing: -3px; color: #fff; line-height: 1.04; max-width: 720px; margin: 16px auto 20px; }
.cta-section h2 em { font-style: normal; color: var(--accent); }
/* :not(.cta-note) est indispensable : sans lui cette règle (0,1,1) l'emporte
   sur .cta-note (0,1,0) et lui impose margin-top:0 + font-size:18px,
   ce qui colle la note sous le bouton. */
.cta-section > p:not(.cta-note) { font-size: 18px; color: rgba(255,255,255,.45); margin: 0 auto 48px; line-height: 1.6; max-width: 560px; }
.cta-note { margin: 28px auto 0; font-size: 12px; color: rgba(255,255,255,.25); letter-spacing: .5px; }

/* ── FOOTER ── */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); padding: 32px 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 12px; color: rgba(255,255,255,.25); font-weight: 500; }
.footer-logo { font-family: var(--display); font-weight: 900; font-size: 16px; color: rgba(255,255,255,.5); letter-spacing: -0.5px; }
.footer-logo em { font-style: normal; color: var(--accent); }
footer p { max-width: 640px; line-height: 1.6; }
footer a { color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-social { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.footer-social a { display: inline-flex; color: rgba(255,255,255,.45); border-bottom: none; transition: color .2s var(--ease), transform .2s var(--ease); }
.footer-social a:hover { color: var(--accent-light); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; display: block; }

/* ── STICKY MOBILE CTA ── */
.sticky { display: none; }

/* ══════ RESPONSIVE ══════ */
@media (max-width: 1100px) {
  .inclus-grid { grid-template-columns: 1fr 1fr; }
  .inclus-item:nth-child(3n) { border-right: 1px solid var(--line-2); }
  .inclus-item:nth-child(2n) { border-right: none; }
  .inclus-item:nth-child(n+4) { border-bottom: 1px solid var(--line-2); }
  .inclus-item:nth-child(n+5) { border-bottom: none; }
}
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 92px 20px 48px; gap: 40px; }
  .hero h1 { font-size: 44px; letter-spacing: -2.2px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; margin-bottom: 40px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 22px; }
  .section { padding: 64px 20px; }
  .section-title { font-size: 34px; letter-spacing: -1.5px; }
  .section-sub { font-size: 16px; margin-bottom: 40px; }
  .big-quote { padding: 64px 20px; }
  .big-quote blockquote { font-size: 24px; letter-spacing: -0.5px; }
  .verbatim-list { grid-template-columns: 1fr; margin-bottom: 56px; }
  .verbatim-item { padding: 28px 24px; }
  .pour-qui-grid { grid-template-columns: 1fr; }
  .pq-card { padding: 32px 24px; }
  .inclus-grid { grid-template-columns: 1fr; }
  .inclus-item { border-right: none !important; border-bottom: 1px solid var(--line-2) !important; padding: 28px 24px; }
  .inclus-item:last-child { border-bottom: none !important; }
  .cta-section { padding: 80px 20px; }
  .cta-section h2 { font-size: 34px; letter-spacing: -1.5px; }
  .cta-section > p:not(.cta-note) { font-size: 16px; margin-bottom: 32px; }
  .tools { grid-template-columns: 1fr; }
  /* Sur mobile, le pied de page se lit de haut en bas : le logo et les
     réseaux forment le bloc "marque", les mentions légales passent en
     dernier, en fine impression, séparées par un filet. */
  footer { flex-direction: column; align-items: flex-start; gap: 22px; padding: 40px 20px; }
  .footer-logo { order: 1; }
  .footer-social { order: 2; gap: 8px; margin-left: -8px; }
  .footer-social a { padding: 8px; }
  .footer-social svg { width: 24px; height: 24px; }
  footer p { order: 3; width: 100%; margin-top: 2px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11.5px; color: rgba(255,255,255,.22); }

  body { padding-bottom: 84px; }
  .sticky {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(255,255,255,.9);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-top: 1px solid var(--line-2);
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform .4s var(--ease);
  }
  .sticky.show { transform: translateY(0); }
  .sticky .btn-main { width: 100%; }
}
