/* =========================================================
   FLOY — Feuille de style principale
   ========================================================= */

/* ---------- 1. Variables (tokens) ---------- */
:root {
  --teal:      #1b5e66;
  --teal-2:    #2E9AA6;
  --taupe:     #a89c88;
  --bg:        #000000;
  /* Boxes teintées taupe (~40% sur fond noir) + bordures taupe — 3e couleur */
  --card:      #433e36;  /* = taupe #a89c88 à ~40% sur noir (solide, pas de cumul si imbriqué) */
  --card-2:    #4f4a41;  /* surfaces internes (mockups), ~47% */
  --border:    rgba(168, 156, 136, 0.28);
  --border-2:  rgba(168, 156, 136, 0.45);
  --text:      #ffffff;
  --muted:     rgba(255, 255, 255, 0.62);
  --muted-2:   rgba(255, 255, 255, 0.42);

  --container: 1160px;
  --radius:    18px;
  --radius-sm: 12px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: 130px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Figtree", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container.narrow { max-width: 780px; }

/* ---------- 3. Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), border-color .25s var(--ease);
}
.btn.full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(46,154,166,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,154,166,.45); }
.btn-ghost { background: rgba(255,255,255,.04); border-color: var(--border-2); color: #fff; }
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }
.btn .arrow { font-size: 14px; transition: transform .25s var(--ease); }
.btn-primary:hover .arrow { transform: translate(2px,-2px); }

/* ---------- 4. Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-block: 16px;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
}
.navbar.scrolled { background: rgba(0,0,0,.6); backdrop-filter: blur(12px); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 80px; width: auto; }
.nav-links { display: flex; gap: 34px; margin-left: auto; margin-right: 28px; }
.nav-links a { font-size: 15px; color: var(--muted); transition: color .2s var(--ease); }
.nav-links a:hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.star { position: absolute; border-radius: 50%; background: #fff; animation: twinkle var(--dur,4s) ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: var(--min,.15); } 50% { opacity: var(--max,.7); } }

.hero-glow {
  position: absolute; top: 40%; left: 50%; width: 760px; height: 760px;
  transform: translate(-50%,-50%); z-index: 0; pointer-events: none;
  background: radial-gradient(circle at center,
    rgba(46,154,166,.75) 0%,
    rgba(46,154,166,.40) 26%,
    rgba(27,94,102,.18) 50%,
    rgba(27,94,102,0) 72%);
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.badge {
  display: inline-block; padding: 7px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--taupe);
  background: rgba(168,156,136,.10); border: 1px solid rgba(168,156,136,.28);
  margin-bottom: 26px;
}
.hero-title { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; margin-bottom: 22px; }
.hero-sub { max-width: 640px; font-size: clamp(1rem,1.4vw,1.18rem); color: var(--muted); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.scroll-dot { width: 22px; height: 36px; border: 2px solid var(--border-2); border-radius: 14px; position: relative; }
.scroll-dot::after { content:""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 6px; background: var(--teal-2); border-radius: 4px; animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 18px; } 100% { opacity: 0; } }
.scroll-text { font-size: 12px; color: var(--muted-2); letter-spacing: .04em; }

/* ---------- 6. Sections génériques ---------- */
.section { padding-block: var(--section-pad); position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--taupe);
  background: rgba(168,156,136,.08); border: 1px solid rgba(168,156,136,.22);
  margin-bottom: 22px;
}
.section-title { font-size: clamp(2rem, 4.5vw, 3.3rem); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.section-title.sm { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-sub { margin-top: 18px; color: var(--muted); font-size: 1.05rem; }
.subsection { margin-top: 110px; }

/* cartes de base */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }

/* ---------- 7. Logos strip ---------- */
.logos { padding-block: 70px; border-block: 1px solid var(--border); }
.logos-label { text-align: center; color: var(--muted-2); font-size: 14px; letter-spacing: .05em; margin-bottom: 34px; }

/* Carrousel défilant (marquee) avec fondu sur les bords */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* moitié = 1 série → boucle sans couture */
}
/* marge à droite (et non gap) pour que la boucle s'aligne parfaitement */
.logo-item {
  flex: none;
  margin-right: 64px;
  font-size: 22px; font-weight: 700;
  color: rgba(255,255,255,.30); letter-spacing: .02em; white-space: nowrap;
  transition: color .3s var(--ease);
}
.logo-item:hover { color: rgba(255,255,255,.6); }

/* ---------- 8. Services ---------- */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 90px; }
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-visual { order: 2; }
.service-visual { min-height: 340px; padding: 30px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-text h3 { font-size: 2rem; font-weight: 800; margin: 16px 0 14px; letter-spacing: -.01em; }
.service-text p { color: var(--muted); max-width: 460px; }
.badge-taupe {
  display: inline-block; padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--taupe); background: rgba(168,156,136,.08); border: 1px solid rgba(168,156,136,.22);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag-row.tiny { margin-top: 0; }
.tag { padding: 7px 14px; border-radius: 8px; font-size: 13px; color: var(--muted); background: rgba(255,255,255,.03); border: 1px solid var(--border); }

/* mockups */
.mock { width: 100%; }
.mock-tasks { display: flex; flex-direction: column; gap: 10px; }
.mock-task { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px; background: var(--card-2); border: 1px solid var(--border); font-size: 14px; }
.dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--muted-2); display: inline-block; flex: none; }
.dot.ok { background: linear-gradient(135deg,var(--teal),var(--teal-2)); border-color: transparent; position: relative; }
.dot.ok::after { content:"✓"; position: absolute; inset: 0; font-size: 9px; color: #fff; display: flex; align-items: center; justify-content: center; }

.mock-assistant { display: flex; flex-direction: column; gap: 14px; }
.mock-prompt { padding: 16px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.mock-chiprow { display: flex; gap: 8px; flex-wrap: wrap; }
.mchip { padding: 8px 13px; border-radius: 8px; font-size: 13px; background: rgba(255,255,255,.03); border: 1px solid var(--border); color: var(--muted); }

.mock-email { display: flex; flex-direction: column; gap: 14px; }
.mock-email-head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 10px; background: var(--card-2); border: 1px solid var(--border); font-size: 14px; }
.spinner { width: 14px; height: 14px; border: 2px solid var(--border-2); border-top-color: var(--teal-2); border-radius: 50%; margin-left: auto; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.mock-lead { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--border); font-size: 13px; }
.avatar-mini { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,var(--teal),var(--teal-2)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex: none; }
.verified { margin-left: auto; font-size: 11px; padding: 4px 10px; border-radius: 999px; background: rgba(46,154,166,.15); color: var(--teal-2); }
.mock-progress { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted-2); padding: 0 4px; position: relative; }
.mock-progress::before { content:""; position: absolute; top: -8px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg,var(--teal),var(--teal-2)); }

/* ---------- 9. Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step-card { padding: 28px; display: flex; flex-direction: column; }
.step-label { align-self: flex-start; padding: 5px 12px; border-radius: 8px; font-size: 12px; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--border); margin-bottom: 18px; }
.step-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.mock-analyze { margin-top: auto; display: flex; gap: 16px; align-items: center; padding: 16px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--border); }
.ring { width: 64px; height: 64px; border-radius: 50%; flex: none; background: conic-gradient(var(--teal-2) 0deg 250deg, rgba(255,255,255,.08) 250deg 360deg); mask: radial-gradient(circle 20px at center, transparent 98%, #000 100%); -webkit-mask: radial-gradient(circle 20px at center, transparent 98%, #000 100%); }
.check-list { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--muted); }
.check-list li { display: flex; align-items: center; gap: 8px; }
.mock-code { margin-top: auto; border-radius: 12px; overflow: hidden; background: #0a0c0d; border: 1px solid var(--border); }
.code-bar { display: flex; gap: 6px; padding: 10px 12px; background: var(--card-2); border-bottom: 1px solid var(--border); }
.code-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mock-code pre { padding: 14px; font-size: 11.5px; line-height: 1.6; color: var(--muted); overflow-x: auto; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.mock-code .k { color: var(--teal-2); }
.mock-code .s { color: var(--taupe); }
.mock-integrate { margin-top: auto; position: relative; height: 150px; border-radius: 12px; background: var(--card-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.orb-core { width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle,var(--teal-2),var(--teal)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; box-shadow: 0 0 30px rgba(46,154,166,.5); }
.node { position: absolute; padding: 5px 10px; font-size: 11px; border-radius: 7px; background: var(--card); border: 1px solid var(--border); color: var(--muted); }
.node.n1 { top: 16px; left: 22px; } .node.n2 { top: 16px; right: 22px; } .node.n3 { bottom: 16px; left: 22px; } .node.n4 { bottom: 16px; right: 22px; }

/* ---------- 10. Case studies ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.case-card { padding: 28px; position: relative; overflow: hidden; }
.case-logo { font-weight: 700; color: var(--muted-2); margin-bottom: 18px; }
.case-card h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.case-card p { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.impact-label { font-size: 12px; color: var(--taupe); letter-spacing: .04em; }
.impact ul { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--muted); }
.impact li { display: flex; align-items: center; gap: 9px; }

/* ---------- 11. Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.benefit-card { padding: 30px; position: relative; overflow: hidden; }
.benefit-glow { position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle,rgba(46,154,166,.30),transparent 70%); pointer-events: none; }
.benefit-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; position: relative; }
.benefit-card p { color: var(--muted); font-size: .95rem; position: relative; }

/* ---------- 12. Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.stat { text-align: center; padding: 40px 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-num { display: block; font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 800; background: linear-gradient(135deg,#fff,var(--teal-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: .95rem; }

/* ---------- 13. Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.value-card { padding: 26px; }
.value-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .92rem; }

/* ---------- 14. Compare (Why us) ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 880px; margin: 0 auto; }
.compare-card { padding: 30px; }
.compare-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; }
.compare-card ul { display: flex; flex-direction: column; gap: 14px; }
.compare-card li { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .98rem; }
.compare-card.good { border-color: rgba(46,154,166,.35); background: linear-gradient(180deg, rgba(46,154,166,.06), transparent); }
.x { color: #c25b5b; font-weight: 700; width: 14px; display: inline-flex; justify-content: center; flex: none; }

/* ---------- 15. Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; max-width: 760px; margin: 0 auto; }
.team-card { padding: 30px; text-align: center; }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg,var(--teal),var(--teal-2)); display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 800; overflow: hidden; border: 2px solid rgba(46,154,166,.4); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 { font-size: 1.3rem; font-weight: 700; }
.team-role { color: var(--taupe); font-size: .9rem; }
.team-card p { color: var(--muted); font-size: .92rem; margin-top: 12px; }

/* ---------- 16. Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1.22fr 1fr; gap: 22px; align-items: center; }
.price-card { padding: 26px; position: relative; }
.price-card.featured {
  padding: 46px 38px;                 /* plus grande : plus de hauteur et de respiration */
  border-color: rgba(46,154,166,.4);
  background: linear-gradient(180deg, rgba(46,154,166,.10), var(--card));
  box-shadow: 0 0 55px rgba(46,154,166,.18);
  z-index: 1;
}
.price-card.featured h3 { font-size: 1.5rem; }
.price-card.featured .amount { font-size: 2.9rem; }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; background: linear-gradient(135deg,var(--teal),var(--teal-2)); }
.price-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price .amount { font-size: 2.4rem; font-weight: 800; }
.price .per { color: var(--muted); }
.price-desc { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.price-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.price-feats li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--muted); }

/* ---------- 17. Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.testi-card { padding: 30px; }
.stars-row { color: var(--teal-2); letter-spacing: 3px; margin-bottom: 16px; }
.testi-card p { font-size: 1.02rem; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }

/* ---------- 18. FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: #fff; font-family: inherit; font-size: 1.05rem; font-weight: 600; padding: 20px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.chev { transition: transform .3s var(--ease); color: var(--muted); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- 19. Final CTA ---------- */
.cta-card { position: relative; text-align: center; padding: 80px 30px; border-radius: 26px; background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.cta-glow { position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse at center, rgba(46,154,166,.35), transparent 70%); pointer-events: none; }
.cta-card h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; line-height: 1.1; position: relative; }
.cta-card p { color: var(--muted); margin: 16px 0 30px; position: relative; }
.cta-card .btn { position: relative; }

/* ---------- 20. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 26px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { padding: 22px; display: flex; align-items: center; gap: 16px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(46,154,166,.12); color: var(--teal-2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.contact-card small { color: var(--muted-2); font-size: 12px; }
.contact-form { padding: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px; background: var(--card-2);
  border: 1px solid var(--border); color: #fff; font-family: inherit; font-size: 15px; resize: vertical;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal-2); }
.form-note { margin-top: 14px; font-size: 13px; color: var(--teal-2); }

/* ---------- 21. Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-top: 70px; position: relative; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { height: 56px; margin-bottom: 18px; }
.footer-brand p { color: var(--muted); max-width: 340px; margin-bottom: 26px; }
.news-label { font-size: 14px; margin-bottom: 12px; }
.news-form { display: flex; gap: 8px; max-width: 360px; }
.news-form input { flex: 1; padding: 12px 14px; border-radius: 10px; background: var(--card-2); border: 1px solid var(--border); color: #fff; font-family: inherit; }
.news-form input:focus { outline: none; border-color: var(--teal-2); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-col h4 { font-size: 14px; margin-bottom: 18px; color: #fff; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 12px; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 24px; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 13px; }

/* ---------- 22. Animations (état initial géré par GSAP) ---------- */
/* éléments masqués avant révélation pour éviter le "flash" */
[data-reveal], [data-reveal-left], [data-reveal-right] { will-change: transform, opacity; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 980px) {
  :root { --section-pad: 90px; }
  .service-row, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-row.reverse .service-visual { order: 0; }
  .process-grid, .cases-grid, .benefits-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(0,0,0,.96); backdrop-filter: blur(12px); margin: 0;
    border-bottom: 1px solid var(--border); padding: 10px 24px 24px;
    transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { display: none; }
  .logo-img { height: 52px; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .stats-grid, .process-grid, .cases-grid, .benefits-grid, .values-grid,
  .compare-grid, .team-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero-glow { width: 440px; height: 440px; }
  .footer-cols { grid-template-columns: repeat(2,1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
}

/* ---------- 24. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .star, .spinner, .scroll-dot::after, .marquee-track { animation: none; }
}
