/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a2340; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --blue: #1a3a6b;
  --blue-light: #2a5298;
  --blue-pale: #e8f0fe;
  --blue-mid: #3b6fd4;
  --white: #ffffff;
  --gray: #f5f7fc;
  --text: #1a2340;
  --text-muted: #6b7a99;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(26,58,107,0.10);
  --shadow-lg: 0 12px 48px rgba(26,58,107,0.16);
}

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-light { background: var(--gray); }
.section-tag { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-mid); background: var(--blue-pale); padding: 4px 14px; border-radius: 100px; margin-bottom: 16px; }
.section-tag.light { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.15); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--text); }
.section-sub { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-2 { transition-delay: 0.18s; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,107,0.3); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: all 0.3s ease; }
.nav.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(26,58,107,0.08); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.logo span { color: #60a5fa; }
.nav.scrolled .logo { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--blue); }
.btn-nav { background: var(--blue); color: #fff !important; padding: 8px 20px; border-radius: 100px; font-size: 0.85rem !important; }
.nav.scrolled .btn-nav { background: var(--blue); color: #fff !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .burger span { background: var(--blue); }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: #fff; z-index: 99; padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 8px 0; border-bottom: 1px solid #f0f0f0; display: block; }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: linear-gradient(135deg, #0f2557 0%, #1a3a6b 50%, #2a5298 100%); position: relative; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.07; }
.shape-1 { width: 600px; height: 600px; background: #60a5fa; top: -200px; right: -100px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; background: #93c5fd; bottom: -100px; left: -50px; animation: float 6s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; background: #bfdbfe; top: 40%; left: 30%; animation: float 10s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-text { color: #fff; }
.badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); padding: 6px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 500; margin-bottom: 24px; backdrop-filter: blur(8px); }
.hero-text h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.highlight { color: #60a5fa; }
.hero-text p { font-size: 1.1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; backdrop-filter: blur(8px); }
.stat-pill strong { color: #60a5fa; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup { position: relative; }
.phone-frame { width: 310px; height: 620px; background: #0f1f45; border-radius: 40px; padding: 16px; box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.1); position: relative; z-index: 2; }
.phone-screen { background: #f5f7fc; border-radius: 28px; height: 100%; overflow: hidden; }
.app-ui { padding: 20px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.app-header { display: flex; justify-content: space-between; align-items: center; }
.app-logo-sm { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--blue); }
.app-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); }
.app-greeting { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.app-subtitle { font-size: 0.75rem; color: var(--text-muted); margin-top: -8px; }
.app-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-card { padding: 12px; border-radius: 12px; font-size: 0.72rem; font-weight: 600; color: #fff; }
.app-card.blue { background: linear-gradient(135deg, #1a3a6b, #2a5298); }
.app-card.green { background: linear-gradient(135deg, #0d7a5f, #1a9e7a); }
.app-card-icon { font-size: 1.2rem; margin-bottom: 4px; }
.app-progress-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }
.app-progress-bar { height: 6px; background: #e0e7ff; border-radius: 100px; overflow: hidden; }
.app-progress-fill { height: 100%; width: 68%; background: linear-gradient(90deg, var(--blue), var(--blue-mid)); border-radius: 100px; animation: progress 2s ease-in-out infinite alternate; }
@keyframes progress { from { width: 55%; } to { width: 75%; } }
.app-quiz-btn { background: var(--blue); color: #fff; text-align: center; padding: 10px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; margin-top: auto; }
.phone-glow { position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); width: 200px; height: 80px; background: rgba(96,165,250,0.3); filter: blur(30px); border-radius: 50%; z-index: 1; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; display: block; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; margin-bottom: 20px; color: var(--text); }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.mission-vision { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.mv-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid #e8f0fe; border-radius: var(--radius); padding: 20px; }
.mv-icon { width: 44px; height: 44px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--blue-pale); border-radius: 12px; color: var(--blue); }
.mv-card strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--blue); margin-bottom: 4px; }
.mv-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.founder-quote { border-left: 3px solid var(--blue-mid); padding-left: 20px; font-style: italic; color: var(--text); font-size: 1rem; line-height: 1.6; }
.founder-quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.founder-card { position: relative; }
.founder-card img { border-radius: 20px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.founder-badge { position: absolute; bottom: -20px; left: 20px; right: 20px; background: #fff; border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow); }
.founder-badge strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--blue); }
.founder-badge span { font-size: 0.82rem; color: var(--text-muted); }

/* ===== PROBLEM ===== */
.problem { padding: 100px 0; background: linear-gradient(135deg, #0f2557 0%, #1a3a6b 100%); color: #fff; }
.problem .section-header h2 { color: #fff; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.problem-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: transform 0.3s, background 0.3s; }
.problem-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.problem-number { font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800; color: #60a5fa; margin-bottom: 8px; }
.problem-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.problem-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.problem-tags span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); padding: 8px 18px; border-radius: 100px; font-size: 0.85rem; }

/* ===== PLATFORMS ===== */
.platforms { padding: 100px 0; }
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 20px;
  align-items: stretch;
}
.platform-card { background: #fff; border: 1px solid #e8f0fe; border-radius: 24px; padding: 32px; transition: transform 0.3s, box-shadow 0.3s; min-width: 420px; max-width: 560px; height: 100%; box-sizing: border-box; overflow: hidden; }
.platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.platform-card-accent { background: linear-gradient(135deg, #1a3a6b, #2a5298); color: #fff; border-color: transparent; }
.platform-icon { font-size: 2.5rem; margin-bottom: 16px; }
.platform-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: var(--blue-pale); color: var(--blue); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.platform-card-accent .platform-badge { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.platform-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.platform-target { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
.platform-card-accent .platform-target { color: rgba(255,255,255,0.7); }
.platform-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.platform-features li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text-muted); align-items: flex-start; overflow: hidden; }
.platform-features li span:last-child { overflow: hidden; text-overflow: ellipsis; word-break: break-word; }
.platform-card-accent .platform-features li { color: rgba(255,255,255,0.8); }
.platform-features li span { color: var(--blue-mid); font-weight: 700; flex-shrink: 0; }
.platform-card-accent .platform-features li span { color: #93c5fd; }
.platform-stores { display: flex; gap: 12px; flex-wrap: nowrap; }
.store-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; transition: all 0.2s; flex: 1; white-space: nowrap; }
.store-btn:hover { background: var(--blue-light); transform: translateY(-2px); }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: linear-gradient(135deg, #0f2557 0%, #1a3a6b 100%); }
.features .section-header h2 { color: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px 24px; transition: all 0.3s; }
.feature-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Couleurs par carte */
.feature-card:nth-child(1) .feature-icon { background: rgba(79,142,247,0.2); box-shadow: 0 0 18px rgba(79,142,247,0.5), 0 0 6px rgba(79,142,247,0.3); color: #4f8ef7; }
.feature-card:nth-child(2) .feature-icon { background: rgba(167,139,250,0.2); box-shadow: 0 0 18px rgba(167,139,250,0.5), 0 0 6px rgba(167,139,250,0.3); color: #a78bfa; }
.feature-card:nth-child(3) .feature-icon { background: rgba(52,211,153,0.2); box-shadow: 0 0 18px rgba(52,211,153,0.5), 0 0 6px rgba(52,211,153,0.3); color: #34d399; }
.feature-card:nth-child(4) .feature-icon { background: rgba(251,146,60,0.2);  box-shadow: 0 0 18px rgba(251,146,60,0.5),  0 0 6px rgba(251,146,60,0.3);  color: #fb923c; }

/* Shimmer */
.feature-icon::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  animation: featShimmer 3s ease-in-out infinite;
}
.feature-card:nth-child(2) .feature-icon::after { animation-delay: 0.75s; }
.feature-card:nth-child(3) .feature-icon::after { animation-delay: 1.5s; }
.feature-card:nth-child(4) .feature-icon::after { animation-delay: 2.25s; }

@keyframes featShimmer {
  0%   { left: -60%; }
  50%  { left: 130%; }
  100% { left: 130%; }
}

.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h4 { font-family: 'Poppins', sans-serif; font-weight: 600; color: #fff; margin-bottom: 10px; font-size: 1rem; }
.feature-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===== STATS ===== */
.stats {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://res.cloudinary.com/drknixj4y/image/upload/v1775930049/WhatsApp_Image_2026-04-11_at_11.23.10_AM_1_xvus77.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.3);
  transform: scale(1.06);
  z-index: 0;
}
.stats-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 55, 0.55);
}
.stats .container {
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ===== HOW IT WORKS ===== */
.how { padding: 100px 0; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step { text-align: center; padding: 0 16px; }
.step-num { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--blue-pale); line-height: 1; margin-bottom: 12px; }
.step h4 { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--blue); margin-bottom: 8px; font-size: 0.95rem; }
.step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.step-arrow { font-size: 1.5rem; color: var(--blue-mid); opacity: 0.4; padding-top: 8px; align-self: flex-start; margin-top: 16px; }

/* ===== IMPACT ===== */
.impact { padding: 100px 0; background: linear-gradient(135deg, #0f2557 0%, #1a3a6b 100%); }
.impact .section-header h2 { color: #fff; }
.impact .section-sub { color: rgba(255,255,255,0.65); }
.crtv-block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 36px; margin-bottom: 60px; }
.crtv-badge { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; padding: 6px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.crtv-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.crtv-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.crtv-thumb iframe,
.crtv-thumb video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.crtv-text h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.crtv-text p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; }
.terrain-block { margin-bottom: 60px; }
.terrain-block h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.terrain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.terrain-img { border-radius: 12px; overflow: hidden; }
.terrain-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.4s; }
.terrain-img:hover img { transform: scale(1.05); }
.terrain-img span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); padding: 8px 4px; }
.partners-block h3 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 24px; }

/* ===== PARTNERS SECTION ===== */
.partners-section { padding: 80px 0; background: #fff; }
.partners-section .section-header { text-align: center; margin-bottom: 48px; }
.partners-section .section-tag { color: var(--blue); }
.partners-section h2 { color: var(--navy); }
.partners-grid { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; }
.partner-logo { background: #f5f7ff; border: 1px solid #e0e7ff; border-radius: 12px; padding: 20px 32px; transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer; }
.partner-logo:hover { background: #e8eeff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,82,152,0.12); }
.partner-logo { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 16px 24px; transition: all 0.3s; position: relative; overflow: hidden; cursor: pointer; }
.partner-logo:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.partner-logo img { opacity: 0.85; width: 140px; height: 60px; object-fit: contain; transition: opacity 0.3s, transform 0.3s; display: block; }
.partner-logo:hover img { opacity: 0.1; transform: scale(0.9); }

.partner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 12px;
  text-align: center;
}
.partner-logo:hover .partner-overlay {
  opacity: 1;
  transform: translateY(0);
}
.partner-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.partner-founder {
  font-size: 0.75rem;
  color: rgba(10,20,55,0.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid #e8f0fe; border-radius: 20px; padding: 36px 28px; position: relative; transition: all 0.3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote { font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 800; color: var(--blue-pale); line-height: 1; margin-bottom: 8px; }
.testi-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-weight: 600; color: var(--text); font-size: 0.9rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FOUNDER SECTION ===== */
.founder-section { padding: 100px 0; background: var(--gray); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.founder-img-wrap img { border-radius: 20px; width: 100%; box-shadow: var(--shadow-lg); }
.founder-bio h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); margin-bottom: 8px; }
.founder-title { font-size: 0.9rem; color: var(--blue-mid); font-weight: 600; margin-bottom: 20px; }
.founder-bio p { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.founder-quote-dark { border-left: 3px solid var(--blue); padding-left: 20px; font-style: italic; color: var(--text); font-size: 1rem; line-height: 1.6; }

/* ===== CTA FINAL ===== */
.cta-final { padding: 100px 0; background: linear-gradient(135deg, #0f2557 0%, #1a3a6b 60%, #2a5298 100%); position: relative; overflow: hidden; text-align: center; }
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(96,165,250,0.08); top: -150px; right: -100px; }
.cta-shape-2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(96,165,250,0.06); bottom: -100px; left: -80px; }
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.cta-final p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #080f1f; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-white { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; margin-top: 12px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.social-links a:hover { background: var(--blue-mid); color: #fff; transform: translateY(-2px); }
.footer-links h5 { font-family: 'Poppins', sans-serif; font-weight: 600; color: #fff; margin-bottom: 16px; font-size: 0.9rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: flex; justify-content: center; margin-top: 40px; }
  .phone-mockup { transform: scale(0.75); transform-origin: top center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: flex; justify-content: center; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }  .crtv-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .short-card { justify-self: center; }
  .plat-duo, .plat-duo-reverse { flex-direction: column; align-items: center; gap: 32px; }
  .plat-duo-arrow { transform: rotate(90deg); }
  .plat-phone-frame, .plat-duo-reverse .plat-phone-frame { transform: none; }
  .plat-duo-card { width: 100%; }
}

@media (max-width: 900px) {
  .plat-full-wrap { flex-direction: column; }
  .plat-section { padding: 48px 24px; }
  .plat-section-inner { flex-direction: column; align-items: center; max-width: 100%; gap: 20px; }
  .plat-arrow-link { transform: rotate(90deg); }
  .plat-mobile-frame { transform: none !important; width: 200px; height: 400px; }
  .plat-card { min-width: unset; width: 100%; max-width: 480px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-right { gap: 8px; }

  /* Sections padding */
  .about, .problem, .platforms, .features, .stats,
  .how, .impact, .testimonials, .team-section, .faq { padding: 64px 0; }

  /* Container */
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-visual { display: flex; justify-content: center; margin-top: 32px; }
  .phone-mockup { transform: scale(0.65); transform-origin: top center; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 8px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: flex; justify-content: center; }
  .about-text { text-align: center; }
  .mission-vision { text-align: left; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-tags { flex-wrap: wrap; justify-content: center; gap: 8px; }

  /* Platforms */
  .platforms-grid { grid-template-columns: 1fr; gap: 24px; }
  .platform-card { min-width: unset; width: 100%; }
  .short-card { width: 100%; display: flex; justify-content: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* How */
  .steps-new { flex-direction: column; align-items: center; gap: 16px; }
  .step-new { max-width: 100%; width: 100%; }
  .step-connector { transform: rotate(90deg); width: 40px; }

  /* Impact */
  .crtv-inner { grid-template-columns: 1fr; }
  .terrain-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .terrain-filters { flex-wrap: wrap; gap: 8px; }
  .terrain-gallery { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testi-card-sm { flex: 0 0 240px; }
  .testi-track-wrap { padding-left: 12px; padding-right: 12px; }

  /* Team */
  .team-grid-new { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* FAQ */
  .faq-list { max-width: 100%; }

  /* CTA */
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-final h2 { font-size: 1.6rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom p { font-size: 0.78rem; text-align: center; }
  .footer-contact ul { gap: 10px; }
}

@media (max-width: 640px) {
  .terrain-gallery { grid-template-columns: 1fr 1fr; }
  .terrain-header { flex-direction: column; align-items: flex-start; }
  .plat-mobile-frame { width: 180px; height: 360px; }
  .short-phone { width: 180px; }
  .partner-logo img { width: 110px; height: 50px; }
}

@media (max-width: 480px) {
  /* Typography */
  h2 { font-size: 1.5rem !important; }
  .section-header { padding: 0 4px; }
  .container { padding: 0 16px; }

  /* Sections padding */
  .about, .problem, .platforms, .features, .stats,
  .how, .impact, .testimonials, .team-section, .faq { padding: 48px 0; }

  /* Hero */
  .hero-text h1 { font-size: 1.6rem; }
  .hero-stats { gap: 6px; }
  .stat-pill { font-size: 0.75rem; padding: 5px 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }

  /* Platforms */
  .platform-stores { flex-direction: column; gap: 8px; }
  .store-btn { flex: unset; width: 100%; justify-content: center; }
  .plat-card h3 { font-size: 1.4rem; }
  .plat-mobile-frame { width: 160px; height: 320px; }
  .plat-btns { flex-direction: column; gap: 8px; }
  .plat-btn-new { width: 100%; justify-content: center; }

  /* Team */
  .team-grid-new { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-card-new-info h4 { font-size: 0.82rem; }
  .team-card-new-info span { font-size: 0.68rem; }

  /* Terrain gallery */
  .terrain-gallery { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testi-track-wrap { padding-left: 12px; padding-right: 12px; }
  .testi-card-sm { flex: 0 0 220px; }

  /* How */
  .step-new { padding: 24px 16px; }

  /* CTA */
  .cta-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .cta-final h2 { font-size: 1.4rem; }

  /* WhatsApp */
  .whatsapp-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }

  /* Lang toggle */
  .lang-toggle { padding: 4px 8px; font-size: 0.75rem; }

  /* About */
  .founder-card { max-width: 260px; margin: 0 auto; }
  .mv-card { padding: 14px; gap: 12px; }
}

/* ===== GRAND ECRAN > 1400px ===== */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .plat-section-inner { max-width: 720px; }
}
@media (min-width: 1600px) {
  .container { max-width: 1480px; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #3b6fd4);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== CURSOR GLOW — désactivé ===== */
.cursor-glow { display: none; }
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===== HERO PARTICLES CANVAS ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-inner, .hero-text, .hero-visual { position: relative; z-index: 1; }

/* ===== STAGGERED CHILDREN ===== */
.problem-card, .feature-card, .stat-card, .testi-card,
.terrain-img, .partner-logo, .platform-card, .mv-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
/* stagger animation quand le parent .fade-up devient visible */
.fade-up.visible .problem-card,
.fade-up.visible .feature-card,
.fade-up.visible .stat-card,
.fade-up.visible .testi-card,
.fade-up.visible .terrain-img,
.fade-up.visible .partner-logo,
.fade-up.visible .platform-card,
.fade-up.visible .mv-card {
  animation: cardReveal 0.5s ease both;
}
.fade-up.visible .problem-card:nth-child(1),
.fade-up.visible .feature-card:nth-child(1),
.fade-up.visible .stat-card:nth-child(1),
.fade-up.visible .testi-card:nth-child(1),
.fade-up.visible .platform-card:nth-child(1),
.fade-up.visible .mv-card:nth-child(1) { animation-delay: 0.05s; }
.fade-up.visible .problem-card:nth-child(2),
.fade-up.visible .feature-card:nth-child(2),
.fade-up.visible .stat-card:nth-child(2),
.fade-up.visible .testi-card:nth-child(2),
.fade-up.visible .platform-card:nth-child(2),
.fade-up.visible .mv-card:nth-child(2) { animation-delay: 0.15s; }
.fade-up.visible .problem-card:nth-child(3),
.fade-up.visible .feature-card:nth-child(3),
.fade-up.visible .stat-card:nth-child(3),
.fade-up.visible .testi-card:nth-child(3),
.fade-up.visible .platform-card:nth-child(3),
.fade-up.visible .mv-card:nth-child(3) { animation-delay: 0.25s; }
.fade-up.visible .problem-card:nth-child(4),
.fade-up.visible .feature-card:nth-child(4),
.fade-up.visible .stat-card:nth-child(4),
.fade-up.visible .mv-card:nth-child(4) { animation-delay: 0.35s; }
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.child-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== FLIP-IN FOR PROBLEM NUMBERS ===== */
@keyframes flipIn {
  0%   { opacity: 0; transform: rotateX(-90deg) scale(0.8); }
  60%  { transform: rotateX(10deg) scale(1.05); }
  100% { opacity: 1; transform: rotateX(0deg) scale(1); }
}
.problem-number.flip-in {
  animation: flipIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ===== PHONE MOCKUP FLOAT ===== */
.phone-mockup {
  animation: phonefloat 4s ease-in-out infinite;
}
@keyframes phonefloat {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}

/* ===== HERO BADGE PULSE ===== */
.badge {
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(96,165,250,0); }
  50%       { box-shadow: 0 0 0 8px rgba(96,165,250,0.12); }
}

/* ===== STAT CARD GLOW ON HOVER ===== */
.stat-card {
  transition: transform 0.3s ease;
  border-radius: var(--radius);
}
.stat-card:hover {
  transform: translateY(-4px);
}
.stat-card:hover .stat-number {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PLATFORM CARD SHINE ===== */
.platform-card {
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.platform-card:hover::before {
  left: 130%;
}
.platform-card { position: relative; }

/* ===== FEATURE CARD ICON BOUNCE ===== */
.feature-card:hover .feature-icon {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes iconBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.35) rotate(-8deg); }
  100% { transform: scale(1); }
}

/* ===== TESTI CARD QUOTE ANIMATE ===== */
.testi-card:hover .testi-quote {
  color: var(--blue-pale);
  transform: scale(1.1);
  transition: transform 0.3s ease, color 0.3s ease;
}
.testi-quote { transition: transform 0.3s ease, color 0.3s ease; }

/* ===== STEP NUMBER GLOW ===== */
.step:hover .step-num {
  color: var(--blue);
  transition: color 0.3s ease;
}
.step-num { transition: color 0.3s ease; }

/* ===== CRTV BLOCK GLOW ===== */
.crtv-block {
  transition: box-shadow 0.4s ease;
}
.crtv-block:hover {
  box-shadow: 0 0 60px rgba(96,165,250,0.12);
}

/* ===== PARTNER LOGO HOVER ===== */
.partner-logo {
  transition: transform 0.3s ease, background 0.3s ease;
}
.partner-logo:hover {
  transform: translateY(-4px) scale(1.04);
}

/* ===== STORE BTN RIPPLE ===== */
.store-btn {
  position: relative;
  overflow: hidden;
}
.store-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.store-btn:hover::after {
  transform: scaleX(1);
}

/* ===== HERO WAVE ANIMATE ===== */
.hero-wave svg path {
  animation: waveMove 6s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes waveMove {
  0%   { d: path("M0 40 C360 80 1080 0 1440 40 L1440 80 L0 80 Z"); }
  100% { d: path("M0 55 C400 10 1000 70 1440 30 L1440 80 L0 80 Z"); }
}

/* ===== FOUNDER CARD REVEAL ===== */
.founder-img-wrap img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.founder-img-wrap:hover img {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 24px 64px rgba(26,58,107,0.25);
}

/* ===== CTA FINAL PULSE BUTTON ===== */
.cta-final .btn-white {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
}

/* ===== SOCIAL LINKS SPIN ===== */
.social-links a:hover svg {
  animation: spinOnce 0.4s ease;
}
@keyframes spinOnce {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== MOBILE: disable tilt & cursor ===== */
@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ============================================
   NOUVELLES ANIMATIONS — PACK 2
   ============================================ */

/* ===== TYPEWRITER HERO HIGHLIGHT ===== */
.highlight {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 0%; height: 4px;
  background: linear-gradient(90deg, #60a5fa, #93c5fd);
  border-radius: 2px;
  animation: underlineDraw 1.2s 0.8s cubic-bezier(0.77,0,0.18,1) forwards;
}
@keyframes underlineDraw {
  to { width: 100%; }
}

/* ===== GLITCH LOGO — désactivé ===== */
@keyframes glitch {
  0%   { text-shadow: 2px 0 #60a5fa, -2px 0 #f87171; }
  25%  { text-shadow: -2px 0 #60a5fa, 2px 0 #f87171; clip-path: inset(20% 0 60% 0); }
  50%  { text-shadow: 2px 2px #60a5fa, -2px -2px #f87171; }
  75%  { text-shadow: -2px 0 #60a5fa, 2px 0 #f87171; clip-path: inset(60% 0 10% 0); }
  100% { text-shadow: none; clip-path: none; }
}

/* ===== HERO STAT PILLS SLIDE IN ===== */
.stat-pill {
  animation: pillSlide 0.5s ease both;
}
.stat-pill:nth-child(1) { animation-delay: 1.0s; }
.stat-pill:nth-child(2) { animation-delay: 1.2s; }
.stat-pill:nth-child(3) { animation-delay: 1.4s; }
@keyframes pillSlide {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== HERO CTA BUTTONS STAGGER ===== */
.hero-cta .btn:nth-child(1) { animation: btnAppear 0.6s 0.6s ease both; }
.hero-cta .btn:nth-child(2) { animation: btnAppear 0.6s 0.8s ease both; }
@keyframes btnAppear {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== MORPHING BACKGROUND SHAPES ===== */
.shape-1 {
  animation: morphShape1 12s ease-in-out infinite alternate !important;
}
.shape-2 {
  animation: morphShape2 9s ease-in-out infinite alternate !important;
}
.shape-3 {
  animation: morphShape3 15s ease-in-out infinite alternate !important;
}
@keyframes morphShape1 {
  0%   { border-radius: 50%; transform: translateY(0) scale(1); }
  50%  { border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%; transform: translateY(-30px) scale(1.05); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translateY(-10px) scale(0.95); }
}
@keyframes morphShape2 {
  0%   { border-radius: 50%; transform: translateY(0) rotate(0deg); }
  100% { border-radius: 30% 70% 50% 50% / 40% 60% 40% 60%; transform: translateY(-20px) rotate(45deg); }
}
@keyframes morphShape3 {
  0%   { border-radius: 50%; opacity: 0.07; }
  50%  { border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%; opacity: 0.12; }
  100% { border-radius: 50%; opacity: 0.07; }
}

/* ===== APP SCREEN NOTIFICATIONS ===== */
.app-notif {
  position: absolute;
  right: -20px;
  top: 60px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: notifPop 0.5s 2s cubic-bezier(0.34,1.56,0.64,1) both, notifFloat 3s 2.5s ease-in-out infinite;
  z-index: 10;
}
.app-notif-2 {
  top: auto;
  bottom: 160px;
  right: -24px;
  animation-delay: 3s, 3.5s;
  background: var(--blue);
  color: #fff;
}
@keyframes notifPop {
  from { opacity: 0; transform: scale(0.5) translateX(20px); }
  to   { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes notifFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* ===== SECTION TAG SHIMMER ===== */
.section-tag {
  position: relative;
  overflow: hidden;
}
.section-tag::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s 1s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ===== PROBLEM CARD BORDER GLOW ===== */
.problem-card {
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(96,165,250,0.3), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.problem-card:hover::after { opacity: 1; }

/* ===== FEATURE CARD GRADIENT BORDER ===== */
.feature-card {
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(96,165,250,0.4), transparent, rgba(59,111,212,0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.feature-card:hover::before { opacity: 1; }

/* ===== TYPING CURSOR ON HERO P ===== */
.hero-text > p {
  border-right: 2px solid transparent;
  animation: cursorBlink 1s step-end infinite;
  animation-delay: 2s;
}
@keyframes cursorBlink {
  0%, 100% { border-color: transparent; }
  50%       { border-color: rgba(96,165,250,0.6); }
}

/* ===== TESTI CARD SLIDE FROM SIDES ===== */
.testi-card:nth-child(1) { --slide-from: -40px; }
.testi-card:nth-child(2) { --slide-from: 0px; }
.testi-card:nth-child(3) { --slide-from: 40px; }
.testi-card.child-visible {
  animation: testiSlide 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes testiSlide {
  from { opacity: 0; transform: translateX(var(--slide-from, 0)) translateY(20px); }
  to   { opacity: 1; transform: translateX(0) translateY(0); }
}

/* ===== STEP NUMBER COUNT UP VISUAL ===== */
.step-num {
  background: linear-gradient(135deg, var(--blue-pale), #dbeafe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}
.step:hover .step-num {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  -webkit-background-clip: text;
  background-clip: text;
  transform: scale(1.15);
  display: inline-block;
}

/* ===== CRTV PLAY BUTTON RIPPLE ===== */
.play-btn {
  position: relative;
}
.play-btn::before,
.play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  animation: rippleOut 2s ease-out infinite;
}
.play-btn::after { animation-delay: 1s; }
@keyframes rippleOut {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===== FOUNDER QUOTE TYPEWRITER ===== */
.founder-quote-dark {
  position: relative;
  overflow: hidden;
}
.founder-quote-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
  animation: quoteLine 0.4s ease both;
}
@keyframes quoteLine {
  from { height: 0; }
  to   { height: 100%; }
}

/* terrain hover — overlay simple */
.terrain-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,58,107,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 14px;
}
.terrain-img:hover::before { opacity: 1; }

/* ===== FOOTER BRAND LOGO GLOW — désactivé ===== */
.footer-brand .logo-white { pointer-events: none; }
.footer-brand .logo-white:hover,
.footer-brand .logo-white *:hover { transform: none !important; text-shadow: none !important; animation: none !important; }


/* ===== HERO BADGE ENTRANCE ===== */
.badge {
  animation: badgeEntrance 0.7s 0.2s cubic-bezier(0.34,1.56,0.64,1) both, badgePulse 3s 1s ease-in-out infinite;
}
@keyframes badgeEntrance {
  from { opacity: 0; transform: translateY(-12px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== PLATFORM CARD ACCENT SHIMMER ===== */
.platform-card-accent {
  background-size: 200% 200%;
  background-image: linear-gradient(135deg, #1a3a6b 0%, #2a5298 50%, #1a3a6b 100%);
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



/* ===== NAV LINK UNDERLINE SLIDE ===== */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #60a5fa;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ===== MOBILE: reduce heavy animations ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== TEAM SECTION ===== */
.team-section { padding: 100px 0; background: var(--gray); }

/* Fondateur spotlight */
.founder-spotlight {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 72px;
  box-shadow: var(--shadow);
  border: 1px solid #e8f0fe;
}
.founder-spot-img {
  position: relative;
}
.founder-spot-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.founder-spot-img:hover img { transform: scale(1.02) translateY(-4px); }
.spot-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.founder-spot-bio h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.founder-spot-bio .founder-title {
  font-size: 0.9rem;
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: 18px;
}
.founder-spot-bio p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.member-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.member-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
.member-socials a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8f0fe;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-card-img {
  position: relative;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img {
  transform: scale(1.07);
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.team-card:hover .team-card-overlay { opacity: 1; }
.member-socials-overlay {
  display: flex;
  gap: 8px;
}
.member-socials-overlay a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.member-socials-overlay a:hover { background: rgba(255,255,255,0.35); }
.team-card-info {
  padding: 20px;
}
.team-card-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.team-card-info span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-card-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive team */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-spotlight { grid-template-columns: 1fr; gap: 32px; }
  .founder-spot-img { max-width: 280px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .founder-spotlight { padding: 28px; }
}
@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== TERRAIN GALLERY ===== */
.terrain-block { margin-bottom: 60px; }

.terrain-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.terrain-block h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.terrain-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tfilter {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.tfilter:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.tfilter.active {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  font-weight: 600;
}

.terrain-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.terrain-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation: tImgIn 0.45s ease both;
}
@keyframes tImgIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.terrain-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.terrain-img:hover img { transform: scale(1.04); }

.terrain-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,25,60,0.88) 0%, transparent 100%);
  padding: 28px 16px 14px;
}
.terrain-tag {
  display: inline-block;
  background: rgba(96,165,250,0.2);
  border: 1px solid rgba(96,165,250,0.35);
  color: #93c5fd;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 9px;
  border-radius: 100px;
  margin-bottom: 5px;
}
.terrain-caption p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Pagination */
.terrain-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.tpage-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.tpage-btn:hover:not(.disabled) {
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.tpage-btn.active {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  font-weight: 700;
}
.tpage-btn.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.tpage-dots {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  padding: 0 4px;
  line-height: 36px;
}
.tpage-count {
  margin-left: auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* Responsive */
@media (max-width: 640px) {
  .terrain-gallery { grid-template-columns: 1fr 1fr; }
  .terrain-header { flex-direction: column; align-items: flex-start; }
  .tpage-count { display: none; }
}

/* ===== TERRAIN HOVER INFO ===== */
.terrain-hover-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 60, 0.92) 0%, rgba(10, 25, 60, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.terrain-img:hover .terrain-hover-info {
  opacity: 1;
  transform: translateY(0);
}
.terrain-hover-info .terrain-tag {
  margin-bottom: 6px;
  align-self: flex-start;
}
.terrain-hover-info p {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* ===== SHORTS ===== */
.short-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.short-phone {
  width: 220px;
  background: #0a0f1e;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 32px 72px rgba(0,0,0,0.55), inset 0 0 0 1.5px rgba(255,255,255,0.1);
  position: relative;
  animation: shortFloat 4s ease-in-out infinite;
}
.short-card:nth-child(2) .short-phone { animation-delay: 0.5s; }
@keyframes shortFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.short-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  background: #000;
}

.short-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: none;
}

/* Animated gradient background */
.short-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0f2557, #1a3a6b, #2a5298, #1a3a6b);
  background-size: 300% 300%;
  animation: shortBgMove 4s ease infinite;
}
.short-bg-anim-2 {
  background: linear-gradient(160deg, #0d3b2e, #0f6b4a, #1a9e7a, #0f6b4a);
  background-size: 300% 300%;
  animation: shortBgMove 4s 0.5s ease infinite;
}
@keyframes shortBgMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.short-content {
  position: absolute;
  inset: 0;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.short-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: -0.3px;
}
.short-logo-2 { font-size: 0.72rem; }

.short-lines { display: flex; flex-direction: column; gap: 4px; }
.short-line {
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  animation: shortLinePulse 2s ease-in-out infinite alternate;
}
.short-line-sm { width: 60%; animation-delay: 0.3s; }
@keyframes shortLinePulse {
  from { opacity: 0.15; }
  to   { opacity: 0.35; }
}

.short-ui-card {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 8px;
  animation: shortCardSlide 0.6s ease both;
}
.short-ui-card:nth-child(4) { animation-delay: 0.15s; }
.short-ui-card:nth-child(5) { animation-delay: 0.3s; }
@keyframes shortCardSlide {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.short-ui-icon { font-size: 0.85rem; }
.short-ui-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.short-ui-bar {
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  animation: shortBarGrow 1.5s ease-in-out infinite alternate;
}
.short-ui-bar-sm { width: 55%; animation-delay: 0.2s; }
@keyframes shortBarGrow {
  from { opacity: 0.2; }
  to   { opacity: 0.5; }
}

.short-progress {
  margin-top: auto;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.short-progress-fill {
  height: 100%;
  width: 0%;
  background: #60a5fa;
  border-radius: 2px;
  animation: shortProgressRun 6s linear infinite;
}
.short-progress-fill-2 {
  background: #34d399;
  animation-delay: 1s;
}
@keyframes shortProgressRun {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* Paused state */
.short-paused .short-bg-anim,
.short-paused .short-bg-anim-2 { animation-play-state: paused; }
.short-paused .short-progress-fill,
.short-paused .short-progress-fill-2 { animation-play-state: paused; }
.short-paused .short-line { animation-play-state: paused; }
.short-paused .short-ui-bar { animation-play-state: paused; }

.short-overlay-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 20px 10px 10px;
  z-index: 2;
}
.short-tag-pill {
  display: inline-block;
  background: rgba(96,165,250,0.25);
  border: 1px solid rgba(96,165,250,0.4);
  color: #93c5fd;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 100px;
  margin-bottom: 4px;
}
.short-tag-pill-2 {
  background: rgba(52,211,153,0.2);
  border-color: rgba(52,211,153,0.4);
  color: #6ee7b7;
}
.short-overlay-label p {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Controls */
.short-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.short-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.short-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.1);
}

.short-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1100px) {
  .platforms-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .short-card { justify-self: center; }
}
@media (max-width: 640px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .short-phone { width: 180px; }
}

/* ===== VIDEO NATIVE IN SHORT ===== */
.short-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

/* ===== CRTV LANG TOGGLE ===== */
.crtv-video-wrap { display: flex; flex-direction: column; gap: 12px; }

.crtv-lang-toggle {
  display: flex;
  gap: 8px;
}
.lang-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.lang-btn.active {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item { border: 1px solid #e8f0fe; border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
}

.faq-icon { flex-shrink: 0; color: var(--blue); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ===== TEAM NEW MODEL ===== */
.team-section { padding: 100px 0; background: #fff; }

.team-title-bar {
  width: 48px; height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px auto 0;
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.team-card-new {
  display: flex;
  flex-direction: column;
  animation: teamFadeUp 0.6s ease both;
}

.team-card-new-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3/4;
  max-height: 280px;
}

.team-card-new-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.team-card-new:hover .team-card-new-img img {
  transform: scale(1.06);
}

.team-card-new-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card-new:hover .team-card-new-overlay {
  opacity: 1;
}

.team-socials {
  display: flex;
  gap: 10px;
}

.team-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}

.team-socials a:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.team-card-new-info {
  padding: 14px 4px 0;
  text-align: center;
}

.team-card-new-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card-new-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes teamFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.team-card-new:nth-child(1) { animation-delay: 0.05s; }
.team-card-new:nth-child(2) { animation-delay: 0.1s; }
.team-card-new:nth-child(3) { animation-delay: 0.15s; }
.team-card-new:nth-child(4) { animation-delay: 0.2s; }
.team-card-new:nth-child(5) { animation-delay: 0.25s; }
.team-card-new:nth-child(6) { animation-delay: 0.3s; }
.team-card-new:nth-child(7) { animation-delay: 0.35s; }
.team-card-new:nth-child(8) { animation-delay: 0.4s; }

@media (max-width: 1100px) {
  .team-grid-new { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-grid-new { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .team-grid-new { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ===== HOW IT WORKS — REDESIGN ===== */
.how {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #0f1f45 0%, #1a3a6b 50%, #0f2a55 100%);
  overflow: hidden;
}

.how-bg { position: absolute; inset: 0; pointer-events: none; }
.how-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.how-shape-1 { width: 500px; height: 500px; background: #4f8ef7; top: -150px; left: -100px; }
.how-shape-2 { width: 400px; height: 400px; background: #a78bfa; bottom: -100px; right: -80px; }

.how .section-header h2 { color: #fff; }

.steps-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  flex-wrap: wrap;
}

.step-new {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
}

.step-new:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-new-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c, #4f8ef7);
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 18px color-mix(in srgb, var(--c, #4f8ef7) 40%, transparent),
              0 0 6px color-mix(in srgb, var(--c, #4f8ef7) 20%, transparent);
  position: relative;
  overflow: hidden;
}

/* Effet shimmer */
.step-new-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: iconShimmer 3s ease-in-out infinite;
}

@keyframes iconShimmer {
  0%   { left: -60%; }
  50%  { left: 130%; }
  100% { left: 130%; }
}

.step-new:hover .step-new-icon {
  background: color-mix(in srgb, var(--c, #4f8ef7) 20%, transparent);
  transform: scale(1.1);
  box-shadow: 0 0 28px color-mix(in srgb, var(--c, #4f8ef7) 60%, transparent),
              0 0 10px color-mix(in srgb, var(--c, #4f8ef7) 30%, transparent);
}

.step-new-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 12px; right: 16px;
  line-height: 1;
  pointer-events: none;
}

.step-new h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.step-new p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  padding: 0 4px;
}

.step-connector svg { width: 100%; height: auto; }

@media (max-width: 900px) {
  .steps-new { flex-direction: column; gap: 16px; }
  .step-connector { transform: rotate(90deg); width: 40px; }
  .step-new { max-width: 100%; width: 100%; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.lightbox.active .lb-content {
  transform: scale(1);
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.lb-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-top: 14px;
  text-align: center;
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }

/* Icône zoom sur les images terrain */
.terrain-img { cursor: pointer; }
.terrain-zoom-icon {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.terrain-img:hover .terrain-zoom-icon { opacity: 1; }

/* ===== TESTIMONIALS SLIDER ===== */
.testi-track-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.testi-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px;
  flex: 1;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card-sm {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,58,107,0.1);
}
.testi-card-sm p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.testi-author-sm {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testi-author-sm strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.testi-author-sm span  { font-size: 0.75rem; color: var(--text-muted); }

.testi-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid #e8f0fe;
  background: #fff;
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.testi-arrow:hover { background: var(--blue); color: #fff; }

/* ===== LANG TOGGLE ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 12px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.lang-toggle:hover { background: rgba(255,255,255,0.2); }

.nav.scrolled .lang-toggle {
  border-color: rgba(26,58,107,0.3);
  color: var(--blue);
  background: rgba(26,58,107,0.06);
}
.nav.scrolled .lang-toggle:hover { background: rgba(26,58,107,0.12); }

/* ===== ABOUT IMAGE MOBILE ===== */
@media (max-width: 768px) {
  .founder-card { max-width: 280px; margin: 0 auto; }
  .founder-card img { max-height: 320px; object-fit: cover; }
}

/* ===== LOGO IMAGE ===== */
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { width: 44px; height: 44px; object-fit: contain; }

/* ===== PLATFORM ARROWS — remplacé par SVG inline ===== */
.platforms-grid { position: relative; }
}

@media (max-width: 768px) {
  .platforms-grid .platform-card:first-child::after,
  .platforms-grid .platform-card:first-child::before,
  .platforms-grid .platform-card:nth-child(3)::after,
  .platforms-grid .platform-card:nth-child(3)::before { display: none; }
}

/* ===== PLATFORM SVG ARROWS ===== */
.plat-svg-arrow {
  position: absolute;
  width: 160px;
  height: 80px;
  pointer-events: none;
  z-index: 10;
}

/* Flèche 1 : part du coin haut-droit de la carte VALIDE, pointe vers le haut du short */
.arrow-1 {
  top: 20px;
  left: calc(25% - 30px);
}

/* Flèche 2 : part du coin bas-droit de la carte VALIDE School, pointe vers le bas du short */
.arrow-2 {
  bottom: 20px;
  left: calc(50% - 30px);
}

@media (max-width: 1100px) {
  .plat-svg-arrow { display: none; }
}

/* ===== FOOTER CONTACT ===== */
.footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; }

.footer-contact h5 { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }

.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; }

.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: #60a5fa; }

.footer-contact li a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact li a:hover { color: #60a5fa; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== PLATFORMS DUO — NEW DESIGN ===== */
.platforms { padding: 0; }

.plat-duo {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}
.plat-duo:last-child { margin-bottom: 0; }
.plat-duo-reverse { flex-direction: row-reverse; }

/* CARD */
.plat-duo-card {
  flex: 1;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(26,58,107,0.12), 0 4px 16px rgba(26,58,107,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.plat-duo-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.06;
  background: radial-gradient(circle, #4f8ef7, transparent);
}
.plat-duo-card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(26,58,107,0.18); }

.plat-card-light { background: #fff; border: 1px solid #e8f0fe; }
.plat-card-dark  { background: linear-gradient(135deg, #1a3a6b 0%, #2a5298 100%); border: none; }

.plat-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: var(--blue-pale);
  color: var(--blue);
}
.plat-tag-light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.plat-duo-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.plat-card-dark h3 { color: #fff; }

.plat-card-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plat-card-dark .plat-card-sub { color: rgba(255,255,255,0.65); }

.plat-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plat-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plat-card-dark .plat-card-features li { color: rgba(255,255,255,0.8); }
.plat-card-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-mid); }
.plat-card-dark .plat-card-features li svg { color: #93c5fd; }

.plat-card-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.plat-btn-dark { background: var(--blue); color: #fff; }
.plat-btn-dark:hover { background: var(--blue-light); transform: translateY(-2px); }
.plat-btn-white { background: #fff; color: var(--blue); }
.plat-btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }

/* ARROW */
.plat-duo-arrow {
  flex-shrink: 0;
  width: 120px;
  opacity: 0.7;
}
.plat-duo-arrow svg { width: 100%; height: auto; }

/* PHONE */
.plat-duo-phone {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.plat-phone-frame {
  width: 220px;
  height: 440px;
  background: #0d1b3e;
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.35),
    0 0 0 2px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(800px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}
.plat-duo-reverse .plat-phone-frame {
  transform: perspective(800px) rotateY(8deg) rotateX(2deg);
}
.plat-phone-frame:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-6px);
}

.plat-phone-notch {
  width: 60px; height: 8px;
  background: #000;
  border-radius: 4px;
  margin: 0 auto 10px;
}

.plat-phone-screen {
  background: #000;
  border-radius: 24px;
  height: calc(100% - 18px);
  overflow: hidden;
}
.plat-phone-screen video,
.plat-phone-screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.plat-phone-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 60px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.5;
  z-index: 1;
}
.plat-glow-blue   { background: #4f8ef7; }
.plat-glow-purple { background: #a78bfa; }

@media (max-width: 900px) {
  .plat-duo, .plat-duo-reverse { flex-direction: column; align-items: center; }
  .plat-duo-arrow { transform: rotate(90deg); width: 80px; }
  .plat-phone-frame, .plat-duo-reverse .plat-phone-frame { transform: none; }
  .plat-duo-card { width: 100%; }
}

/* ===== PLATFORMS DUO REDESIGN ===== */
.plat-duo {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
  position: relative;
}
.plat-duo-reverse { flex-direction: row-reverse; }

/* CARD */
.plat-duo-card {
  flex: 1;
  border-radius: 28px;
  padding: 44px 40px;
  box-sizing: border-box;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.plat-duo-card:hover { transform: translateY(-6px); }

.plat-card-light {
  background: #fff;
  box-shadow: 0 20px 60px rgba(26,58,107,0.12), 0 4px 16px rgba(26,58,107,0.06);
  border: 1px solid rgba(26,58,107,0.08);
}
.plat-card-dark {
  background: linear-gradient(135deg, #1a3a6b 0%, #2a5298 100%);
  box-shadow: 0 20px 60px rgba(26,58,107,0.35), 0 4px 16px rgba(26,58,107,0.2);
}

.plat-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--blue-pale);
  color: var(--blue);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.plat-tag-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.plat-duo-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.plat-card-dark h3 { color: #fff; }

.plat-card-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.plat-card-dark .plat-card-sub { color: rgba(255,255,255,0.65); }

.plat-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plat-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.plat-card-dark .plat-card-features li { color: rgba(255,255,255,0.8); }
.plat-card-features li svg { flex-shrink: 0; margin-top: 3px; color: var(--blue-mid); }
.plat-card-dark .plat-card-features li svg { color: #93c5fd; }

.plat-card-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.plat-btn-dark { background: var(--blue); color: #fff; }
.plat-btn-dark:hover { background: var(--blue-light); transform: translateY(-2px); }
.plat-btn-white { background: #fff; color: var(--blue); }
.plat-btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }

/* ARROW */
.plat-duo-arrow {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  pointer-events: none;
}
.plat-duo-arrow svg { width: 100%; height: 100%; }

/* PHONE */
.plat-duo-phone { flex-shrink: 0; position: relative; }

.plat-phone-wrap {
  position: relative;
  display: inline-block;
}

.plat-phone-frame {
  width: 220px;
  height: 440px;
  background: #0d1b3e;
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.35),
    0 0 0 2px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(800px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}
.plat-duo-reverse .plat-phone-frame {
  transform: perspective(800px) rotateY(8deg) rotateX(2deg);
}
.plat-phone-frame:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(1deg) translateY(-6px);
}
.plat-duo-reverse .plat-phone-frame:hover {
  transform: perspective(800px) rotateY(3deg) rotateX(1deg) translateY(-6px);
}

.plat-phone-notch {
  width: 60px; height: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  margin: 0 auto 10px;
}

.plat-phone-screen {
  background: #000;
  border-radius: 24px;
  height: calc(100% - 18px);
  overflow: hidden;
}
.plat-phone-screen video,
.plat-phone-screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.plat-phone-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.4;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.plat-glow-blue { background: #4f8ef7; }
.plat-glow-purple { background: #a78bfa; }

@media (max-width: 900px) {
  .plat-duo, .plat-duo-reverse { flex-direction: column; align-items: center; gap: 32px; }
  .plat-duo-arrow { transform: rotate(90deg); }
  .plat-phone-frame, .plat-duo-reverse .plat-phone-frame { transform: none; }
  .plat-duo-card { width: 100%; }
}

/* ===== PLATFORMS FULL WIDTH REDESIGN ===== */
.plat-full-wrap {
  display: flex;
  width: 100%;
  margin-top: 60px;
  overflow: hidden;
  background: #f0f4ff;
}

.plat-section {
  flex: 1;
  padding: 60px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4ff;
}
.plat-section-light { background: #f0f4ff; }
.plat-section-dark  { background: #f0f4ff; }

.plat-section-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 680px;
}

/* CARD */
.plat-card {
  flex: 1;
  border-radius: 24px;
  padding: 36px 32px;
  box-sizing: border-box;
  min-width: 340px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plat-card:hover { transform: translateY(-5px); }

.plat-card-white {
  background: #fff;
  box-shadow: 0 16px 48px rgba(26,58,107,0.12), 0 2px 8px rgba(26,58,107,0.06);
}
.plat-card-navy {
  background: linear-gradient(135deg, #1a3a6b 0%, #2a5298 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 48px rgba(26,58,107,0.3);
}

.plat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.plat-tag-blue  { background: var(--blue-pale); color: var(--blue); }
.plat-tag-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.plat-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.plat-card-navy h3 { color: #fff; }

.plat-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.plat-card-navy .plat-subtitle { color: rgba(255,255,255,0.6); }

.plat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plat-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.plat-card-navy .plat-features li { color: rgba(255,255,255,0.75); }
.plat-features li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-mid); }
.plat-card-navy .plat-features li svg { color: #93c5fd; }

.plat-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.plat-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.plat-btn-blue  { background: var(--blue); color: #fff; }
.plat-btn-blue:hover  { background: var(--blue-light); transform: translateY(-2px); }
.plat-btn-white { background: #fff; color: var(--blue); }
.plat-btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }

/* ARROW */
.plat-arrow-link {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  pointer-events: none;
}
.plat-arrow-link svg { width: 100%; height: 100%; }

/* MOBILE */
.plat-mobile { flex-shrink: 0; position: relative; }

.plat-mobile-frame {
  width: 260px;
  height: 520px;
  background: #0d1b3e;
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 32px 64px rgba(0,0,0,0.4),
    0 0 0 2px rgba(255,255,255,0.08);
  transform: perspective(700px) rotateY(-10deg) rotateX(3deg);
  transition: transform 0.4s;
  position: relative;
  z-index: 2;
}
.plat-mobile-frame:hover {
  transform: perspective(700px) rotateY(-4deg) rotateX(1deg) translateY(-6px);
}
.plat-mobile-dark { background: #111827; }

.plat-mobile-notch {
  width: 50px; height: 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin: 0 auto 8px;
}
.plat-mobile-screen {
  background: #000;
  border-radius: 22px;
  height: calc(100% - 15px);
  overflow: hidden;
}
.plat-mobile-screen video,
.plat-mobile-screen iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.plat-mobile-glow {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
.plat-glow-1 { background: #4f8ef7; }
.plat-glow-2 { background: #a78bfa; }

@media (max-width: 900px) {
  .plat-full-wrap { flex-direction: column; }
  .plat-section { padding: 48px 24px; }
  .plat-section-inner { flex-direction: column; align-items: center; max-width: 100%; }
  .plat-arrow-link { transform: rotate(90deg); }
  .plat-mobile-frame { transform: none; }
}

/* ===== PARTNER LOGO TOUCH MOBILE ===== */
.partner-logo.touch-active { background: rgba(255,255,255,0.15); transform: translateY(-4px) scale(1.04); }
.partner-logo.touch-active img { opacity: 0.15; transform: scale(0.9); }
.partner-logo.touch-active .partner-overlay { opacity: 1; transform: translateY(0); }

/* ===== EVENT BLOCK ===== */
.event-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 48px;
}

.event-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.event-video-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.event-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.event-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.event-text p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .event-inner { grid-template-columns: 1fr; gap: 24px; }
  .event-block { padding: 24px; }
}

/* ===== EVENT HIGHLIGHT ===== */
.event-highlight { padding: 100px 0; }

.event-hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Media */
.event-hl-media { position: relative; }

.event-hl-video-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,58,107,0.15);
  aspect-ratio: 4/3;
  background: #0d1b3e;
  cursor: pointer;
}

.event-hl-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.event-hl-video-wrap:hover video { transform: scale(1.03); }

.event-hl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(26,58,107,0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  padding-left: 4px;
}
.event-hl-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--blue-light);
  box-shadow: 0 12px 40px rgba(26,58,107,0.5);
}

/* Text */
.event-hl-text { display: flex; flex-direction: column; gap: 20px; }

.event-hl-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.event-hl-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.event-hl-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
}
.event-hl-cta:hover { gap: 20px; }

.event-hl-cta-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(26,58,107,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  padding-left: 3px;
}
.event-hl-cta:hover .event-hl-cta-icon {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(26,58,107,0.4);
}

@media (max-width: 768px) {
  .event-hl-grid { grid-template-columns: 1fr; gap: 40px; }
  .event-highlight { padding: 64px 0; }
}

/* ===== MOBILE ZOOM BUTTON ===== */
.plat-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 10;
}
.plat-mobile-frame:hover .plat-zoom-btn { opacity: 1; }
.plat-zoom-btn:hover { background: rgba(0,0,0,0.8); }

/* ===== PLATFORMS ROW LAYOUT ===== */
.plat-row { width: 100%; }
.plat-row-light { background: #fff; }
.plat-row-dark  { background: #0d1b3e; }

.plat-row-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.plat-row-text { flex: 1; }

.plat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.plat-badge-blue  { background: #e8eeff; color: var(--blue); }
.plat-badge-light { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

.plat-row-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
}
.plat-row-light .plat-row-title { color: var(--navy); }
.plat-row-dark  .plat-row-title { color: #fff; }

.plat-row-sub {
  font-size: 1rem;
  margin-bottom: 28px;
}
.plat-row-light .plat-row-sub { color: #64748b; }
.plat-row-dark  .plat-row-sub { color: rgba(255,255,255,0.6); }

.plat-row-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plat-row-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.plat-row-light .plat-row-features li { color: #334155; }
.plat-row-dark  .plat-row-features li { color: rgba(255,255,255,0.8); }
.plat-row-light .plat-row-features svg { stroke: var(--blue); flex-shrink: 0; margin-top: 2px; }
.plat-row-dark  .plat-row-features svg { stroke: #60a5fa; flex-shrink: 0; margin-top: 2px; }

.plat-row-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Phone mockup */
.plat-row-phone { flex-shrink: 0; display: flex; justify-content: center; }
.plat-phone-wrap { position: relative; }

.plat-phone-frame {
  width: 240px;
  height: 490px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 6px solid #2d2d4e;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}
.plat-phone-dark {
  background: #111;
  border-color: #333;
}
.plat-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #0d0d1a;
  border-radius: 10px;
  z-index: 2;
}
.plat-phone-dark .plat-phone-notch { background: #000; }
.plat-phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.plat-phone-screen video,
.plat-phone-screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.plat-phone-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.plat-glow-blue   { background: rgba(79,142,247,0.35); }
.plat-glow-purple { background: rgba(139,92,246,0.35); }

@media (max-width: 900px) {
  .plat-row-inner {
    flex-direction: column;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .plat-phone-frame { width: 200px; height: 410px; }
}

/* Flèche entre texte et téléphone */
.plat-row-arrow {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plat-row-arrow svg { width: 320px; height: 100px; }

@media (max-width: 900px) {
  .plat-row-arrow { display: none; }
}

/* ===== EVENT CAROUSEL ===== */
.event-highlight { padding: 80px 0; }
.event-highlight .section-header { text-align: center; margin-bottom: 48px; }

.event-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.event-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.event-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.event-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(42,82,152,0.08);
  padding: 40px;
  box-sizing: border-box;
}

.event-slide-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.event-slide-media .evt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contrôles vidéo */
.evt-controls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}
.evt-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.evt-btn:hover { background: rgba(42,82,152,0.85); }

.event-slide-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: #e8eeff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.event-slide-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.event-slide-text p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Boutons nav */
.event-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.2s;
}
.event-nav:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Dots */
.event-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.event-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .event-slide { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .event-nav { display: none; }
}
