/* ============================================================
   NUMBAO by AKAZ — Landing Page CSS
   ============================================================ */

/* ── Reset landing ───────────────────────────────────────── */
/* Inter est chargé via style.css @import */
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ─────────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,17,23,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.lp-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.lp-nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.lp-nav-links a:hover { color: var(--text); }

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

@media (max-width: 600px) {
  .lp-nav-links { display: none; }
  .lp-nav-actions { gap: 6px; }
  .lp-nav-actions .lp-btn-ghost { padding: 7px 10px; font-size: 12px; }
  .lp-nav-actions .lp-btn-accent { padding: 7px 12px; font-size: 12px; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.lp-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.lp-btn-accent:hover { opacity: 0.88; transform: translateY(-1px); }
.lp-btn-accent svg { width: 15px; height: 15px; }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: none;
  color: var(--text-muted);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.lp-btn-ghost:hover { color: var(--text); background: var(--surface2); }

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.lp-btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }

.lp-btn-muted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: var(--surface2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
}

.lp-btn-lg { padding: 13px 28px; font-size: 15px; }
.lp-btn-full { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.lp-hero {
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 20px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.1s forwards;
}
.lp-hero-badge svg { width: 13px; height: 13px; }

.lp-hero-title {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.2s forwards;
}

.lp-hero-accent {
  color: var(--accent-light);
  position: relative;
}

.lp-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.35s forwards;
}

.lp-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.5s forwards;
}

.lp-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.65s forwards;
}

.lp-stat { display: flex; align-items: center; gap: 5px; }
.lp-stat strong { color: var(--text); font-size: 16px; font-weight: 700; }
.lp-stat-sep { color: var(--border); }

@media (max-width: 480px) {
  .lp-hero { padding: 60px 0 50px; }
  .lp-hero-sub { font-size: 16px; }
}

/* ── Section headers ─────────────────────────────────────── */
.lp-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.lp-section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.lp-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 44px;
}

/* ── Tools section ───────────────────────────────────────── */
.lp-tools {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.lp-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.lp-tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.5s ease forwards;
}
.lp-tool-card:nth-child(1) { animation-delay: 0s; }
.lp-tool-card:nth-child(2) { animation-delay: 0.05s; }
.lp-tool-card:nth-child(3) { animation-delay: 0.1s; }
.lp-tool-card:nth-child(4) { animation-delay: 0.15s; }
.lp-tool-card:nth-child(5) { animation-delay: 0.2s; }
.lp-tool-card:nth-child(6) { animation-delay: 0.25s; }
.lp-tool-card:nth-child(n+7) { animation-delay: 0.3s; }

.lp-tool-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(108,99,255,0.15);
}

@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .lp-tools-grid .lp-tool-card:nth-child(n+7) { display: none; }
  .lp-tools-grid.expanded .lp-tool-card:nth-child(n+7) { display: block; }
}
.lp-tool-card.lp-tool-locked {
  border-color: rgba(108,99,255,0.35);
  background: rgba(108,99,255,0.04);
}
.lp-tool-card.lp-tool-locked:hover { border-color: var(--accent); }

.lp-tool-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-tool-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-icon-accent { background: rgba(108,99,255,0.15); color: var(--accent-light); }
.lp-icon-purple { background: rgba(108,99,255,0.2); color: var(--accent-light); }
.lp-icon-gold { background: rgba(240,165,0,0.15); color: var(--warning); }
.lp-tool-icon svg { width: 18px; height: 18px; }

.lp-tool-card.lp-tool-pro {
  border-color: rgba(240,165,0,0.3);
  background: rgba(240,165,0,0.03);
}
.lp-tool-card.lp-tool-pro:hover {
  border-color: var(--warning);
  box-shadow: 0 8px 24px rgba(240,165,0,0.12);
}

.lp-badge-free {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(76,175,130,0.12);
  border: 1px solid rgba(76,175,130,0.25);
  border-radius: 10px;
  padding: 3px 8px;
}

.lp-badge-account {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(108,99,255,0.15);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 10px;
  padding: 3px 8px;
}

.lp-badge-pro {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--warning);
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 10px;
  padding: 3px 8px;
}

.lp-tool-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.lp-tool-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Access / Freemium section ───────────────────────────── */
.lp-access {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.lp-access > .lp-container > .lp-section-label,
.lp-access > .lp-container > .lp-section-title,
.lp-access > .lp-container > .lp-section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.lp-access-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lp-access-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* Bouton voir plus mobile */
.lp-show-more {
  display: none;
  margin: 20px auto 0;
  padding: 10px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.lp-show-more:hover { border-color: var(--accent); color: var(--text); }
@media (max-width: 640px) { .lp-show-more { display: block; } .lp-show-more.hidden { display: none; } }

.lp-access-account {
  border-color: var(--accent);
  background: rgba(108,99,255,0.05);
  position: relative;
}
.lp-access-account::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 14px;
  border-radius: 10px;
  white-space: nowrap;
}

.lp-access-pro {
  opacity: 0.7;
}

.lp-access-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-access-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 3px 10px;
}
.lp-access-badge.free    { color: var(--success);      background: rgba(76,175,130,0.12);  border: 1px solid rgba(76,175,130,0.25); }
.lp-access-badge.account { color: var(--accent-light); background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.3); }
.lp-access-badge.pro     { color: var(--text-muted);   background: var(--surface2);        border: 1px solid var(--border); }

.lp-access-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.lp-access-price span { font-size: 13px; font-weight: 400; color: var(--text-muted); }

.lp-access-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.lp-access-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.lp-access-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.lp-access-list li svg { width: 14px; height: 14px; stroke: var(--success); flex-shrink: 0; }
.lp-access-list li svg.icon-clock { stroke: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────── */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--surface);
}

.lp-footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.lp-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 12px;
}

.lp-footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition);
}
.lp-footer-col a:hover { color: var(--accent-light); }

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

.lp-footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.lp-footer-copy a { color: var(--accent-light); text-decoration: none; }

.lp-footer-social {
  display: flex;
  gap: 12px;
}
.lp-footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--surface2);
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.lp-footer-social a:hover { background: var(--accent); color: #fff; }
.lp-footer-social a svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
  .lp-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer-nav { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .lp-tools { padding: 50px 0; }
  .lp-access { padding: 50px 0; }
}
