/* ===== VIRAL ACQUISITION — SHARED STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #FFFFFF;
  --bg-card:    #FFFFFF;
  --bg-glass:   rgba(255,255,255,0.95);
  --purple:     #7C3AED;
  --purple-lt:  #9D5CF6;
  --purple-dk:  #5B21B6;
  --cyan:       #06B6D4;
  --cyan-lt:    #22D3EE;
  --white:      #FFFFFF;
  --gray-1:     #F9FAFB;
  --gray-2:     #E5E7EB;
  --gray-3:     #555555;
  --gray-4:     #374151;
  --gray-5:     #1F2937;
  --gray-6:     #111111;
  --border:     #E5E5E5;
  --text:       #0A0A0A;
  /* Pastilles / badges foncés sur fond clair (timeline, puces) */
  --bg-dark:    #1F2937;
  --glow-p:     0 0 40px rgba(124,58,237,0.35);
  --glow-c:     0 0 40px rgba(6,182,212,0.35);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:       'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }
ul { list-style: none; }

::selection { background: rgba(124,58,237,0.4); color: var(--white); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.gradient-text {
  background: linear-gradient(135deg, var(--purple-lt) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--purple-lt);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  transition: var(--transition); position: relative; overflow: hidden;
}

.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.07); opacity: 0; border-radius: inherit;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dk) 100%);
  color: var(--white); box-shadow: 0 4px 24px rgba(124,58,237,0.45);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(124,58,237,0.65);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--purple-lt);
  box-shadow: var(--glow-p);
  color: var(--purple-lt);
  transform: translateY(-1px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #0284C7 100%);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(6,182,212,0.4);
}

.btn-cyan:hover {
  box-shadow: 0 8px 40px rgba(6,182,212,0.6);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; font-weight: 700; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
}

.nav-logo {
  font-size: 17px; font-weight: 900; letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-logo span { color: var(--purple-lt); }
.nav-logo em { color: var(--cyan); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}

.nav-links a {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--gray-3); border-radius: var(--radius-sm);
  transition: var(--transition); position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--purple-lt);
}

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; padding: 4px; cursor: pointer;
}

.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  backdrop-filter: blur(20px);
}

.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--gray-2); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border: none; }

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 3px;
  margin-left: 12px;
}

.lang-btn {
  padding: 5px 10px; border-radius: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--gray-4); background: transparent;
  transition: var(--transition); cursor: pointer;
  border: none; outline: none; font-family: var(--font);
}

.lang-btn.active {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(124,58,237,0.5);
}

.lang-btn:not(.active):hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .lang-toggle { margin-left: 8px; }
}

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

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(124,58,237,0.22) 0%, transparent 65%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(6,182,212,0.12) 0%, transparent 60%),
              linear-gradient(180deg, #0A0A0A 0%, #0D0A14 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-content { position: relative; z-index: 1; }

.hero-tag { margin-bottom: 28px; }

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

.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-3); max-width: 540px;
  line-height: 1.7; margin-bottom: 44px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats-band {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}

.stat-item {
  text-align: center; padding: 40px 24px;
  position: relative;
}

.stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}

.stat-item:first-child::before { display: none; }

.stat-number {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}

.stat-number span.accent { -webkit-text-fill-color: var(--purple-lt); }

.stat-label {
  margin-top: 10px; font-size: 13px; font-weight: 500;
  color: var(--gray-4); letter-spacing: 0.05em; text-transform: uppercase;
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }

.section-header .tag { margin-bottom: 20px; }

.section-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px; color: var(--gray-3);
  max-width: 520px; line-height: 1.7;
}

.section-header.centered p { margin: 0 auto; }

/* ===== SECTION SPACING ===== */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px; position: relative;
  transition: var(--transition); overflow: hidden;
}

.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  border-radius: inherit;
}

.card:hover {
  border-color: rgba(124,58,237,0.35);
  box-shadow: var(--glow-p);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}

.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }

.card p { font-size: 14.5px; color: var(--gray-3); line-height: 1.7; }

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 40px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--bg) 0%, rgba(124,58,237,0.03) 50%, var(--bg) 100%);
}

.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px; white-space: nowrap;
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray-4);
}

.marquee-item .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ===== DIVIDER ===== */
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 2px; margin-top: 12px;
}

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0; text-align: center;
  position: relative; overflow: hidden;
}

.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(124,58,237,0.15) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px; color: var(--gray-3);
  margin-bottom: 48px;
}

.cta-section .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px; color: var(--gray-4); line-height: 1.7;
  margin-bottom: 24px; max-width: 280px;
}

.footer-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-5);
}

.footer-tagline span { color: var(--purple-lt); }

.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-5);
  margin-bottom: 20px;
}

.footer-col ul li a {
  display: block; padding: 5px 0;
  font-size: 14px; color: var(--gray-4);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col .contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-4);
  padding: 5px 0;
}

.footer-contact a {
  font-size: 14px; color: var(--gray-4);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--cyan); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-bottom p {
  font-size: 13px; color: var(--gray-5);
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-4);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
  box-shadow: var(--glow-p);
}

/* ===== ANIMATIONS / SCROLL ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

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

.slide-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 100px;
  position: relative; overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 70%),
              linear-gradient(180deg, #0D0A14 0%, var(--bg) 100%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px; color: var(--gray-3);
  max-width: 560px; line-height: 1.7;
}

/* ===== HOW IT WORKS PAGE ===== */
.process-timeline { position: relative; }

.process-timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--purple), var(--cyan), transparent);
  transform: translateX(-50%);
}

.timeline-step {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 32px; align-items: center;
  margin-bottom: 60px; position: relative;
}

.timeline-step:nth-child(even) .step-content { order: 3; text-align: right; }
.timeline-step:nth-child(even) .step-spacer { order: 2; }
.timeline-step:nth-child(even) .step-empty { order: 1; }

.step-node {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  border: 3px solid rgba(124,58,237,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: var(--white);
  margin: 0 auto; position: relative; z-index: 1;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
  flex-shrink: 0;
}

.step-content { padding: 28px; }

.step-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-content p { font-size: 14.5px; color: var(--gray-3); line-height: 1.7; }

.step-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple-lt);
  margin-bottom: 8px;
}

/* ===== TALENTS PAGE ===== */
.influencer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; transition: var(--transition);
  position: relative;
}

.influencer-card:hover {
  border-color: rgba(124,58,237,0.4);
  box-shadow: var(--glow-p);
  transform: translateY(-6px);
}

.influencer-avatar {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative; overflow: hidden;
}

.influencer-avatar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.influencer-info { padding: 20px; }
.influencer-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.influencer-info .handle { font-size: 13px; color: var(--purple-lt); margin-bottom: 14px; }

.influencer-stats {
  display: flex; gap: 16px; margin-bottom: 14px;
}

.influencer-stat {
  flex: 1; text-align: center;
  padding: 10px; background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
}

.influencer-stat .val { font-size: 16px; font-weight: 700; }
.influencer-stat .lbl { font-size: 10px; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

.influencer-platforms { display: flex; gap: 8px; margin-top: 12px; }
.platform-badge {
  padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.06); color: var(--gray-3);
}

.niche-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(10px); z-index: 2;
}

.niche-beauty { background: rgba(245,72,139,0.2); color: #F5488B; border: 1px solid rgba(245,72,139,0.3); }
.niche-food { background: rgba(249,115,22,0.2); color: #F97316; border: 1px solid rgba(249,115,22,0.3); }

/* Filters */
.filter-bar {
  display: flex; gap: 10px; margin-bottom: 48px;
  flex-wrap: wrap; align-items: center;
}

.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: var(--gray-3);
  transition: var(--transition); cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(124,58,237,0.15);
  border-color: var(--purple-lt); color: var(--white);
}

/* ===== SERVICES — PRICING CARDS ===== */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px; position: relative;
  transition: var(--transition); overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 60px rgba(124,58,237,0.2);
}

.pricing-badge {
  position: absolute; top: 24px; right: 24px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: var(--white); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}

.pricing-card:hover {
  border-color: rgba(124,58,237,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.2);
}

.price-amount {
  font-size: 56px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1; margin: 24px 0 8px;
}

.price-amount span { font-size: 22px; font-weight: 600; color: var(--gray-3); }

.price-period { font-size: 14px; color: var(--gray-4); margin-bottom: 32px; }

.price-features { margin-bottom: 40px; }

.price-features li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 14.5px; color: #1F2937;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.price-features li:last-child { border: none; }

.price-features li::before {
  content: '✓'; color: var(--cyan); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 16px 20px; font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table th { font-weight: 600; color: var(--gray-4); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-table td:first-child { color: var(--gray-2); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .check { color: var(--cyan); font-size: 18px; }
.compare-table .cross { color: var(--gray-5); }

/* ===== PORTFOLIO ===== */
.case-study-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}

.case-study-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-p);
}

.case-study-visual {
  height: 200px; position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; overflow: hidden;
}

.case-study-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.case-study-body { padding: 28px; }
.case-study-body .tag { margin-bottom: 14px; }
.case-study-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.case-study-body p { font-size: 14px; color: var(--gray-3); line-height: 1.6; margin-bottom: 20px; }

.case-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.case-metric {
  text-align: center; padding: 12px 8px;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
}

.case-metric .val { font-size: 18px; font-weight: 800; color: var(--cyan-lt); }
.case-metric .lbl { font-size: 10px; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ===== SOLUTIONS PAGE ===== */
.solution-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px 36px;
  transition: var(--transition); position: relative; overflow: hidden;
}

.solution-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  opacity: 0; transition: opacity var(--transition);
}

.solution-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.solution-card:hover::after { opacity: 1; }

.solution-icon {
  font-size: 40px; margin-bottom: 24px;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.4));
}

.solution-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.solution-card p { font-size: 14.5px; color: var(--gray-3); line-height: 1.7; margin-bottom: 28px; }

/* ===== RESOURCES PAGE ===== */
.article-featured {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  transition: var(--transition);
}

.article-featured:hover {
  border-color: rgba(124,58,237,0.3);
  box-shadow: var(--glow-p);
}

.article-featured-visual {
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(6,182,212,0.15));
  min-height: 320px; display: flex; align-items: center;
  justify-content: center; font-size: 64px; position: relative;
}

.article-featured-body { padding: 48px; }
.article-featured-body .tag { margin-bottom: 20px; }
.article-featured-body h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
.article-featured-body p { font-size: 15px; color: var(--gray-3); line-height: 1.7; margin-bottom: 28px; }

.article-meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.article-meta span { font-size: 12px; color: var(--gray-4); }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-5); }

.article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-p);
}

.article-card-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 40px;
}

.article-card-body { padding: 24px; }
.article-card-body .tag { margin-bottom: 12px; }
.article-card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.article-card-body p { font-size: 13.5px; color: var(--gray-3); line-height: 1.6; }
.article-card-body .article-meta { margin-top: 16px; }

/* ===== ABOUT PAGE ===== */
.value-card {
  padding: 36px; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(6,182,212,0.02) 100%);
  transition: var(--transition);
}

.value-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-3px); }

.value-number {
  font-size: 64px; font-weight: 900; letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 20px;
}

.team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition); text-align: center;
}

.team-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-4px); }

.team-avatar {
  height: 200px; background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}

.team-info { padding: 24px; }
.team-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-info .role { font-size: 13px; color: var(--purple-lt); margin-bottom: 12px; }
.team-info p { font-size: 13.5px; color: var(--gray-3); line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-hero-title { color: var(--text); }
.contact-hero-dot { color: var(--purple); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact-form-group { margin-bottom: 24px; }
.contact-form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-3); margin-bottom: 8px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--white); font-size: 15px; font-family: var(--font);
  transition: var(--transition); outline: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: var(--gray-5);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--purple);
  background: rgba(124,58,237,0.05);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}

.contact-form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  margin-bottom: 16px; transition: var(--transition);
}

.contact-info-item:hover { border-color: rgba(124,58,237,0.3); }

.contact-info-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.contact-info-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--gray-3); }
.contact-info-item a:hover { color: var(--cyan); }

/* ===== NUMBER GLOW ===== */
.num-glow { color: var(--purple-lt); }

/* ===== BADGE COUNT ===== */
.inline-badge {
  display: inline-block;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2);
  color: var(--purple-lt); border-radius: 100px;
  font-size: 12px; font-weight: 700; padding: 2px 10px;
}

/* ===== NICHE PILL ===== */
.niche-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* ===== COMING SOON CARD ===== */
.coming-soon-card {
  background: rgba(255,255,255,0.02);
  border: 2px dashed rgba(124,58,237,0.2);
  border-radius: var(--radius-md); padding: 60px;
  text-align: center; color: var(--gray-4);
}

.coming-soon-card .big-icon { font-size: 48px; margin-bottom: 16px; }
.coming-soon-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-3); margin-bottom: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-featured { grid-template-columns: 1fr; }
  .process-timeline::before { left: 32px; }
  .timeline-step { grid-template-columns: 64px 1fr; }
  .timeline-step:nth-child(even) .step-content { order: initial; text-align: left; }
  .timeline-step .step-empty { display: none; }
  .timeline-step .step-spacer { display: none; }
  /* Pack rows (index.html & services.html) */
  .pack-row { grid-template-columns: 1fr; gap: 32px; }
  .pack-row-reverse { direction: ltr; }
  /* Feat-service alternating rows */
  .feat-service { grid-template-columns: 1fr; }
  .feat-service.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Footer: stack to single column — !important pour écraser les inline styles */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::before { display: none; }
  .stat-item { padding: 28px 16px; }

  /* Cards */
  .pricing-card { padding: 36px 28px; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
  .card { padding: 28px; }

  /* Hero */
  .hero h1 { letter-spacing: -0.025em; }
  .page-hero { padding: 120px 0 64px; }

  /* Section spacing */
  .section { padding: 72px 0; }
  .section-lg { padding: 96px 0; }

  /* CTA section */
  .cta-section { padding: 80px 0; }
  .cta-section .btn-group { flex-direction: column; align-items: center; }
  .cta-section .btn-group .btn { width: 100%; max-width: 340px; }

  /* Pack rows */
  .pack-row { grid-template-columns: 1fr; gap: 32px; }
  .pack-row-reverse { direction: ltr; }
  .pack-row > div, .pack-row > * { direction: ltr; }

  /* Feat service */
  .feat-service { grid-template-columns: 1fr; gap: 32px; }
  .feat-service.reverse { direction: ltr; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }

  /* Process / how-it-works timeline */
  .process-timeline::before { left: 28px; }
  .timeline-step { grid-template-columns: 56px 1fr; gap: 20px; }

  /* Portfolio filter bar */
  .filter-bar { gap: 8px; flex-wrap: wrap; }
  .filter-btn { font-size: 12px; padding: 8px 14px; }

  /* Talents join CTA */
  .talents-join-cta { grid-template-columns: 1fr; padding: 36px 24px; gap: 24px; text-align: center; }
  .talents-join-cta a { width: 100%; }
}

@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  .section, .section-lg { padding: 60px 0; }

  /* Stats: 3 colonnes compactes sur très petit écran */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item::before { display: none; }
  .stat-item { padding: 20px 8px; }
  .stat-number { font-size: clamp(24px, 7vw, 40px); }
  .stat-label { font-size: 10px; letter-spacing: 0.04em; }

  /* Buttons */
  .filter-bar { gap: 6px; }
  .btn-lg { padding: 15px 24px; font-size: 15px; }
  .btn { padding: 12px 22px; font-size: 14px; }

  /* Hero CTA */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* Footer bottom: stack legal links */
  .footer-legal { flex-direction: column; gap: 8px; }

  /* Cards */
  .card { padding: 24px; }
  .pricing-card { padding: 28px 20px; }
  .case-metrics { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(28px, 8vw, 40px); }

  /* Pack rows: ensure images don't overflow */
  .pack-img-box { height: 240px; }

  /* Solutions — mini stats 2 col → 1 col */
  .sol-stats-mini { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Timeline */
  .timeline-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-num { width: 48px; height: 48px; font-size: 18px; }
}


/* ============================================================
   ✦ VIRAL ACQUISITION — ANIMATION & LIVENESS LAYER
   Inspired by Viral Nation's premium dynamic aesthetic
============================================================ */

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--purple));
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  z-index: 9999;
  transition: width 0.1s linear;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Cursor Spotlight ── */
#cursor-spotlight {
  position: fixed;
  pointer-events: none;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: transform 0.05s ease;
  will-change: transform;
}

/* ── Animated Shimmer on gradient-text ── */
.gradient-text {
  background: linear-gradient(
    270deg,
    var(--purple-lt),
    var(--cyan),
    #F5488B,
    var(--purple-lt)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 6s ease infinite;
}
@keyframes textShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Animated Tag dot pulse ── */
.tag::before {
  content: '◉';
  font-size: 9px;
  color: var(--purple-lt);
  animation: dotPulse 2s ease-in-out infinite;
  margin-right: 2px;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Button Shine ── */
.btn-primary::before,
.btn-cyan::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::before,
.btn-cyan:hover::before {
  left: 150%;
}

/* ── Card Border Glow Animation ── */
.card:hover,
.pricing-card:hover {
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.4),
    0 20px 60px rgba(0,0,0,0.5),
    0 0 60px rgba(124,58,237,0.15);
  animation: borderPulse 2s ease infinite;
}
@keyframes borderPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(124,58,237,0.4), 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.15); }
  50%       { box-shadow: 0 0 0 1px rgba(124,58,237,0.7), 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(124,58,237,0.25); }
}

/* ── Floating Animation ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float 7s ease-in-out infinite; }
.float-delay { animation: float 4s ease-in-out 2s infinite; }

/* ── Hero Grid animated appear ── */
.hero-grid {
  animation: gridFade 2s ease forwards;
}
@keyframes gridFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Ambient Orb Drift ── */
.hero-orb-1 { animation: orbDrift1 10s ease-in-out infinite; }
.hero-orb-2 { animation: orbDrift2 15s ease-in-out infinite; }
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(40px, -30px) scale(1.08); }
  50%  { transform: translate(20px, 30px) scale(0.95); }
  75%  { transform: translate(-30px, -10px) scale(1.03); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-40px, 20px) scale(1.05); }
  66%  { transform: translate(30px, -25px) scale(0.92); }
}

/* ── Grain overlay for depth — z-index kept LOW to never block any clicks ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.03;
  pointer-events: none !important;
  user-select: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* ── Stat Number Pulse on enter ── */
.stat-number.counting {
  animation: statPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes statPop {
  0%   { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1);    opacity: 1; }
}

/* ── Enhanced Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Slide animations upgrade ── */
.slide-in-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.slide-in-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.slide-in-left.visible, .slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ── Animated underline links ── */
.animated-link {
  position: relative;
  display: inline-block;
}
.animated-link::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 0%; height: 1px;
  background: linear-gradient(90deg, var(--purple-lt), var(--cyan));
  transition: width 0.35s ease;
}
.animated-link:hover::after { width: 100%; }

/* ── Hero stats ticker (for index.html stats row) ── */
.stat-item:hover .stat-number {
  background: linear-gradient(135deg, var(--purple-lt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

/* ── Glow rings on CTA section ── */
.cta-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.cta-section::before {
  pointer-events: none;
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.5; }
  50%       { transform: translate(-50%,-50%) scale(1.15); opacity: 0; }
}

/* ── Marquee speed-up on reverse for visual depth ── */
.marquee-track { animation-duration: 25s; }

/* ── Nav active link with gradient underline ── */
.nav-links a.active::after {
  width: 20px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple-lt), var(--cyan));
}

/* ── Footer brand logo animation ── */
.footer-brand .nav-logo:hover span {
  animation: logoGlow 0.5s ease forwards;
}
@keyframes logoGlow {
  0%   { text-shadow: none; }
  100% { text-shadow: 0 0 20px rgba(157,92,246,0.7); }
}

/* ── Talent card extra lift ── */
.t-card:hover {
  box-shadow:
    0 24px 60px rgba(0,0,0,0.6),
    0 0 60px rgba(124,58,237,0.12),
    0 0 0 1px rgba(124,58,237,0.35);
}

/* ── Section divider gradient line ── */
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4), rgba(6,182,212,0.4), transparent);
  margin: 0;
}

/* ── Glassmorphism card variant ── */
.card-glass {
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Number highlight color ── */
.highlight-num {
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-lt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================================
   ✦ LIGHT THEME OVERRIDES
   Thème clair premium — fond blanc cassé chaud
============================================================ */

/* Remap gray-2 pour fond blanc */
body { --gray-2: #374151; }

/* Footer : restaurer les gris clairs (fond sombre) */
footer {
  --gray-2: #E5E7EB;
  --gray-3: #9CA3AF;
  --gray-4: #6B7280;
  --gray-5: #374151;
}

/* Body & selection */
::selection { background: rgba(124,58,237,0.18); color: #0A0A0A; }
::-webkit-scrollbar-track { background: #F2F0EC; }

/* ── Navbar ── */
/* Toujours un fond blanc solide en thème clair — scrolled ou non */
#navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid #EBEBEB;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid #E0E0E0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.nav-links a { color: #4A4A4A; }
.nav-links a:hover, .nav-links a.active { color: #0A0A0A; background: rgba(0,0,0,0.04); }
.nav-hamburger span { background: #0A0A0A; }
/* Mobile menu — toujours visible et cliquable */
.nav-mobile {
  background: rgba(255,255,255,0.99) !important;
  border-bottom: 1px solid #E5E5E5;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 999;
}
.nav-mobile a { color: #0A0A0A; border-bottom-color: #E5E5E5; }
.lang-toggle { background: rgba(0,0,0,0.04); border-color: #E5E5E5; }
.lang-btn { color: #4A4A4A; }
.lang-btn:not(.active):hover { color: #0A0A0A; background: rgba(0,0,0,0.06); }

/* ── Hero ── */
.hero-bg {
  background: #FFFFFF !important;
}
.hero-grid { opacity: 0; }
.hero-orb { opacity: 0 !important; }
.hero p.lead { color: #555555; }

/* ── Stats band ── */
.stats-band { border-top-color: #E5E5E5; border-bottom-color: #E5E5E5; background: #FFFFFF; }
.stat-item::before { background: #E5E5E5; }
.stat-number {
  background: linear-gradient(135deg, #0A0A0A 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item:hover .stat-number {
  background: linear-gradient(135deg, var(--purple-lt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: #4A4A4A; }

/* ── Section header ── */
.section-header p { color: #4A4A4A; }

/* ── Cards ── */
.card {
  background: #FFFFFF;
  border-color: #E5E5E5;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.card p { color: #4A4A4A; }
.card:hover {
  box-shadow: 0 0 0 1px rgba(124,58,237,0.3), 0 16px 48px rgba(124,58,237,0.12);
  animation: none;
}
.card-icon { background: rgba(124,58,237,0.08); }

/* ── Marquee — stays dark for contrast ── */
.marquee-section {
  background: linear-gradient(90deg, #0A0A0A 0%, #120a1e 50%, #0A0A0A 100%) !important;
  border-color: transparent;
}
.marquee-item { color: #6B7280; }

/* ── Buttons ── */
.btn-outline { border-color: #D1D5DB; color: #0A0A0A; }
.btn-outline:hover { border-color: var(--purple-lt); color: var(--purple-lt); }
.btn-cyan { color: #FFFFFF; }

/* ── CTA section ── */
.cta-section p { color: #555555; }
.cta-section h2 { color: #0A0A0A; }
.cta-section { background: #FFFFFF; }

/* ── Page hero (inner pages) ── */
.page-hero-bg {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,0.08) 0%, transparent 70%),
              linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
}
.page-hero p { color: #555555; }

/* ── Sections : blanc uni ── */
.section { background: #FFFFFF; }

/* ── Pricing cards ── */
.pricing-card { background: #FFFFFF; border-color: #E5E5E5; box-shadow: 0 2px 16px rgba(0,0,0,0.05); }
.pricing-card.featured {
  background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, #FFFFFF 100%);
  border-color: var(--purple);
}
.pricing-card:hover { box-shadow: 0 16px 48px rgba(124,58,237,0.15); animation: none; }
.price-amount span { color: #4A4A4A; }
.price-period { color: #4A4A4A; }
.price-features li { color: #0A0A0A; border-bottom-color: #F0F0F0; }
.compare-table th, .compare-table td { border-bottom-color: #E5E5E5; }
.compare-table th { color: #4A4A4A; }
.compare-table td:first-child { color: #0A0A0A; }
.compare-table tr:hover td { background: rgba(0,0,0,0.02); }

/* ── Talents/Influencer cards ── */
.influencer-card { background: #FFFFFF; border-color: #E5E5E5; }
.influencer-stat { background: rgba(0,0,0,0.03); }
.platform-badge { background: rgba(0,0,0,0.05); color: #4A4A4A; }
.filter-btn { background: #FFFFFF; border-color: #E5E5E5; color: #4A4A4A; }
.filter-btn:hover, .filter-btn.active {
  background: rgba(124,58,237,0.08);
  border-color: var(--purple-lt);
  color: var(--purple);
}

/* ── Case study / Portfolio ── */
.case-study-card { background: #FFFFFF; border-color: #E5E5E5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.case-study-body p { color: #4A4A4A; }
.case-metric { background: rgba(0,0,0,0.03); }

/* ── Solutions ── */
.solution-card { background: #FFFFFF; border-color: #E5E5E5; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.solution-card p { color: #4A4A4A; }
.solution-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

/* ── Resources ── */
.article-featured { background: #FFFFFF; border-color: #E5E5E5; }
.article-featured-body p { color: #4A4A4A; }
.article-card { background: #FFFFFF; border-color: #E5E5E5; }
.article-card-body p { color: #4A4A4A; }
.article-meta span { color: #4A4A4A; }
.article-meta .dot { background: #D1D5DB; }

/* ── About ── */
.value-card {
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, rgba(6,182,212,0.02) 100%);
  border-color: #E5E5E5;
}
.value-card:hover { border-color: rgba(124,58,237,0.3); }
.team-card { background: #FFFFFF; border-color: #E5E5E5; }
.team-info p { color: #4A4A4A; }

/* ── Contact ── */
.contact-form-group label { color: #4A4A4A; }
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  background: #FFFFFF;
  border-color: #E5E5E5;
  color: #0A0A0A;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder { color: #9CA3AF; }
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  background: rgba(124,58,237,0.03);
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.08);
}
.contact-info-item { background: #FFFFFF; border-color: #E5E5E5; }
.contact-info-item p, .contact-info-item a { color: #4A4A4A; }

/* ── How it works steps ── */
.step-content p { color: #4A4A4A; }

/* ── Coming soon ── */
.coming-soon-card { background: rgba(0,0,0,0.02); border-color: rgba(124,58,237,0.2); }
.coming-soon-card h3 { color: #4A4A4A; }

/* ── Glassmorphism variant ── */
.card-glass {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.06);
  backdrop-filter: blur(20px);
}

/* ── Footer — stays dark ── */
footer {
  background: #0A0A0A;
  border-top-color: rgba(255,255,255,0.06);
}
footer, footer * { --border: rgba(255,255,255,0.07); }
.footer-brand p { color: var(--gray-4); }
.footer-col h4 { color: var(--gray-5); }
.footer-col ul li a { color: var(--gray-4); }
.footer-col ul li a:hover { color: #FFFFFF; }
.footer-contact a { color: var(--gray-4); }
.footer-contact a:hover { color: var(--cyan); }
.footer-tagline { color: var(--gray-5); }
.footer-bottom p { color: var(--gray-5); }
.footer-socials a { color: var(--gray-4); border-color: rgba(255,255,255,0.07); }
.footer-socials a:hover { color: var(--purple-lt); border-color: var(--purple-lt); }

/* ── Section divider on light bg ── */
.section-divider {
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.2), rgba(6,182,212,0.2), transparent);
}

/* ── Cursor spotlight — softer on light bg ── */
#cursor-spotlight {
  background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 70%);
}

/* ── Content heading & value-title overrides ── */
.value-title { color: #0A0A0A; }
.timeline-content h3, .step-content h3 { color: #0A0A0A; }

/* Safety net: any inline color:white h-tags inside sections (not footer) */
body:not(footer) .section h2[style*="color: white"],
body:not(footer) .section h3[style*="color: white"],
body:not(footer) .section h4[style*="color: white"],
body:not(footer) section h2[style*="color: white"],
body:not(footer) section h3[style*="color: white"] { color: #0A0A0A !important; }

/* ── how-it-works step node keeps white number on purple ── */
.step-node { color: #FFFFFF !important; }

/* ── Services page specific ── */
.service-block h2, .service-content h2 { color: #0A0A0A; }
.service-block p, .service-content p { color: #4A4A4A; }

/* ── Gray-3 side elements (blog-excerpt etc) */
.blog-excerpt, .blog-meta, .resources-subtitle { color: #555555; }

/* ══════════════════════════════════════════
   ANIMATION SAFETY NET
   If js-animate is NOT on <html> (script blocked / slow load),
   force all animated elements visible immediately.
══════════════════════════════════════════ */
html:not(.js-animate) .fade-in,
html:not(.js-animate) .slide-in-left,
html:not(.js-animate) .slide-in-right,
html:not(.js-animate) .scale-in {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
