/* =============================================
   POTENTIEEL — Feuille de style globale
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400;1,600;1,700&family=Caveat:wght@600;700&display=swap&font-display=swap');

:root {
  --bg:           #0d0d0d;
  --bg-card:      #161616;
  --bg-card-2:    #1e1e1e;
  --bg-card-3:    #232323;
  --orange:       #f4926a;
  --orange-light: #f7b49a;
  --orange-btn:   #f5a07a;
  --lime:         #c8f542;
  --lime-dim:     #a8d030;
  --white:        #ffffff;
  --gray-light:   #cccccc;
  --gray:         #888888;
  --gray-dark:    #444444;
  --border:       #202020;
  --border-card:  #2a2a2a;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  999px;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TILT CARD + CURSOR GLOW
   ============================================= */
.tilt-card {
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.tilt-card::before {
  content: '';
  position: absolute;
  left: var(--gx, 50%);
  top:  var(--gy, 50%);
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244,146,106,0.13) 0%, transparent 65%);
  opacity: var(--go, 0);
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.tilt-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(244,146,106,0.12);
}
.tilt-card > * { position: relative; z-index: 1; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.scroll-anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-anim.d1 { transition-delay: 0.08s; }
.scroll-anim.d2 { transition-delay: 0.16s; }
.scroll-anim.d3 { transition-delay: 0.24s; }
.scroll-anim.d4 { transition-delay: 0.32s; }
.scroll-anim-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.scroll-anim-left.visible { opacity: 1; transform: translateX(0); }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.serif { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }
.accent-orange { color: var(--orange); }
.accent-lime   { color: var(--lime); }
.muted         { color: var(--gray); }

.gradient-text {
  background: linear-gradient(90deg, #f4926a 0%, #c8a0e0 60%, #e0b8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.navbar-logo .arrow-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.navbar-logo .arrow-icon svg { width: 22px; height: 22px; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 14px;
  color: var(--gray-light);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.navbar-links a:hover { color: var(--white); }
.navbar-links a.active {
  color: var(--white);
  font-weight: 500;
}
.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.btn-crm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid rgba(245,160,122,0.5);
  border-radius: var(--radius-pill);
  color: var(--orange-light);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-crm:hover {
  background: rgba(244,146,106,0.1);
  border-color: var(--orange);
  color: var(--orange);
}
.btn-crm svg { width: 14px; height: 14px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--orange-btn);
  border-radius: var(--radius-pill);
  color: #1a0800;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(200,245,66,0.1);
  border: 1.5px solid var(--lime);
  border-radius: var(--radius-pill);
  color: var(--lime);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-lime:hover { background: rgba(200,245,66,0.18); }

/* =============================================
   DECORATIVE ARROW CIRCLE
   ============================================= */
.arrow-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  pointer-events: none;
}
.arrow-circle-sm {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,146,106,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
}

/* =============================================
   EYEBROW TEXT
   ============================================= */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.eyebrow.lime { color: var(--lime); }
.eyebrow.lime::before { background: var(--lime); }
.eyebrow.white { color: var(--gray-light); }
.eyebrow.white::before { background: var(--gray); }

/* =============================================
   SECTION DIVIDER LINE (orange/lime under heading)
   ============================================= */
.heading-divider {
  display: flex;
  gap: 6px;
  margin: 18px 0 28px;
}
.heading-divider span {
  height: 2px;
  border-radius: 2px;
}
.heading-divider .d-orange { background: var(--orange); width: 120px; }
.heading-divider .d-lime   { background: var(--lime);   width: 60px; }

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
  text-align: center;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  width: 100%;
}
.hero-stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .val {
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 70%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  opacity: 0.45;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0.7) 22%, black 42%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0.7) 22%, black 42%);
  pointer-events: none;
}

/* Sparkles */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sparkle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  50%       { opacity: 0.6; transform: scale(1.2); }
}

/* =============================================
   TICKER / MARQUEE
   ============================================= */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: rgba(255,255,255,0.015);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 20px;
}
.ticker-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SECTION COMMON
   ============================================= */
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-header p {
  max-width: 560px;
  color: var(--gray-light);
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
}
/* Centre uniquement le CTA final et le circuit — tout le reste est à gauche */
.center-block { text-align: center; }
.center-block p { margin: 16px auto 0; }
.center-block .eyebrow { justify-content: center; }

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.problem-intro {
  grid-column: 1 / -1;
  max-width: 640px;
  color: var(--gray-light);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px;
}
.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.problem-card p { color: var(--gray-light); font-size: 15px; line-height: 1.65; }
.problem-card .icon-wrap {
  width: 42px; height: 42px;
  background: rgba(244,146,106,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 20px;
}

/* =============================================
   DOUBLE CIRCUIT
   ============================================= */
.circuit-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--gray-light);
  font-size: 17px;
  line-height: 1.65;
}
.circuit-intro strong { color: var(--white); font-weight: 600; }

.circuit-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.circuit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.circuit-card.urgence { border-top: 3px solid var(--orange); }
.circuit-card.projet  { border-top: 3px solid var(--lime); }

.circuit-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.circuit-label.urgence { color: var(--orange); }
.circuit-label.projet  { color: var(--lime); }

.circuit-label .icon-wrap {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.circuit-label.urgence .icon-wrap { background: rgba(244,146,106,0.12); color: var(--orange); }
.circuit-label.projet  .icon-wrap { background: rgba(200,245,66,0.1);   color: var(--lime); }

.circuit-card h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.circuit-card p { color: var(--gray-light); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }

.circuit-list { margin-bottom: 28px; }
.circuit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.circuit-list li:last-child { border-bottom: none; }
.circuit-list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.circuit-list.urgence li svg { color: var(--orange); }
.circuit-list.projet  li svg { color: var(--lime); }

.circuit-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}
.circuit-ou {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-card-3);
  border: 1.5px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* =============================================
   TESTIMONIALS / CAROUSEL
   ============================================= */
.testimonials-section { background: var(--bg); }

.testimonials-heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card.t-orange { border-top: 2px solid var(--orange); }
.testimonial-card.t-orange-2 { border-top: 2px solid var(--orange-light); }
.testimonial-card.t-lime   { border-top: 2px solid var(--lime); }

.testimonial-quote-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: Georgia, serif;
}
.testimonial-card.t-lime .testimonial-quote-icon  { color: var(--lime); }
.testimonial-card.t-orange-2 .testimonial-quote-icon { color: var(--orange-light); }

.testimonial-result {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 14px;
}
.testimonial-card.t-lime   .testimonial-result { color: var(--lime); }
.testimonial-card.t-orange-2 .testimonial-result { color: var(--orange-light); }

.testimonial-text {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card-3);
  border: 1.5px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-light);
  flex-shrink: 0;
}
.testimonial-author-name { font-size: 14px; font-weight: 600; }
.testimonial-author-role { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* WhatsApp Carousel */
.wa-carousel-section { padding: 80px 0 100px; }
.wa-carousel-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}
.wa-carousel-title .serif { color: var(--orange); }

.wa-carousel-track-wrap { overflow: hidden; position: relative; }
.wa-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wa-card {
  min-width: 360px;
  background: #111b21;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  flex-shrink: 0;
}

.wa-card-header {
  background: #1f2c34;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #2a3942;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.wa-contact-name { font-size: 15px; font-weight: 600; color: #e9edef; }
.wa-contact-status { font-size: 12px; color: #8696a0; }
.wa-icons { margin-left: auto; display: flex; gap: 18px; color: #aebac1; }

.wa-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' opacity='0.03'%3E%3Ctext y='100' font-size='200' fill='%23888'%3E💬%3C/text%3E%3C/svg%3E");
}

.wa-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #e9edef;
  position: relative;
}
.wa-bubble.received {
  background: #1f2c34;
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.wa-bubble.sent {
  background: #005c4b;
  align-self: flex-end;
  border-top-right-radius: 2px;
}
.wa-bubble-time {
  font-size: 11px;
  color: #8696a0;
  margin-top: 4px;
  text-align: right;
}
.wa-reaction {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #8696a0;
  margin-top: 2px;
  background: #1f2c34;
  border-radius: 20px;
  padding: 2px 8px;
  width: fit-content;
}

.wa-annotation {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
  pointer-events: none;
}

.wa-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.wa-ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  background: var(--bg-card);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.wa-ctrl-btn:hover { border-color: var(--orange); color: var(--orange); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-item .desc {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px;
}
.pricing-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.pricing-subtitle {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pricing-tagline {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}
.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 20px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-price sub { font-size: 16px; font-weight: 400; color: var(--gray); }
.pricing-payment {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 28px;
}
.pricing-list { margin-bottom: 32px; }
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--gray-light);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li .check {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
}
.pricing-card.featured {
  border-color: rgba(244,146,106,0.35);
  background: linear-gradient(135deg, rgba(244,146,106,0.04) 0%, var(--bg-card) 60%);
}

.pricing-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius);
  padding: 36px;
}
.pricing-option-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}

.pricing-option-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.pricing-option-title { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.pricing-option-desc  { color: var(--gray-light); font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
.pricing-option-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.pricing-option-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--gray-light);
}
.pricing-option-list li .check { width: 14px; height: 14px; color: var(--lime); }
.pricing-option-badge {
  background: rgba(200,245,66,0.08);
  border: 1.5px solid var(--lime);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.pricing-option-badge .badge-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 4px;
}
.pricing-option-badge .badge-sub {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(244,146,106,0.04) 100%);
}
.cta-section .eyebrow { justify-content: center; }
.cta-section h2 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.cta-section h2 .serif { color: var(--orange); }

/* =============================================
   PROCESS TIMELINE
   ============================================= */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
/* Connecting line — replaced by SVG wave */
.process-timeline::before { display: none; }

.process-wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.process-step-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 0;
  position: relative;
}
.process-badge {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.process-step-new:nth-child(2) .process-badge { border-color: color-mix(in srgb, var(--orange) 66%, var(--lime)); color: color-mix(in srgb, var(--orange) 66%, var(--lime)); }
.process-step-new:nth-child(3) .process-badge { border-color: color-mix(in srgb, var(--orange) 33%, var(--lime)); color: color-mix(in srgb, var(--orange) 33%, var(--lime)); }
.process-step-new:nth-child(4) .process-badge { border-color: var(--lime); color: var(--lime); }
.process-step-new:hover .process-badge { background: rgba(244,146,106,0.12); box-shadow: 0 0 24px rgba(244,146,106,0.25); }
.process-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  transition: background 0.25s;
}
.process-step-new:hover .process-icon { background: rgba(244,146,106,0.08); }
.process-step-new h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.process-step-new p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.65;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(244,146,106,0.35); }
.faq-question {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 22px;
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer p { margin: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 300px;
}
.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gray-light);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */
.page-header {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.page-header p {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
  text-align: center;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.step-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 14px; color: var(--gray-light); line-height: 1.6; }

/* =============================================
   ADVANTAGES GRID
   ============================================= */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
}
.adv-icon {
  width: 44px; height: 44px;
  background: rgba(244,146,106,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--orange);
}
.adv-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.adv-card p  { font-size: 14.5px; color: var(--gray-light); line-height: 1.6; }

/* =============================================
   INCLUDED LIST (big card)
   ============================================= */
.included-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px;
}
.included-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.included-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.included-list li:last-child { border-bottom: none; }
.included-list li .check { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

/* =============================================
   VALUES (À Propos)
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 32px;
}
.value-icon {
  width: 44px; height: 44px;
  background: rgba(244,146,106,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.value-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 15px; color: var(--gray-light); line-height: 1.6; }

/* =============================================
   WHO WE ARE (À Propos)
   ============================================= */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-text h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.who-text p {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.who-image-wrap {
  position: relative;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.who-image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: all 0.2s;
  cursor: pointer;
}
.contact-method:hover { border-color: rgba(244,146,106,0.4); background: rgba(244,146,106,0.04); }
.contact-method .cm-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method.whatsapp .cm-icon { background: rgba(37,211,102,0.1); color: #25d366; }
.contact-method.email    .cm-icon { background: rgba(244,146,106,0.1); color: var(--orange); }
.contact-method.calendly .cm-icon { background: rgba(100,180,255,0.1); color: #64b4ff; }
.contact-method .cm-title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.contact-method .cm-desc  { font-size: 13px; color: var(--gray); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card-3);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-dark); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select option { background: #1e1e1e; color: var(--white); }

.form-submit {
  margin-top: 8px;
}
.form-submit .btn-primary { width: 100%; justify-content: center; }

/* =============================================
   AUTH PAGE
   ============================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 48px;
  width: 100%;
  max-width: 440px;
}
.auth-logo { margin-bottom: 32px; }
.auth-card h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.auth-card .auth-sub { color: var(--gray); font-size: 15px; margin-bottom: 32px; }
.auth-footer-text {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
}
.auth-footer-text a { color: var(--orange); }

/* =============================================
   AVIS PAGE
   ============================================= */
.avis-masonry {
  columns: 3;
  column-gap: 20px;
}
.avis-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* =============================================
   WA SCREENSHOT CAROUSEL (vrais screenshots)
   ============================================= */
.wa-carousel-section { padding: 80px 0 100px; }
.wa-carousel-title { font-size: clamp(28px,3.5vw,42px); font-weight: 800; margin-bottom: 48px; }
.wa-carousel-title .serif { color: var(--orange); }
.wa-carousel-track-wrap {
  overflow: hidden;
  padding: 20px 0 28px;
  margin: -20px 0 -28px;
}
.wa-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  padding: 8px 4px;
}
.wa-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding: 8px 4px;
}
.wa-grid .wa-screenshot-card { min-width: 0; }
@media (max-width: 700px) {
  .wa-grid .wa-screenshot-card { width: 100%; max-width: 320px; }
}

.wa-screenshot-card {
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  border-radius: 28px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #111;
  cursor: grab;
  position: relative;
  z-index: 1;
}
.wa-screenshot-card:hover { z-index: 10; }
.wa-screenshot-card:active { cursor: grabbing; }
.wa-screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  border-radius: 28px;
}
/* Placeholder si image non encore ajoutée */
.wa-screenshot-card .wa-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  background: var(--bg-card-2);
}
.wa-screenshot-card .wa-placeholder svg { width: 40px; height: 40px; color: var(--gray-dark); }

.wa-carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.wa-ctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  background: var(--bg-card);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.wa-ctrl-btn:hover { border-color: var(--orange); color: var(--orange); }
#waDots { display: flex; gap: 8px; align-items: center; }
.wa-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-card); border: none; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.wa-dot.active { background: var(--orange); width: 20px; border-radius: 4px; }

/* =============================================
   ICON WRAP (SVG icons)
   ============================================= */
.icon-svg {
  width: 44px; height: 44px;
  background: rgba(244,146,106,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.icon-svg svg { width: 22px; height: 22px; }
.icon-svg.lime { background: rgba(200,245,66,0.08); color: var(--lime); }

/* =============================================
   HERO ENTRY ANIMATIONS (above-the-fold)
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-entry {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.hero-entry.d1 { animation-delay: 0.08s; }
.hero-entry.d2 { animation-delay: 0.18s; }
.hero-entry.d3 { animation-delay: 0.30s; }
.hero-entry.d4 { animation-delay: 0.44s; }
.hero-entry.d5 { animation-delay: 0.56s; }

/* =============================================
   SOCIAL PROOF BAR
   ============================================= */
.social-proof {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.012);
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sp-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-item:first-child { padding-left: 0; }
.sp-item:last-child  { border-right: none; }
.sp-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.sp-num.orange { color: var(--orange); }
.sp-num.lime   { color: var(--lime); }
.sp-stars {
  color: #fbbf24;
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}
.sp-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  line-height: 1.4;
}

/* =============================================
   PROBLEM CARDS — redesign avec chiffres
   ============================================= */
.problem-stat-big {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.problem-stat-big.lime { color: var(--lime); }
.problem-stat-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 20px;
  display: block;
}

/* =============================================
   TESTIMONIAL STARS
   ============================================= */
.testimonial-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* =============================================
   CARD HOVER — glow intensifié
   ============================================= */
.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4),
              0 0 0 1px rgba(244,146,106,0.18),
              0 0 40px rgba(244,146,106,0.06);
}

/* =============================================
   BLOG
   ============================================= */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.blog-card-inner {
  padding: 36px 40px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-tag {
  display: inline-block;
  background: rgba(244,146,106,0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.blog-tag.tag-lime {
  background: rgba(200,245,66,0.10);
  color: var(--lime);
}
.blog-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.blog-title a {
  color: var(--white);
  transition: color 0.2s;
}
.blog-title a:hover { color: var(--orange); }
.blog-excerpt {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 24px;
}
.blog-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================================
   ACCESSIBILITY & UX
   ============================================= */

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--orange);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Keyboard focus ring — visible only for keyboard nav */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

/* Cursor: pointer on all interactive elements */
button, [role="button"], label[for],
.btn-primary, .btn-secondary, .btn-crm,
.contact-method, .faq-q, .wa-dot,
.testimonial-card, .tilt-card { cursor: pointer; }

/* Touch targets: minimum 44px */
.btn-primary, .btn-secondary, .btn-crm {
  min-height: 44px;
  touch-action: manipulation;
}
button { touch-action: manipulation; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-anim, .scroll-anim-left {
    opacity: 1 !important;
    transform: none !important;
  }
  .ticker-track { animation: none !important; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .navbar { padding: 16px 24px; }
  .navbar-links { display: none; }
  .hero h1 { font-size: 48px; letter-spacing: -0.02em; }
  .hero-image { height: 55%; opacity: 0.25; }
  .circuit-grid { grid-template-columns: 1fr; }
  .circuit-divider { padding: 16px 0; transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat-item:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .who-image-wrap { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-timeline::before { display: none; }
  .process-wave-svg { display: none; }
  .pricing-option-grid { grid-template-columns: 1fr; }
  .avis-masonry { columns: 1; }
  .wa-card { min-width: 300px; }
  .social-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sp-item { border-right: none; padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .sp-item:nth-child(3), .sp-item:nth-child(4) { border-bottom: none; }
}

/* =============================================
   ABOUT PAGE — text design (highlights, underline draw, word reveal)
   ============================================= */
/* Highlighter sweep (animates when its .scroll-anim parent becomes visible) */
.hl {
  font-weight: 600;
  color: var(--white);
  background-image: linear-gradient(transparent 58%, rgba(244,146,106,0.32) 58%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 0.85s cubic-bezier(0.22,1,0.36,1) 0.15s;
  padding: 0 2px;
  border-radius: 2px;
}
.hl.hl-lime { background-image: linear-gradient(transparent 58%, rgba(200,245,66,0.30) 58%); }
.scroll-anim.visible .hl,
.reveal-words.visible .hl { background-size: 100% 100%; }

/* Underline that draws in on scroll */
.ul-draw {
  position: relative;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.ul-draw::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s;
}
.ul-draw.ul-lime::after { background: var(--lime); }
.scroll-anim.visible .ul-draw::after,
.reveal-words.visible .ul-draw::after { transform: scaleX(1); }

/* Words appearing on scroll */
.reveal-words .rw {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.reveal-words.visible .rw { opacity: 1; transform: none; }

/* Founders caption on the about image */
.who-image-caption {
  position: absolute;
  left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: rgba(10,10,12,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.who-image-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200,245,66,0.18);
  flex-shrink: 0;
}
/* About image: ensure both founders stay centered */
.who-image-wrap img { object-position: center; }

/* =============================================
   ABOUT PAGE — "Notre histoire" cards
   ============================================= */
.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.histoire-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 40px 38px 38px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.4s, box-shadow 0.4s;
}
.histoire-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.7;
  transition: opacity 0.4s;
}
.histoire-card.lime::before { background: linear-gradient(90deg, var(--lime), transparent); }
.histoire-card::after {
  content: "\201C";
  position: absolute;
  top: 8px; right: 24px;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.10;
  pointer-events: none;
}
.histoire-card.lime::after { color: var(--lime); }
.histoire-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,146,106,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.histoire-card.lime:hover { border-color: rgba(200,245,66,0.35); }
.histoire-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.85;
  margin-bottom: 14px;
}
.histoire-card.lime .histoire-num { color: var(--lime); }
.histoire-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(244,146,106,0.10);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.histoire-card.lime .histoire-label {
  color: var(--lime);
  background: rgba(200,245,66,0.10);
}
.histoire-card p {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 760px) {
  .histoire-grid { grid-template-columns: 1fr; }
}
