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

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 20px; height: 20px; border: 2px solid var(--red);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 50px; height: 50px; background: rgba(230,57,70,0.15);
  border-color: var(--white);
}
.cursor-dot {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot.hover { opacity: 0; }

/* ===== SMOOTH SCROLL ===== */
.smooth-wrapper { overflow: hidden; position: fixed; width: 100%; height: 100%; top: 0; left: 0; }
.smooth-content { will-change: transform; }

/* ===== VARIABLES ===== */
:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --red: #e63946;
  --red-dark: #c1121f;
  --red-glow: rgba(230, 57, 70, 0.15);
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-900: #171717;
  --max-w: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ===== LOADING SCREEN ===== */
.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--black); z-index: 10000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 80px; height: 80px; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 32px; border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--red); width: 0; animation: loaderFill 2s var(--ease) forwards; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes loaderFill { 0% { width: 0; } 100% { width: 100%; } }

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; width: 100%; }
.section { padding: 140px 0; position: relative; }
.text-center { text-align: center; }

/* ===== SVG LOGO ===== */
.logo-svg { display: inline-block; vertical-align: middle; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(0,0,0,0);
  transition: all 0.6s var(--ease);
  padding: 8px 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; height: 90px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; gap: 12px; letter-spacing: -0.02em;
  transition: transform 0.4s var(--ease);
}
.nav-logo img { width: 60px; height: 60px; }
.nav-logo:hover { transform: scale(1.03); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--gray-500);
  transition: all 0.4s var(--ease); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width 0.4s var(--ease); border-radius: 2px;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--black); }
.nav-links a.active::after { width: 100%; }

/* Nav CTA - Magnetic button */
.nav-cta {
  background: var(--black); color: var(--white); padding: 11px 26px;
  border-radius: 10px; font-size: 0.88rem; font-weight: 600;
  transition: all 0.4s var(--ease); border: none;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: var(--red); border-radius: 50%;
  transform: translate(-50%, -50%); transition: width 0.6s var(--ease), height 0.6s var(--ease);
}
.nav-cta:hover::before { width: 300px; height: 300px; }
.nav-cta span { position: relative; z-index: 1; }

/* Mobile menu */
.mobile-menu-btn { display: none; background: none; border: none; padding: 8px; position: relative; width: 36px; height: 36px; }
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--black);
  position: absolute; left: 7px; transition: all 0.4s var(--ease);
}
.mobile-menu-btn span:nth-child(1) { top: 10px; }
.mobile-menu-btn span:nth-child(2) { top: 17px; }
.mobile-menu-btn span:nth-child(3) { top: 24px; }
.mobile-menu-btn.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-btn.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--white); z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden; transition: all 0.5s var(--ease);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2rem;
  font-weight: 700; color: var(--black); transition: all 0.3s;
  transform: translateY(20px); opacity: 0;
}
.mobile-nav.active a { transform: translateY(0); opacity: 1; }
.mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav a:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav a:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav a:hover { color: var(--red); }

/* ===== HERO ===== */
.hero {
  min-height: auto; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  position: relative; overflow: hidden; padding: 170px 40px 100px;
}
.hero-visual {
  position: relative; z-index: 2; width: 100%; max-width: 980px; margin: 56px auto 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.22); border: 1px solid rgba(0,0,0,0.06);
}
.hero-visual img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-visual__tag {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-size: 0.78rem; font-weight: 600; padding: 8px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-visual__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(230,57,70,0.25); }

/* ===== IMAGE UTILITAIRE (sections) ===== */
.section-img {
  border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.16); border: 1px solid rgba(128,128,128,0.18);
}
.section-img img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.section-img__cap {
  position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-size: 0.76rem; font-weight: 600; padding: 7px 13px; border-radius: 100px;
}
.section-img__cap .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.hero-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, rgba(230,57,70,0.02) 40%, transparent 70%);
  pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.10) 0%, transparent 70%);
  animation: heroPulse 5s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

/* Ripple rings with expanding animation */
.hero-ripple {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 900px; pointer-events: none;
}
.hero-ripple .ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,0,0,0.03);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: ringExpand 8s ease-in-out infinite;
}
.hero-ripple .ring:nth-child(1) { width: 200px; height: 200px; animation-delay: 0s; }
.hero-ripple .ring:nth-child(2) { width: 350px; height: 350px; animation-delay: 0.5s; }
.hero-ripple .ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 1s; }
.hero-ripple .ring:nth-child(4) { width: 650px; height: 650px; animation-delay: 1.5s; }
.hero-ripple .ring:nth-child(5) { width: 800px; height: 800px; animation-delay: 2s; }
@keyframes ringExpand {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.03); }
}

/* Hero floating particles */
.hero-particles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; width: 4px; height: 4px; background: var(--red); border-radius: 50%;
  opacity: 0; animation: particleFloat 12s ease-in-out infinite;
}
.particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-delay: 1s; }
.particle:nth-child(5) { left: 85%; animation-delay: 3s; }
.particle:nth-child(6) { left: 25%; animation-delay: 5s; width: 3px; height: 3px; }
.particle:nth-child(7) { left: 60%; animation-delay: 7s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 80%; animation-delay: 6s; width: 5px; height: 5px; }
@keyframes particleFloat {
  0% { bottom: -10px; opacity: 0; transform: translateX(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { bottom: 110%; opacity: 0; transform: translateX(40px); }
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }

/* Hero badge with shimmer */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 8px 22px; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600);
  margin-bottom: 40px; position: relative; overflow: hidden;
  opacity: 0; animation: fadeUp 1s var(--ease) 2.2s forwards;
}
.hero-badge::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.08), transparent);
  animation: shimmer 3s infinite 3s;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 200%; } }
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: blink 2s infinite; box-shadow: 0 0 8px rgba(230,57,70,0.5);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Hero title - split letter animation */
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; color: var(--black); margin-bottom: 12px;
}
.hero-title .line {
  display: block; overflow: hidden;
}
.hero-title .line-inner {
  display: block; transform: translateY(110%);
  animation: lineReveal 1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 2.3s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 2.5s; }
@keyframes lineReveal { 0% { transform: translateY(110%); } 100% { transform: translateY(0); } }
.hero-title .red { color: var(--red); position: relative; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray-500);
  max-width: 580px; margin: 28px auto 52px; line-height: 1.75; font-weight: 400;
  opacity: 0; animation: fadeUp 1s var(--ease) 2.8s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease) 3s forwards;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Magnetic buttons */
.btn-magnetic { transition: transform 0.3s var(--ease); }
.btn-primary {
  background: var(--black); color: var(--white); padding: 16px 38px;
  border-radius: 12px; font-size: 1rem; font-weight: 600;
  transition: all 0.5s var(--ease); border: none;
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: var(--red); border-radius: 50%;
  transform: translate(-50%, -50%); transition: width 0.6s var(--ease), height 0.6s var(--ease);
}
.btn-primary:hover::before { width: 400px; height: 400px; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(230,57,70,0.25); }
.btn-arrow {
  display: inline-block; transition: transform 0.4s var(--ease); position: relative; z-index: 1;
}
.btn-primary:hover .btn-arrow { transform: translateX(6px); }

.btn-secondary {
  background: var(--white); color: var(--black); padding: 16px 38px;
  border-radius: 12px; font-size: 1rem; font-weight: 600;
  border: 1.5px solid var(--gray-200);
  transition: all 0.5s var(--ease); position: relative; overflow: hidden;
}
.btn-secondary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
  transition: left 0.6s var(--ease);
}
.btn-secondary:hover::before { left: 100%; }
.btn-secondary:hover { border-color: var(--black); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 60px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50); overflow: hidden;
}
.logos-bar .label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gray-400); text-align: center; margin-bottom: 32px; font-weight: 600;
}
.logos-row {
  display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap;
}
.logos-row span {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.2rem; color: var(--black); white-space: nowrap;
  opacity: 0.2; transition: opacity 0.5s var(--ease);
}
.logos-row span:hover { opacity: 0.6; }

/* ===== PROBLEM SECTION ===== */
.problem { background: var(--black); color: var(--white); overflow: hidden; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.18);
  padding: 6px 18px; border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin-bottom: 24px;
}
.problem h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
.problem p { color: rgba(255,255,255,0.55); line-height: 1.8; font-size: 1rem; margin-bottom: 16px; }
.problem-cards { display: flex; flex-direction: column; gap: 20px; }
.problem-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 28px 32px;
  transition: all 0.5s var(--ease); position: relative; overflow: hidden;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--red); transition: height 0.6s var(--ease);
}
.problem-card:hover::before { height: 100%; }
.problem-card:hover {
  background: rgba(230,57,70,0.04); border-color: rgba(230,57,70,0.15);
  transform: translateX(10px);
}
.problem-card .card-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  color: var(--red); font-size: 0.82rem; margin-bottom: 8px; letter-spacing: 0.05em;
}
.problem-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; color: var(--white); }
.problem-card p { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* ===== DIFFERENCE / COMPARISON ===== */
.difference { background: var(--gray-50); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 18px; border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-500); margin-bottom: 20px;
}
.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.section-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.7; }

.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 16px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.compare-table th {
  padding: 22px 32px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.compare-table th:first-child { background: var(--gray-200); color: var(--gray-600); text-align: left; width: 50%; }
.compare-table th:last-child { background: var(--black); color: var(--white); text-align: left; width: 50%; }
.compare-table td {
  padding: 18px 32px; font-size: 0.93rem; border-bottom: 1px solid var(--gray-100); vertical-align: top;
  transition: all 0.3s var(--ease);
}
.compare-table tr:hover td { background: var(--gray-50); }
.compare-table tr td:first-child { background: var(--white); color: var(--gray-500); }
.compare-table tr td:last-child { background: var(--white); color: var(--black); font-weight: 600; }
.compare-table tr:hover td:first-child { background: var(--gray-50); }
.compare-table tr:hover td:last-child { background: #FFF8ED; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--red); margin-right: 8px; font-weight: 700; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 48px 40px; transition: all 0.6s var(--ease); position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-dark)); transition: width 0.6s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.07); border-color: rgba(230,57,70,0.2); }
.team-card:hover::before { width: 100%; }
.team-role {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red); margin-bottom: 14px;
}
.team-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 800;
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.team-card .credentials {
  font-size: 0.84rem; color: var(--gray-400); font-weight: 500; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-100);
}
.team-card .bio { color: var(--gray-600); font-size: 0.93rem; line-height: 1.75; margin-bottom: 24px; }
.team-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.team-skills span {
  background: var(--gray-50); border: 1px solid var(--gray-200); padding: 6px 14px;
  border-radius: 8px; font-size: 0.78rem; font-weight: 500; color: var(--gray-600);
  transition: all 0.3s var(--ease);
}
.team-skills span:hover { background: rgba(230,57,70,0.06); border-color: rgba(230,57,70,0.2); color: var(--red); }

/* ===== REALISATIONS ===== */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 1025px) {
  .realisations-grid { grid-template-columns: repeat(3, 1fr); }
  .realisation-card--large { grid-column: span 1; }
}
.realisation-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.realisation-card:hover {
  border-color: rgba(230,57,70,0.3);
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}
.realisation-card--large {
  grid-column: span 1;
}
.realisation-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.realisation-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.realisation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.realisation-tag {
  background: rgba(230,57,70,0.1);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.realisation-client {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.realisation-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.realisation-results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.realisation-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.realisation-metric-value {
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}
.realisation-metric-label {
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
}

/* ===== SERVICES ===== */
.services { background: var(--black); color: var(--white); overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offers-main { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.offer-main-card {
  background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(255,255,255,0.04));
  border: 2px solid rgba(230,57,70,0.25); border-radius: 24px; padding: 48px 40px;
  transition: all 0.5s var(--ease); position: relative; overflow: hidden;
}
.offer-main-card::before {
  content: 'OFFRE PHARE'; position: absolute; top: 20px; right: 20px;
  background: var(--red); color: white; font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 0.08em;
}
.offer-main-card:hover { border-color: var(--red); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(230,57,70,0.15); }
.offer-main-card .service-icon { width: 64px; height: 64px; font-size: 1.8rem; background: rgba(230,57,70,0.12); }
.offer-main-card h3 { font-size: 1.35rem; margin-bottom: 16px; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.offer-main-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; }
.services-secondary-title { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; font-weight: 600; }
@media (max-width: 768px) { .offers-main { grid-template-columns: 1fr; } }
.service-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 40px 32px; transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, transparent, rgba(230,57,70,0.06));
  transition: height 0.6s var(--ease);
}
.service-card:hover::after { height: 100%; }
.service-card:hover {
  background: rgba(255,255,255,0.05); border-color: rgba(230,57,70,0.25);
  transform: translateY(-6px);
}
.service-icon {
  width: 56px; height: 56px; background: rgba(230,57,70,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.5rem; position: relative; z-index: 1;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon { background: rgba(230,57,70,0.15); transform: scale(1.08); }
.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.12rem; margin-bottom: 12px; color: var(--white); position: relative; z-index: 1;
}
.service-card p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; position: relative; z-index: 1; }

/* ===== STATS ===== */
.stats { border-bottom: 1px solid var(--gray-100); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 48px 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--gray-200);
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--black); letter-spacing: -0.03em; line-height: 1;
}
.stat-number .red { color: var(--red); }
.stat-label { font-size: 0.84rem; color: var(--gray-400); margin-top: 10px; font-weight: 500; }

/* ===== QUOTE / MANIFESTO ===== */
.manifesto { background: var(--gray-50); text-align: center; overflow: hidden; }
.manifesto-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.25;
  letter-spacing: -0.03em; max-width: 800px; margin: 0 auto 24px;
}
.manifesto-quote .red { color: var(--red); }
.manifesto-author { color: var(--gray-400); font-size: 0.88rem; font-weight: 500; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0; gap: 20px; width: 100%; background: none; border: none;
  font-family: 'Inter', sans-serif; text-align: left; transition: padding 0.3s;
}
.faq-question:hover { padding-left: 8px; }
.faq-question h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.08rem; color: var(--black); transition: color 0.3s;
}
.faq-question:hover h4 { color: var(--red); }
.faq-icon {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.2rem; color: var(--gray-500); transition: all 0.4s var(--ease);
}
.faq-item.active .faq-icon { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.6s var(--ease);
}
.faq-answer p { padding-bottom: 28px; color: var(--gray-500); line-height: 1.8; font-size: 0.93rem; }
.faq-item.active .faq-answer { max-height: 600px; }

/* ===== CTA FINAL ===== */
.cta-final { background: var(--black); text-align: center; position: relative; overflow: hidden; }
.cta-final::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.10) 0%, transparent 55%);
  pointer-events: none; animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}
.cta-content { position: relative; z-index: 2; }
.cta-final h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}
.cta-final p {
  color: rgba(255,255,255,0.45); font-size: 1.05rem; max-width: 550px;
  margin: 0 auto 44px; line-height: 1.75;
}
.btn-red {
  background: var(--red); color: var(--white); padding: 18px 46px;
  border-radius: 12px; font-size: 1.05rem; font-weight: 700; border: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.5s var(--ease); position: relative; overflow: hidden;
}
.btn-red::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 0; height: 0; background: var(--red-dark); border-radius: 50%;
  transform: translate(-50%, -50%); transition: width 0.6s var(--ease), height 0.6s var(--ease);
}
.btn-red:hover::before { width: 400px; height: 400px; }
.btn-red span { position: relative; z-index: 1; }
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(230,57,70,0.35); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 40px; color: rgba(255,255,255,0.4);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: var(--white); display: flex; align-items: center; gap: 12px;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: all 0.4s var(--ease);
  position: relative;
}
.footer-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--red); transition: width 0.4s var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { width: 100%; }
.footer-copy { font-size: 0.78rem; width: 100%; text-align: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  z-index: 1001; transition: width 0.1s linear;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .realisations-grid { grid-template-columns: repeat(2, 1fr); }
  .realisation-card--large { grid-column: span 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  button, a { cursor: pointer; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .hero { padding: 120px 24px 80px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .team-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 340px; justify-content: center; text-align: center; }
  .hero-visual { margin-top: 36px; border-radius: 16px; box-shadow: 0 20px 45px rgba(0,0,0,0.18); }
  .section-img { border-radius: 16px; box-shadow: 0 18px 40px rgba(0,0,0,0.14); margin-bottom: 36px !important; }
  .hero-visual__tag, .section-img__cap { font-size: 0.7rem; padding: 6px 11px; left: 10px; bottom: 10px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .compare-table th, .compare-table td { padding: 14px 18px; font-size: 0.84rem; }
  .logos-row { gap: 28px; }
  .logos-row span { font-size: 0.95rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .hero-visual__tag { display: none; }
  .hero { padding: 108px 20px 64px; }
  .container { padding: 0 18px; }
}

/* ===== GUARANTEES, ECONOMIES & IA STATS RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ia-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cas-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .guarantees-bar { grid-template-columns: 1fr !important; }
  .economies-grid { grid-template-columns: 1fr !important; }
  .ia-stats-grid { grid-template-columns: 1fr !important; }
  #pourquoi-ia .reveal[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}


/* ===== LEGAL MODALS ===== */
.legal-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 10001; display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.legal-modal.active { display: flex; opacity: 1; }
.legal-modal, .legal-modal * { cursor: auto; }
.legal-modal a, .legal-modal button, .legal-modal-close { cursor: pointer; }
.legal-modal-content {
  background: var(--white); border-radius: 20px; max-width: 800px; width: 90%;
  max-height: 85vh; overflow-y: auto; padding: 48px; position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}
.legal-modal-content::-webkit-scrollbar { width: 6px; }
.legal-modal-content::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.legal-modal-content::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.legal-modal-close {
  position: sticky; top: 0; float: right; width: 40px; height: 40px;
  background: var(--gray-100); border: none; border-radius: 50%;
  font-size: 1.2rem; color: var(--gray-500); display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease); z-index: 2;
}
.legal-modal-close:hover { background: var(--red); color: var(--white); transform: rotate(90deg); }
.legal-modal-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.6rem; font-weight: 800;
  margin-bottom: 8px; color: var(--black);
}
.legal-modal-content .legal-date {
  font-size: 0.8rem; color: var(--gray-400); margin-bottom: 32px;
}
.legal-modal-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700;
  margin: 28px 0 12px; color: var(--black);
}
.legal-modal-content p, .legal-modal-content li {
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 10px;
}
.legal-modal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-modal-content li { list-style: disc; margin-bottom: 6px; }
.legal-modal-content strong { color: var(--black); }
@media (max-width: 768px) {
  .legal-modal-content { padding: 32px 24px; border-radius: 16px; }
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 520px; background: var(--white);
  border-radius: 16px; padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 10002; display: none;
  animation: cookieSlideUp 0.5s var(--ease) forwards;
}
.cookie-popup.active { display: block; }
.cookie-popup, .cookie-popup * { cursor: auto; }
.cookie-popup a, .cookie-popup button, .cookie-popup .cookie-switch { cursor: pointer; }
.cookie-popup.hiding {
  animation: cookieSlideDown 0.4s var(--ease) forwards;
}
@keyframes cookieSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes cookieSlideDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(30px); }
}
.cookie-popup h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1rem; margin-bottom: 8px; color: var(--black);
}
.cookie-popup p {
  font-size: 0.84rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px;
}
.cookie-popup p a { color: var(--red); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 24px; border-radius: 10px; font-size: 0.84rem; font-weight: 600;
  border: none; transition: all 0.3s var(--ease);
}
.cookie-btn-accept {
  background: var(--black); color: var(--white);
}
.cookie-btn-accept:hover { background: var(--red); }
.cookie-btn-reject {
  background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200);
}
.cookie-btn-reject:hover { background: var(--gray-200); }
.cookie-btn-settings {
  background: none; color: var(--gray-400); font-size: 0.78rem; padding: 10px 12px;
}
.cookie-btn-settings:hover { color: var(--black); }

/* Cookie settings panel */
.cookie-settings {
  display: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray-200);
}
.cookie-settings.active { display: block; }
.cookie-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
}
.cookie-toggle:last-child { border-bottom: none; }
.cookie-toggle-label { font-size: 0.84rem; font-weight: 600; color: var(--black); }
.cookie-toggle-desc { font-size: 0.75rem; color: var(--gray-400); }
.cookie-switch {
  position: relative; width: 44px; height: 24px; background: var(--gray-200);
  border-radius: 12px; border: none; transition: background 0.3s; flex-shrink: 0;
}
.cookie-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  background: var(--white); border-radius: 50%; transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cookie-switch.active { background: var(--red); }
.cookie-switch.active::after { transform: translateX(20px); }
.cookie-switch.disabled { opacity: 0.5; pointer-events: none; }
@media (max-width: 768px) {
  .cookie-popup { left: 12px; right: 12px; bottom: 12px; padding: 24px 20px; }
}

/* ===== PARTNER MARQUEE ===== */
.marquee-wrapper {
  overflow: hidden; width: 100%; padding: 10px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 80px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-item {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0.35; transition: opacity 0.5s var(--ease);
  filter: grayscale(100%);
}
.marquee-item:hover { opacity: 0.8; filter: grayscale(0%); }
.marquee-item img { height: 90px; width: auto; object-fit: contain; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
@media (max-width: 768px) {
  .marquee-item img { height: 60px; }
  .marquee-track { gap: 50px; }
}

/* ===== CTA POPUP ===== */
.cta-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9500;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cta-popup-overlay.active {
  display: flex;
  opacity: 1;
}
.cta-popup-overlay.fade-in {
  opacity: 1;
}
.cta-popup {
  display: flex;
  max-width: 820px;
  width: 92%;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s ease;
  position: relative;
}
.cta-popup-overlay.fade-in .cta-popup {
  transform: translateY(0) scale(1);
}
.cta-popup__left {
  width: 220px;
  min-height: 100%;
  background: var(--black);
  flex-shrink: 0;
}
.cta-popup__right {
  flex: 1;
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.cta-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  line-height: 1;
}
.cta-popup__close:hover {
  background: var(--gray-600);
}
.cta-popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
}
.cta-popup__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.cta-popup__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
}
.cta-popup__title span {
  color: var(--red);
}
.cta-popup__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}
.cta-popup__stat {
  font-size: 14px;
  color: var(--black);
}
.cta-popup__stat strong {
  font-size: 18px;
  font-weight: 800;
}
.cta-popup__question {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.cta-popup__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-popup__btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: 2px solid transparent;
}
.cta-popup__btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.cta-popup__btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.cta-popup__btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.cta-popup__btn--outline:hover {
  border-color: var(--black);
}
.cta-popup__footer {
  font-size: 12px;
  color: var(--gray-400);
  margin: 0;
}
@media (max-width: 640px) {
  .cta-popup__left { display: none; }
  .cta-popup__right { padding: 32px 24px; }
  .cta-popup__title { font-size: 22px; }
  .cta-popup__buttons { flex-direction: column; }
  .cta-popup__btn { width: 100%; text-align: center; }
}

/* ===== MULTI-STEP LEAD FORM ===== */
.cta-popup, .cta-popup * { cursor: auto; }
.cta-popup button, .cta-popup .lf-chip, .cta-popup .lf-card, .cta-popup__btn, .cta-popup__close { cursor: pointer; }
.cta-popup input, .cta-popup textarea { cursor: text; }

.cta-popup--form { max-width: 640px; }
.cta-popup--form .cta-popup__left { display: none; }
.cta-popup--form .cta-popup__right { padding: 36px 40px; gap: 0; }

.lf-hidden { display: none !important; }

/* Progress */
.lf-progress { display: flex; align-items: center; gap: 0; margin-bottom: 26px; }
.lf-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 0 0 auto;
}
.lf-step-dot .num {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; background: var(--gray-100); color: var(--gray-400);
  border: 2px solid var(--gray-200); transition: all 0.3s var(--ease);
}
.lf-step-dot .lbl { font-size: 11px; font-weight: 600; color: var(--gray-400); transition: color 0.3s; white-space: nowrap; }
.lf-step-dot.active .num { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-glow); }
.lf-step-dot.active .lbl { color: var(--black); }
.lf-step-dot.done .num { background: var(--black); color: #fff; border-color: var(--black); }
.lf-step-dot.done .lbl { color: var(--gray-600); }
.lf-bar { flex: 1 1 auto; height: 2px; background: var(--gray-200); margin: 0 8px; margin-bottom: 20px; border-radius: 2px; position: relative; overflow: hidden; }
.lf-bar span { position: absolute; inset: 0; width: 0; background: var(--red); transition: width 0.4s var(--ease); }
.lf-bar.filled span { width: 100%; }

/* Panels */
.lf-panel { display: none; animation: lfFade 0.4s var(--ease); }
.lf-panel.active { display: block; }
@keyframes lfFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.lf-panel h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--black); margin: 0 0 4px;
}
.lf-panel .lf-sub { font-size: 13px; color: var(--gray-500); margin: 0 0 20px; line-height: 1.5; }

/* Fields */
.lf-field { margin-bottom: 16px; }
.lf-field > label { display: block; font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.lf-field > label .req { color: var(--red); }
.lf-field input, .lf-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--gray-300); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--black); background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s; outline: none;
}
.lf-field input:focus, .lf-field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.lf-field textarea { resize: vertical; min-height: 84px; }
.lf-field input.lf-invalid, .lf-field textarea.lf-invalid { border-color: var(--red); background: #fff5f5; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Chips (multi-select) */
.lf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lf-chip {
  padding: 9px 15px; border: 1.5px solid var(--gray-300); border-radius: 100px; background: var(--white);
  font-size: 13px; font-weight: 600; color: var(--gray-600); transition: all 0.2s; user-select: none;
}
.lf-chip:hover { border-color: var(--gray-500); color: var(--black); }
.lf-chip.selected { background: var(--red); border-color: var(--red); color: #fff; }

/* Cards (single-select budget/timing) */
.lf-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.lf-card {
  padding: 12px 10px; border: 1.5px solid var(--gray-300); border-radius: 10px; background: var(--white);
  text-align: center; transition: all 0.2s; user-select: none;
}
.lf-card:hover { border-color: var(--gray-500); }
.lf-card.selected { border-color: var(--red); background: var(--red-glow); }
.lf-card .lf-card-main { font-size: 14px; font-weight: 800; color: var(--black); }
.lf-card .lf-card-sub { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

.lf-group-label { font-size: 13px; font-weight: 700; color: var(--black); margin: 18px 0 8px; }
.lf-group-label:first-child { margin-top: 0; }
.lf-group-label .req { color: var(--red); }

.lf-error { font-size: 12.5px; color: var(--red); font-weight: 600; margin-top: 12px; min-height: 16px; display: none; }
.lf-error.show { display: block; }

/* Nav buttons */
.lf-nav { display: flex; gap: 12px; margin-top: 22px; align-items: center; }
.lf-nav .lf-spacer { flex: 1; }
.lf-btn {
  padding: 12px 26px; border-radius: 9px; font-size: 14px; font-weight: 700; border: 2px solid transparent;
  font-family: 'Inter', sans-serif; transition: all 0.2s; background: var(--red); color: #fff; border-color: var(--red);
}
.lf-btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.lf-btn:disabled { opacity: 0.6; transform: none; }
.lf-btn--ghost { background: transparent; color: var(--gray-600); border-color: var(--gray-300); }
.lf-btn--ghost:hover { background: transparent; color: var(--black); border-color: var(--black); transform: none; }

.lf-trust { font-size: 11.5px; color: var(--gray-400); margin-top: 14px; text-align: center; line-height: 1.5; }

/* Success */
.lf-success { text-align: center; padding: 10px 0; }
.lf-success .lf-check {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--red-glow);
  display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--red);
}
.lf-success h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--black); margin: 0 0 10px; }
.lf-success p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin: 0 0 22px; }
.lf-success .lf-badge-hot { display: inline-block; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; background: var(--red-glow); color: var(--red-dark); margin-bottom: 16px; }
.lf-cal {
  display: inline-block; padding: 13px 30px; background: var(--red); color: #fff; border-radius: 9px;
  font-weight: 700; font-size: 14px; transition: background 0.2s;
}
.lf-cal:hover { background: var(--red-dark); }

@media (max-width: 640px) {
  .cta-popup--form .cta-popup__right { padding: 28px 22px; }
  .lf-row { grid-template-columns: 1fr; }
  .lf-step-dot .lbl { display: none; }
  .lf-cards { grid-template-columns: repeat(2, 1fr); }
}
