/* ═══════════════════════════════════════
   PUBLIO DESIGN SYSTEM — Rankeo-inspired, Apple Blue accent
   ═══════════════════════════════════════ */

:root {
  --accent: #0071E3;
  --accent-dark: #0051A8;
  --accent-light: #5AC8FA;
  --accent-rgb: 0, 113, 227;
  --accent-light-rgb: 90, 200, 250;
  --success: #34C759;
  --warning: #FF9500;
  --danger: #FF3B30;

  --bg-primary: #030712;
  --bg-secondary: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.03);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 113, 227, 0.3);

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 860px; }
.text-center { text-align: center; }

/* ─── Typography utils ─── */
.gradient-text {
  background: linear-gradient(135deg, #0071E3 0%, #5AC8FA 50%, #0071E3 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
.eyebrow {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── Section spacing ─── */
.section {
  padding: 96px 0;
  position: relative;
}
.section-dark { background: var(--bg-secondary); }

/* ─── Glassmorphism card ─── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: background 0.5s var(--ease-spring),
              border-color 0.5s var(--ease-spring),
              transform 0.5s var(--ease-spring),
              box-shadow 0.5s var(--ease-spring);
  will-change: transform;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(var(--accent-rgb), 0.2);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 30px -5px rgba(var(--accent-rgb), 0.5);
  transition: box-shadow 0.3s var(--ease-spring), transform 0.3s var(--ease-spring), background 0.2s;
  will-change: transform;
}
.btn-primary:hover {
  background: #0060c0;
  box-shadow: 0 0 55px -5px rgba(var(--accent-rgb), 0.75);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }
.btn-primary.btn-block { width: 100%; justify-content: center; }
.btn-primary.btn-pulse { animation: btn-pulse 2.5s ease-in-out infinite; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  color: var(--text-primary);
  transform: translateY(-1px);
}
.btn-ghost.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

.btn-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: not-allowed;
}

/* ─── Links to Poitiers Digital universe ─── */
.link-pd {
  color: var(--accent-light);
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
}
.link-pd::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0.3;
  transition: opacity 0.2s;
}
.link-pd:hover { color: #fff; }
.link-pd:hover::after { opacity: 1; }

/* ─── Background patterns ─── */
.bg-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  backdrop-filter: blur(14px) saturate(180%);
  background: rgba(3, 7, 18, 0.85);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo img { height: 30px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links .nav-login { color: var(--text-muted); font-size: 0.85rem; }
.nav-links .nav-cta {
  margin-left: 8px;
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9px;
  box-shadow: 0 0 20px -5px rgba(var(--accent-rgb), 0.4);
  transition: box-shadow 0.3s, transform 0.2s, background 0.2s;
}
.nav-links .nav-cta:hover {
  background: #0060c0;
  box-shadow: 0 0 35px -5px rgba(var(--accent-rgb), 0.7);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.97);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-mobile-cta {
  margin-top: 8px;
  padding: 14px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 10px;
  text-align: center;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 113, 227, 0.17), transparent),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(90, 200, 250, 0.07), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 81, 168, 0.05), transparent);
}
.hero-dots { position: absolute; inset: 0; opacity: 0.35; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  top: -250px; left: 50%;
  transform: translateX(-30%);
  background: radial-gradient(circle, rgba(0, 113, 227, 0.14) 0%, transparent 70%);
  animation: glow-pulse 7s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: 5%; right: -60px;
  background: radial-gradient(circle, rgba(90, 200, 250, 0.07) 0%, transparent 70%);
  animation: glow-pulse 9s ease-in-out infinite 2.5s;
}
.particles-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 68px;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(0, 113, 227, 0.1);
  border: 1px solid rgba(0, 113, 227, 0.28);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.hero-title-prefix {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hero-typing-wrap { display: block; min-height: 1.15em; }
.hero-typing {
  background: linear-gradient(135deg, #0071E3 0%, #5AC8FA 50%, #0071E3 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}
.cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: var(--accent);
  margin-left: 3px;
  vertical-align: middle;
  animation: cursor-blink 1s step-end infinite;
  border-radius: 1px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 24px 0 36px;
  max-width: 500px;
}
.hero-subtitle strong { color: var(--text-primary); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-icon { color: var(--success); font-weight: 800; }

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 36px;
}
.hero-stat {
  background: var(--bg-primary);
  padding: 18px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hero-stat-val {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-val .accent-num {
  background: linear-gradient(135deg, #0071E3, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 5px; line-height: 1.3; }

/* Hero mockup */
.hero-visual { position: relative; }
.mockup-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 113, 227, 0.18), transparent 70%);
  pointer-events: none; z-index: 0;
  filter: blur(20px);
}
.hero-image {
  width: 100%; height: auto;
  max-width: 560px;
  border-radius: 16px;
  position: relative; z-index: 1;
  animation: float 7s ease-in-out infinite;
  box-shadow: 0 40px 100px -30px rgba(0, 113, 227, 0.25), 0 0 60px -20px rgba(90, 200, 250, 0.15);
}
.preview-frame {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative; z-index: 1;
  animation: float 7s ease-in-out infinite;
}
.preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF3B30; }
.dot.yellow { background: #FF9500; }
.dot.green { background: #34C759; }
.preview-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.67rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
  margin: 0 8px;
}
.preview-content {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 270px;
}
.preview-sidebar {
  background: #0d1117;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.p-logo { display: flex; align-items: center; gap: 6px; padding: 6px 8px; margin-bottom: 10px; }
.p-square { width: 22px; height: 22px; background: var(--accent); border-radius: 5px; }
.p-dot { width: 7px; height: 7px; background: var(--accent-light); border-radius: 50%; }
.sb-item {
  padding: 6px 9px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sb-item.active { background: rgba(0,113,227,0.15); color: var(--accent-light); }
.preview-main { padding: 14px; overflow: hidden; }
.preview-day { margin-bottom: 12px; }
.day-head {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.post-card {
  display: flex; gap: 9px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 9px;
  margin-bottom: 5px;
}
.post-time { font-size: 0.64rem; color: var(--accent-light); font-weight: 600; white-space: nowrap; padding-top: 1px; }
.post-channels { font-size: 0.72rem; margin-bottom: 3px; }
.post-text { font-size: 0.64rem; color: var(--text-secondary); line-height: 1.4; }

/* ═══════════════════════════════════════
   COMPARAISON
   ═══════════════════════════════════════ */

.comparison-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 48px 0 24px;
}
.bar-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 16px;
}
.bar-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-logo { font-size: 1.1rem; flex-shrink: 0; }
.brand-name { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(52,199,89,0.12);
  color: var(--success);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid rgba(52,199,89,0.28);
  white-space: nowrap;
}
.bar-track {
  background: rgba(255,255,255,0.04);
  border-radius: 100px;
  height: 36px;
  position: relative;
  overflow: visible;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  min-width: 56px;
  position: relative;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-publio .brand-name { color: var(--success); font-weight: 700; }
.bar-fill-publio {
  background: linear-gradient(90deg, #34C759, #30d158);
  box-shadow: 0 0 20px rgba(52,199,89,0.35);
  min-width: 52px;
  max-width: 5%;
}
.bar-fill-r1 { background: linear-gradient(90deg, #FF9F9F, #FF6B6B); }
.bar-fill-r2 { background: linear-gradient(90deg, #FF8080, #FF5252); }
.bar-fill-r3 { background: linear-gradient(90deg, #FF6060, #FF3B30); }
.bar-fill-r4 { background: linear-gradient(90deg, #E83030, #C0392B); }
.bar-fill-r5 { background: linear-gradient(90deg, #C0392B, #9B2020); }
.bar-fill-r6 { background: linear-gradient(90deg, #9B2020, #7B1515); }
.bar-fill-r7 { background: linear-gradient(90deg, #7B1515, #5B0F0F); }
.bar-value { font-size: 0.73rem; font-weight: 700; color: rgba(255,255,255,0.92); white-space: nowrap; }

.savings-box {
  background: rgba(0,113,227,0.07);
  border: 1px solid rgba(0,113,227,0.22);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  margin-top: 12px;
}
.savings-amount { display: flex; align-items: baseline; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.savings-prefix { font-size: 1rem; color: var(--text-secondary); }
.savings-value {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0071E3, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.savings-box p { font-size: 0.84rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   PAIN SECTION
   ═══════════════════════════════════════ */

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 40px 0;
  max-width: 720px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.pain-item:hover { border-color: rgba(255,59,48,0.18); background: rgba(255,255,255,0.04); }
.pain-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.pain-text { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.55; }
.pain-text strong { color: var(--text-primary); }

.pain-callout {
  background: rgba(0,113,227,0.07);
  border: 1px solid rgba(0,113,227,0.18);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 22px 26px;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  max-width: 720px;
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: background 0.4s var(--ease-spring),
              border-color 0.4s var(--ease-spring),
              transform 0.4s var(--ease-spring),
              box-shadow 0.4s var(--ease-spring);
  will-change: transform;
}
.feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,113,227,0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(0,113,227,0.18);
}
.feature-icon { font-size: 1.65rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════
   PLATFORMS
   ═══════════════════════════════════════ */

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.platform-card {
  padding: 44px 28px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: background 0.4s var(--ease-spring),
              border-color 0.4s var(--ease-spring),
              transform 0.4s var(--ease-spring),
              box-shadow 0.4s var(--ease-spring);
  will-change: transform;
}
.platform-card:hover { transform: translateY(-6px); }
.platform-card.fb:hover { border-color: rgba(24,119,242,0.4); box-shadow: 0 24px 60px -20px rgba(24,119,242,0.2); }
.platform-card.ig:hover { border-color: rgba(193,53,132,0.4); box-shadow: 0 24px 60px -20px rgba(193,53,132,0.2); }
.platform-card.li:hover { border-color: rgba(10,102,194,0.4); box-shadow: 0 24px 60px -20px rgba(10,102,194,0.2); }

.platform-icon {
  width: 76px; height: 76px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: transform 0.3s var(--ease-spring);
}
.platform-card:hover .platform-icon { transform: scale(1.08); }
.fb-icon { background: #1877F2; }
.ig-icon { background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.li-icon { background: #0A66C2; }
.tt-icon { background: linear-gradient(135deg, #25F4EE 0%, #000000 50%, #FE2C55 100%); }

.platform-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.platform-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════
   DEAL SECTION
   ═══════════════════════════════════════ */

.deal-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  font-style: italic;
  max-width: 700px;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.deal-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.deal-card:hover { border-color: var(--border-accent); background: rgba(255,255,255,0.04); transform: translateY(-3px); }
.deal-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,113,227,0.12);
  border: 1px solid rgba(0,113,227,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
  color: var(--accent);
  margin-bottom: 18px;
}
.deal-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; line-height: 1.35; }
.deal-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.65; }
.deal-closing {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.7;
}
.deal-closing strong { color: var(--text-primary); }

/* ═══════════════════════════════════════
   STEPS
   ═══════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-connector {
  position: absolute;
  top: 27px;
  left: calc(33.33% - 10px);
  right: calc(33.33% - 10px);
  height: 2px;
  background: linear-gradient(90deg, rgba(0,113,227,0.5), rgba(0,113,227,0.15) 50%, rgba(0,113,227,0.5));
  z-index: 0;
}
.step-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  position: relative; z-index: 1;
  transition: border-color 0.3s, transform 0.3s;
}
.step-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0,113,227,0.1);
  border: 2px solid rgba(0,113,227,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; color: var(--accent);
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════
   POUR QUI
   ═══════════════════════════════════════ */

.rule-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,113,227,0.2);
  border-radius: 24px;
  padding: 52px 48px;
  max-width: 680px;
  margin: 40px auto 0;
  text-align: center;
  box-shadow: 0 0 60px -30px rgba(0,113,227,0.15);
}
.rule-checks { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.rule-check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}
.check-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(52,199,89,0.12);
  border: 1.5px solid rgba(52,199,89,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--success);
  font-size: 0.82rem; font-weight: 800;
  flex-shrink: 0;
}
.rule-subtext { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.75; }
.rule-subtext strong { color: var(--text-primary); }

/* ═══════════════════════════════════════
   TARIFS
   ═══════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  position: relative;
}
.price-card-free {
  border-color: rgba(0,113,227,0.3);
  box-shadow: 0 0 50px -25px rgba(0,113,227,0.22);
}
.price-card-pro { opacity: 0.65; }

.price-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,113,227,0.12);
  border: 1px solid rgba(0,113,227,0.28);
  color: var(--accent-light);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  margin-bottom: 14px;
}
.price-badge-soon {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,149,0,0.1);
  border: 1px solid rgba(255,149,0,0.22);
  color: var(--warning);
  border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  margin-bottom: 14px;
}
.price-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--text-primary); margin-bottom: 14px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-zero {
  font-size: 3.75rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #0071E3, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-eur { font-size: 2rem; font-weight: 800; color: var(--text-secondary); }
.price-num { font-size: 2.25rem; font-weight: 900; color: var(--text-secondary); line-height: 1; }
.price-suffix { font-size: 0.87rem; color: var(--text-muted); align-self: flex-end; padding-bottom: 4px; }
.price-period { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 20px; }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; color: var(--text-secondary); line-height: 1.45;
}
.price-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-footnote {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.price-footnote strong { color: var(--text-secondary); }
.price-footnote a { color: var(--accent-light); text-decoration: underline; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0,113,227,0.22); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  cursor: pointer;
  gap: 14px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-family: inherit;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question-text { font-size: 0.93rem; font-weight: 600; line-height: 1.45; color: var(--text-primary); }
.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.35s var(--ease-spring), color 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-spring);
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 700px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.89rem; color: var(--text-secondary); line-height: 1.75; }

/* ═══════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════ */

.cta-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,113,227,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; margin-bottom: 48px; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.signup-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(0,113,227,0.18);
  border-radius: 22px;
  padding: 40px 44px;
  max-width: 620px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-field::placeholder { color: var(--text-muted); }
.form-field:focus {
  border-color: rgba(0,113,227,0.5);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.1);
  background: rgba(255,255,255,0.06);
}
.form-mb { margin-bottom: 14px; }
.form-legal { margin-top: 14px; font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; text-align: center; }
.form-legal a { color: var(--accent-light); text-decoration: underline; }
.cta-ps-box {
  margin: 36px auto 0;
  max-width: 620px;
  padding: 28px 32px;
  background: rgba(0, 113, 227, 0.05);
  border: 1px solid rgba(0, 113, 227, 0.2);
  border-radius: 14px;
}
.cta-ps {
  text-align: left;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: normal;
}
.cta-ps:last-child { margin-bottom: 0; }
.cta-ps strong {
  color: var(--accent-light);
  font-weight: 700;
  margin-right: 4px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; max-width: 260px; }
.footer-rgpd {
  display: flex; align-items: center; gap: 7px;
  margin-top: 14px;
  font-size: 0.73rem; color: var(--text-muted);
}
.footer-rgpd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.86rem; color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(0.4deg); }
  66% { transform: translateY(-6px) rotate(-0.4deg); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.7); }
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 30px -5px rgba(0,113,227,0.5); }
  50% { box-shadow: 0 0 60px -3px rgba(0,113,227,0.85); }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-spring), transform 0.85s var(--ease-spring);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; justify-content: center; }
  .bar-row { grid-template-columns: 100px 1fr; gap: 10px; }
  .brand-name { font-size: 0.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .signup-form { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .rule-card { padding: 32px 22px; }
  .savings-amount { flex-direction: column; gap: 4px; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.55rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat-val { font-size: 1.2rem; }
  .bar-row { grid-template-columns: 85px 1fr; gap: 8px; }
}
