/* ============================================================
   NEW PAGES – Scoped CSS
   All rules scoped under .np-scope to avoid conflicts with
   existing main.css and vendor.css
   ============================================================ */

/* ── CSS Variables (global, no conflict risk) ── */
:root {
    --np-brand-blue: #105494;
    --np-brand-bluelight: #e7f1ff;
    --np-brand-red: #ff5b4d;
    --np-brand-redlight: #fff0ef;
    --np-brand-accent: #65a30d;
    --np-brand-dark: #0f172a;
    --np-slate-50: #f8fafc;
    --np-slate-100: #f1f5f9;
    --np-slate-200: #e2e8f0;
    --np-slate-400: #94a3b8;
    --np-slate-500: #64748b;
    --np-slate-600: #475569;
    --np-slate-700: #334155;
    --np-slate-800: #1e293b;
    --np-slate-900: #0f172a;
    --np-blue-50: #eff6ff;
    --np-blue-100: #dbeafe;
    --np-blue-200: #bfdbfe;
    --np-blue-600: #2563eb;
    --np-blue-800: #1e40af;
}

/* ==========================================================================
   SCOPED BOOTSTRAP (grid + utilities only, no global resets)
   All rules under .np-scope so they never affect the header/nav/footer
   ========================================================================== */

/* ── Box-sizing (scoped) ── */
.np-scope *, .np-scope *::before, .np-scope *::after { box-sizing: border-box; }

/* ── Container ── */
.np-scope .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
@media (min-width: 576px)  { .np-scope .container { max-width: 540px; } }
@media (min-width: 768px)  { .np-scope .container { max-width: 720px; } }
@media (min-width: 992px)  { .np-scope .container { max-width: 960px; } }
@media (min-width: 1200px) { .np-scope .container { max-width: 1140px; } }

/* ── Grid ── */
/* On mobile (<768px), cards stay full-width (1 per row) for better readability.
   col-sm-6 is intentionally promoted to the md breakpoint instead of sm. */
.np-scope .row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; }
.np-scope [class*="col-"] { position: relative; width: 100%; padding-right: 15px; padding-left: 15px; }
@media (min-width: 768px) {
    .np-scope .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .np-scope .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .np-scope .col-md-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 992px) {
    .np-scope .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .np-scope .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .np-scope .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
}

/* ── Display utilities ── */
.np-scope .d-none { display: none !important; }
.np-scope .d-flex { display: flex !important; }
.np-scope .d-block { display: block !important; }
@media (min-width: 576px)  { .np-scope .d-sm-block { display: block !important; } }
@media (min-width: 768px)  { .np-scope .d-md-flex { display: flex !important; } .np-scope .d-md-block { display: block !important; } .np-scope .d-md-none { display: none !important; } }
@media (min-width: 992px)  { .np-scope .d-lg-block { display: block !important; } }

/* ── Flex utilities ── */
.np-scope .flex-column { flex-direction: column !important; }
.np-scope .flex-wrap { flex-wrap: wrap !important; }
.np-scope .justify-content-center { justify-content: center !important; }
.np-scope .justify-content-between { justify-content: space-between !important; }
.np-scope .align-items-center { align-items: center !important; }
.np-scope .align-items-start { align-items: flex-start !important; }
@media (min-width: 576px)  { .np-scope .flex-sm-row { flex-direction: row !important; } }
@media (min-width: 992px)  { .np-scope .justify-content-lg-start { justify-content: flex-start !important; } }

/* ── Spacing utilities ── */
.np-scope .mb-0 { margin-bottom: 0 !important; }
.np-scope .mb-2 { margin-bottom: .5rem !important; }
.np-scope .mb-3 { margin-bottom: 1rem !important; }
.np-scope .mb-4 { margin-bottom: 1.5rem !important; }
.np-scope .mb-5 { margin-bottom: 3rem !important; }
.np-scope .mt-1 { margin-top: .25rem !important; }
.np-scope .mt-2 { margin-top: .5rem !important; }
.np-scope .mt-3 { margin-top: 1rem !important; }
.np-scope .mt-4 { margin-top: 1.5rem !important; }
.np-scope .mt-5 { margin-top: 3rem !important; }
.np-scope .mr-2 { margin-right: .5rem !important; }
.np-scope .mr-3 { margin-right: 1rem !important; }
.np-scope .mx-auto { margin-left: auto !important; margin-right: auto !important; }
.np-scope .pt-3 { padding-top: 1rem !important; }
.np-scope .pt-4 { padding-top: 1.5rem !important; }
.np-scope .pb-2 { padding-bottom: .5rem !important; }
.np-scope .pb-3 { padding-bottom: 1rem !important; }
.np-scope .px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.np-scope .py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.np-scope .py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
@media (min-width: 992px) { .np-scope .mb-lg-0 { margin-bottom: 0 !important; } .np-scope .mt-lg-0 { margin-top: 0 !important; } }

/* ── Text utilities ── */
.np-scope .text-center { text-align: center !important; }
.np-scope .text-uppercase { text-transform: uppercase !important; }
.np-scope .text-white { color: #fff !important; }
.np-scope .text-dark { color: #343a40 !important; }
.np-scope .text-muted { color: #6c757d !important; }
.np-scope .text-primary { color: var(--np-brand-blue) !important; }
.np-scope .text-success { color: #28a745 !important; }
.np-scope .text-decoration-none { text-decoration: none !important; }
@media (min-width: 992px) { .np-scope .text-lg-left { text-align: left !important; } }

/* ── Misc utilities ── */
.np-scope .w-100 { width: 100% !important; }
.np-scope .h-100 { height: 100% !important; }
.np-scope .position-relative { position: relative !important; }
.np-scope .rounded { border-radius: .25rem !important; }
.np-scope .rounded-pill { border-radius: 50rem !important; }
.np-scope .border-top { border-top: 1px solid #dee2e6 !important; }
.np-scope .border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.np-scope .border-primary { border-color: var(--np-brand-blue) !important; }
.np-scope .img-fluid { max-width: 100%; height: auto; }

/* ── Base ── */
.np-scope { font-family: 'Inter', sans-serif; color: var(--np-slate-800); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; padding-top: 160px; }
.np-scope ::selection { background-color: var(--np-brand-blue); color: #fff; }
.np-scope .font-heading { font-family: 'Urbanist', sans-serif; }
.np-scope h1, .np-scope h2, .np-scope h3, .np-scope h4 { font-family: 'Urbanist', sans-serif; font-weight: 800; }

/* ── Container 1280px ── */
.np-scope .container-xl { max-width: 1280px; margin: 0 auto; padding: 0 16px; width: 100%; }
@media (min-width: 576px) { .np-scope .container-xl { padding: 0 24px; } }
@media (min-width: 1024px) { .np-scope .container-xl { padding: 0 32px; } }


/* ==========================================================================
   MODULE/SOLUTION PAGES (with sidebar)
   ========================================================================== */

/* ── Page Layout ── */
.np-scope .page-layout { display: flex; flex-direction: column; gap: 48px; padding-bottom: 48px; }
@media (min-width: 992px) { .np-scope .page-layout { flex-direction: row; } }

/* ── Sidebar ── */
.np-scope .page-sidebar { width: 100%; flex-shrink: 0; z-index: 10; }
@media (min-width: 992px) { .np-scope .page-sidebar { width: 288px; } }
@media (max-width: 991.98px) { .np-scope .page-sidebar { display: none; } }
.np-scope .sidebar-sticky { position: sticky; top: 96px; }
.np-scope .sidebar-card { background-color: var(--np-slate-50); border-radius: 24px; padding: 24px; border: 1px solid var(--np-slate-200); box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.np-scope .sidebar-back { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 0 4px; color: var(--np-slate-500); transition: color 0.2s; text-decoration: none !important; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.np-scope .sidebar-back:hover { color: var(--np-brand-blue); }
.np-scope .sidebar-back i { font-size: 0.875rem; transition: transform 0.3s; }
.np-scope .sidebar-back:hover i { transform: translateX(-4px); }
.np-scope .sidebar-section-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 16px 4px 0; border-top: 1px solid var(--np-slate-200); }
.np-scope .sidebar-section-header i { color: var(--np-brand-blue); font-size: 0.875rem; }
.np-scope .sidebar-section-header h3 { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: var(--np-slate-400); margin: 0; }
.np-scope .nav-module-link { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 12px; border: 1px solid transparent; color: var(--np-slate-600); font-weight: 700; font-size: 0.875rem; line-height: 1.25; transition: all 0.2s; margin-bottom: 6px; text-decoration: none !important; }
.np-scope .nav-module-link:hover { background-color: #fff; color: var(--np-brand-blue); border-color: var(--np-slate-200); }
.np-scope .nav-module-link .icon-wrap { padding: 8px; border-radius: 8px; background-color: var(--np-slate-100); transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.np-scope .nav-module-link .icon-wrap i { width: 16px; text-align: center; }
.np-scope .nav-module-link:hover .icon-wrap { background-color: var(--np-brand-blue); color: #fff; }
.np-scope .nav-module-link.active { background-color: #fff; border-color: var(--np-slate-200); box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); color: var(--np-brand-blue); }
.np-scope .nav-module-link.active .icon-wrap { background-color: var(--np-brand-blue); color: #fff; box-shadow: 0 4px 6px -1px rgba(16,84,148,0.2); }
.np-scope .promo-sidebar { padding: 24px; background-color: var(--np-brand-blue); border-radius: 24px; color: #fff; text-align: center; position: relative; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(16,84,148,0.1); margin-top: 24px; }
.np-scope .promo-sidebar .promo-label { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: #93c5fd; margin-bottom: 8px; }
.np-scope .promo-sidebar .promo-text { font-size: 0.875rem; font-weight: 500; margin-bottom: 16px; line-height: 1.625; }
.np-scope .promo-sidebar .promo-btn { display: block; width: 100%; padding: 12px; background: #fff; color: var(--np-brand-blue); border-radius: 12px; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; text-decoration: none !important; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); transition: background-color 0.2s; }
.np-scope .promo-sidebar .promo-btn:hover { background-color: var(--np-slate-50); }

/* ── Main Content ── */
.np-scope .page-main { flex: 1; padding-bottom: 96px; }
.np-scope .main-content { max-width: 896px; }
.np-scope .main-content > * + * { margin-top: 80px; }

/* ── Badge Module ── */
.np-scope .badge-module { display: inline-flex; align-items: center; gap: 8px; background-color: var(--np-blue-50); color: var(--np-brand-blue); padding: 6px 16px; border-radius: 99px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid var(--np-blue-100); }

/* ── Hero ── */
.np-scope .hero-title { font-family: 'Urbanist', sans-serif; font-size: 2.25rem; font-weight: 900; letter-spacing: -0.025em; color: var(--np-slate-900); line-height: 1.1; }
@media (min-width: 768px) { .np-scope .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .np-scope .hero-title { font-size: 3.75rem; } }
.np-scope .hero-title .brand-accent { color: var(--np-brand-blue); font-style: italic; }
.np-scope .hero-desc { font-size: 1.125rem; color: var(--np-slate-600); line-height: 1.625; max-width: 672px; font-weight: 500; }
@media (min-width: 768px) { .np-scope .hero-desc { font-size: 1.25rem; } }
.np-scope .btn-hero-primary { background-color: var(--np-brand-blue); color: #fff !important; padding: 12px 24px; border-radius: 99px; font-weight: 700; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: all 0.2s; text-decoration: none !important; text-align: center; display: inline-block; }
.np-scope .btn-hero-primary:hover { background-color: var(--np-blue-800); color: #fff; }
.np-scope .btn-hero-outline { background-color: #fff; color: var(--np-slate-700) !important; padding: 12px 24px; border-radius: 99px; font-weight: 700; border: 1px solid var(--np-slate-200); transition: all 0.2s; text-decoration: none !important; text-align: center; display: inline-block; }
.np-scope .btn-hero-outline:hover { background-color: var(--np-slate-50); color: var(--np-slate-700); }

/* ── Social proof ── */
.np-scope .social-proof { border-top: 1px solid var(--np-slate-100); border-bottom: 1px solid var(--np-slate-100); padding: 24px 0; }
.np-scope .social-proof .proof-label { font-size: 0.75rem; font-weight: 700; color: var(--np-slate-400); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; margin-bottom: 16px; }
.np-scope .social-proof .logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px; opacity: 0.5; filter: grayscale(100%); }
@media (min-width: 768px) { .np-scope .social-proof .logos { gap: 64px; } }
.np-scope .social-proof .logos h3 { font-family: 'Urbanist', sans-serif; font-size: 1.25rem; font-weight: 700; margin: 0; }

/* ── Dashboard Showcase ── */
.np-scope .dashboard-showcase { position: relative; max-width: 1024px; margin: 0 auto; padding: 64px 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
@media (min-width: 768px) { .np-scope .dashboard-showcase { flex-direction: row; } }
.np-scope .dashboard-glow { position: absolute; top: -16px; right: -16px; bottom: -16px; left: -16px; background: rgba(16, 84, 148, 0.05); border-radius: 48px; filter: blur(48px); transition: all 0.7s; }
.np-scope .dashboard-showcase:hover .dashboard-glow { background: rgba(16, 84, 148, 0.1); }
.np-scope .dash-wrap { position: relative; width: 100%; z-index: 10; }
@media (min-width: 768px) { .np-scope .dash-wrap { width: 66.67%; } }
.np-scope .dash-img { border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid var(--np-slate-200); width: 100%; object-fit: cover; transition: transform 0.5s ease; background: #fff; }
.np-scope .dashboard-showcase:hover .dash-img { transform: translateY(-8px); }
.np-scope .mobile-wrap { position: relative; width: 50%; z-index: 20; margin: 32px auto 0; }
@media (min-width: 768px) { .np-scope .mobile-wrap { width: 33.33%; margin-left: -80px; margin-top: 0; } }
.np-scope .mobile-img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); transition: transform 0.5s ease 0.1s; }
.np-scope .dashboard-showcase:hover .mobile-img { transform: translateY(-16px); }

/* ── Feature Cards ── */
.np-scope .feature-card { background: #fff; border: 1px solid var(--np-slate-200); border-radius: 24px; padding: 32px; height: 100%; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.np-scope .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(16,84,148,0.1); }
.np-scope .icon-box { width: 48px; height: 48px; background: var(--np-blue-50); color: var(--np-brand-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 24px; }
.np-scope .feature-card h3 { font-weight: 700; font-size: 1.25rem; color: var(--np-slate-900); margin-bottom: 12px; }
.np-scope .feature-card p { color: var(--np-slate-600); line-height: 1.625; font-size: 0.875rem; margin: 0; }

/* ── Benefits Section ── */
.np-scope .benefits-section { padding: 48px 32px; border-radius: 48px; background: var(--np-slate-50); border-top: 1px solid var(--np-slate-100); border-bottom: 1px solid var(--np-slate-100); }
.np-scope .benefit-icon { width: 64px; height: 64px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--np-blue-600); margin: 0 auto 12px; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); border: 1px solid var(--np-slate-200); }

/* ── Expert Cards ── */
.np-scope .card-dark { padding: 40px; background-color: var(--np-slate-900); color: #fff; border-radius: 48px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); height: 100%; }
.np-scope .card-dark .expert-icon { width: 56px; height: 56px; background: var(--np-brand-blue); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.np-scope .card-dark .expert-icon i { font-size: 1.5rem; }
.np-scope .card-dark h3 { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 24px; }
.np-scope .card-dark p { color: var(--np-slate-400); line-height: 1.625; font-size: 0.875rem; margin: 0; }
.np-scope .card-blue { padding: 40px; background-color: var(--np-blue-50); border: 1px solid var(--np-blue-100); border-radius: 48px; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); height: 100%; }
.np-scope .card-blue .expert-icon { width: 56px; height: 56px; background: #fff; color: var(--np-brand-blue); border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); margin-bottom: 24px; }
.np-scope .card-blue .expert-icon i { font-size: 1.5rem; }
.np-scope .card-blue h3 { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--np-slate-900); margin-bottom: 24px; }
.np-scope .card-blue p { color: var(--np-slate-700); line-height: 1.625; font-size: 0.875rem; margin: 0; }

/* ── FAQ ── */
.np-scope .faq-item { background: #fff; border: 1px solid var(--np-slate-200); border-radius: 16px; margin-bottom: 16px; overflow: hidden; cursor: pointer; }
.np-scope .faq-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--np-slate-900); }
.np-scope .faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; color: var(--np-slate-600); font-size: 0.875rem; }
.np-scope .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 24px; }
.np-scope .faq-icon { transition: transform 0.3s; }
.np-scope .faq-item.active .faq-icon { transform: rotate(45deg); color: var(--np-brand-blue); }

/* ── CTA Final ── */
.np-scope .cta-final { background-color: var(--np-brand-blue); border-radius: 48px; padding: 48px; color: #fff; text-align: center; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); position: relative; overflow: hidden; margin-top: 48px; }
.np-scope .cta-pattern { position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0.1; background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmYiLz48L3N2Zz4="); }
.np-scope .cta-final h2 { font-family: 'Urbanist', sans-serif; font-size: 1.875rem; font-weight: 700; margin-bottom: 24px; }
@media (min-width: 768px) { .np-scope .cta-final h2 { font-size: 2.25rem; } }
.np-scope .cta-final .cta-desc { color: #bfdbfe; margin-bottom: 40px; max-width: 576px; margin-left: auto; margin-right: auto; font-size: 1.125rem; }
.np-scope .btn-cta-white { background: #fff; color: var(--np-brand-blue) !important; padding: 16px 32px; border-radius: 99px; font-weight: 700; font-size: 1.125rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: all 0.2s; text-decoration: none !important; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; }
.np-scope .btn-cta-white:hover { background-color: var(--np-slate-50); color: var(--np-brand-blue); }
.np-scope .btn-cta-outline { background: transparent; color: #fff !important; padding: 16px 32px; border-radius: 99px; font-weight: 700; font-size: 1.125rem; border: 2px solid #fff; transition: all 0.2s; text-decoration: none !important; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; }
.np-scope .btn-cta-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }


/* ==========================================================================
   TOUTES NOS FONCTIONNALITÉS – Page Specific
   ========================================================================== */

.np-scope .gradient-text { background: linear-gradient(135deg, #105494 0%, #2563eb 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.np-scope .btn-brand { background-color: var(--np-brand-blue); color: #fff; border-radius: 99px; padding: 10px 24px; font-weight: 700; border: none; box-shadow: 0 10px 15px -3px rgba(16,84,148,0.3); transition: all 0.2s; white-space: nowrap; }
.np-scope .btn-brand:hover { background-color: #0c3d6e; color: #fff; transform: translateY(-2px); text-decoration: none; }
.np-scope .btn-red { background-color: var(--np-brand-red); color: #fff; border-radius: 99px; padding: 16px 32px; font-weight: 700; border: none; box-shadow: 0 10px 15px -3px rgba(255,91,77,0.3); transition: all 0.2s; white-space: nowrap; display: inline-block; }
.np-scope .btn-red:hover { background-color: #e54c40; color: #fff; transform: translateY(-2px); text-decoration: none; }
.np-scope .btn-outline-white { background: transparent; border: 2px solid #fff; color: #fff; border-radius: 99px; padding: 14px 32px; font-weight: 700; transition: all 0.2s; white-space: nowrap; display: inline-block; }
.np-scope .btn-outline-white:hover { background: #fff; color: var(--np-brand-blue); text-decoration: none; }

/* Need Cards */
.np-scope .need-card { background: #fff; border: 1px solid var(--np-slate-200); border-radius: 16px; padding: 24px; height: 100%; display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none !important; }
.np-scope .need-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px rgba(16, 84, 148, 0.1), 0 10px 10px -5px rgba(16, 84, 148, 0.04); border-color: #bfdbfe; }
.np-scope .need-card .icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 16px; transition: transform 0.3s; }
.np-scope .need-card:hover .icon { transform: scale(1.1); }
.np-scope .need-card h3 { font-size: 1.25rem; color: var(--np-slate-900); transition: color 0.3s; margin-bottom: 8px; }
.np-scope .need-card:hover h3 { color: var(--np-brand-blue); }
.np-scope .need-card p { color: var(--np-slate-600); font-size: 0.875rem; flex-grow: 1; margin-bottom: 16px; }
.np-scope .need-card .link-text { color: var(--np-brand-blue); font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; }
.np-scope .need-card .link-text i { font-size: 0.75rem; margin-left: 8px; transition: transform 0.3s; }
.np-scope .need-card:hover .link-text i { transform: translateX(4px); }

.np-scope .card-brand { background: var(--np-brand-blue); border-color: var(--np-brand-blue); }
.np-scope .card-brand h3, .np-scope .card-brand .link-text { color: #fff; }
.np-scope .card-brand p { color: var(--np-brand-bluelight); }
.np-scope .card-brand:hover h3, .np-scope .card-brand:hover .link-text { color: #fff; }
.np-scope .badge-new { background: #fff; color: var(--np-brand-blue); font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Feature Nav & Cards */
.np-scope .feat-nav-sticky { position: sticky; top: 110px; }
.np-scope .feat-nav-link { display: block; padding: 12px 16px; color: var(--np-slate-600); font-weight: 500; font-size: 0.875rem; border-left: 2px solid transparent; transition: all 0.2s; border-radius: 0 8px 8px 0; text-decoration: none !important; }
.np-scope .feat-nav-link:hover { background-color: var(--np-slate-100); border-left-color: #cbd5e1; color: var(--np-slate-800); }
.np-scope .feat-nav-link.active { color: var(--np-brand-blue); font-weight: 700; border-left-color: var(--np-brand-blue); background-color: var(--np-slate-50); }
.np-scope .feat-section { scroll-margin-top: 100px; }
.np-scope .feat-card { background: #fff; padding: 20px; border-radius: 12px; border: 1px solid var(--np-slate-200); box-shadow: 0 1px 2px rgba(0,0,0,0.05); height: 100%; }
.np-scope .feat-card-blue { background: var(--np-brand-bluelight); padding: 20px; border-radius: 12px; border: 1px solid #cce0ff; box-shadow: 0 1px 2px rgba(0,0,0,0.05); height: 100%; }

/* Sector Cards */
.np-scope .sector-card { position: relative; overflow: hidden; border-radius: 16px; display: block; }
.np-scope .sector-aspect { width: 100%; padding-top: 75%; position: relative; }
.np-scope .sector-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.np-scope .sector-card:hover img { transform: scale(1.05); }
.np-scope .sector-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: white; }
.np-scope .sector-desc { font-size: 0.75rem; color: #cbd5e1; opacity: 0; transform: translateY(16px); transition: all 0.3s; }
.np-scope .sector-card:hover .sector-desc { opacity: 1; transform: translateY(0); }

.np-scope .cta-section { position: relative; overflow: hidden; }
.np-scope .cta-section .cta-pattern { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 32px 32px; }


/* ==========================================================================
   ASSISTANT-IA – Page Specific
   ========================================================================== */

.np-scope .glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05); }
.np-scope .ai-gradient-text { background: linear-gradient(135deg, #105494 0%, #ff5b4d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.np-scope .mesh-bg { background-color: #f8fafc; background-image: radial-gradient(at 0% 0%, hsla(213,100%,88%,1) 0, transparent 50%), radial-gradient(at 100% 0%, hsla(4,100%,89%,1) 0, transparent 50%), radial-gradient(at 100% 100%, hsla(213,100%,88%,1) 0, transparent 50%), radial-gradient(at 0% 100%, hsla(4,100%,89%,1) 0, transparent 50%); }

@keyframes np-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.np-scope .animate-float { animation: np-float 6s ease-in-out infinite; }

/* Buttons (IA page) */
.np-scope .btn-brand-blue { background-color: var(--np-brand-blue); color: #fff; padding: 10px 20px; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; text-decoration: none; display: inline-block; transition: background-color 0.2s; box-shadow: 0 10px 15px -3px rgba(16,84,148,0.3); border: none; }
.np-scope .btn-brand-blue:hover { background-color: #0c3d6e; color: #fff; }
.np-scope .btn-brand-blue-lg { background-color: var(--np-brand-blue); color: #fff; padding: 16px 32px; border-radius: 9999px; font-size: 1.125rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: background-color 0.2s; box-shadow: 0 20px 25px -5px rgba(16,84,148,0.3); border: none; }
.np-scope .btn-brand-blue-lg:hover { background-color: #0c3d6e; color: #fff; }
.np-scope .btn-outline-light-lg { background: rgba(255,255,255,0.5); backdrop-filter: blur(12px); color: var(--np-slate-700); border: 1px solid var(--np-slate-200); padding: 16px 32px; border-radius: 9999px; font-size: 1.125rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s; }
.np-scope .btn-outline-light-lg:hover { background: #fff; color: var(--np-slate-700); }
.np-scope .btn-brand-red { background: var(--np-brand-red); color: #fff; padding: 16px 32px; border-radius: 9999px; font-weight: 700; font-size: 1.125rem; text-decoration: none; display: inline-block; transition: background 0.2s; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); border: none; }
.np-scope .btn-brand-red:hover { background: #dc2626; color: #fff; }
.np-scope .btn-ghost-white { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 16px 32px; border-radius: 9999px; font-weight: 700; font-size: 1.125rem; text-decoration: none; display: inline-block; transition: background 0.2s; }
.np-scope .btn-ghost-white:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Hero (IA page) */
.np-scope .hero-section { padding-top: 50px; padding-bottom: 50px; overflow: hidden; }
@media (min-width: 992px) { .np-scope .hero-section { padding-top: 50px; padding-bottom: 50px; } }
.np-scope .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 9999px; background: rgba(255,255,255,0.6); border: 1px solid #fff; backdrop-filter: blur(12px); color: var(--np-brand-blue); font-size: 0.75rem; font-weight: 700; margin-bottom: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.np-scope .hero-title-ia { font-family: 'Urbanist', sans-serif; font-size: 3rem; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 1.5rem; color: var(--np-slate-900); }
@media (min-width: 992px) { .np-scope .hero-title-ia { font-size: 3.75rem; } }
@media (min-width: 1200px) { .np-scope .hero-title-ia { font-size: 4.5rem; } }
.np-scope .hero-subtitle { font-size: 1.125rem; color: var(--np-slate-600); margin-bottom: 2rem; line-height: 1.75; max-width: 42rem; }
@media (min-width: 992px) { .np-scope .hero-subtitle { font-size: 1.25rem; } }
.np-scope .hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
@media (min-width: 992px) { .np-scope .hero-visual { height: 600px; justify-content: flex-end; } }
.np-scope .deco-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.np-scope .deco-circle-red { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 18rem; height: 18rem; background: rgba(255,91,77,0.2); filter: blur(80px); }
.np-scope .deco-circle-blue { top: 25%; right: 25%; width: 16rem; height: 16rem; background: rgba(16,84,148,0.2); filter: blur(80px); }

/* Chat Mockup */
.np-scope .chat-mockup { position: relative; width: 100%; max-width: 28rem; border-radius: 1rem; padding: 1.5rem; border: 1px solid #fff; }
.np-scope .chat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(226,232,240,0.5); }
.np-scope .chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--np-brand-blue), #7c3aed); display: flex; align-items: center; justify-content: center; color: #fff; }
.np-scope .chat-name { font-weight: 700; font-size: 0.875rem; color: var(--np-slate-900); }
.np-scope .chat-status { font-size: 0.75rem; color: #16a34a; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.np-scope .chat-status-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; display: inline-block; }
.np-scope .chat-messages { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.np-scope .chat-msg-user { align-self: flex-end; background: var(--np-brand-blue); color: #fff; padding: 12px; border-radius: 1rem; border-top-right-radius: 4px; max-width: 85%; font-size: 0.875rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.np-scope .chat-msg-ai { align-self: flex-start; background: #fff; padding: 12px; border-radius: 1rem; border-top-left-radius: 4px; max-width: 90%; font-size: 0.875rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); border: 1px solid var(--np-slate-100); }
.np-scope .chat-ai-card { background: var(--np-slate-50); padding: 8px; border-radius: 8px; border: 1px solid var(--np-slate-200); margin-bottom: 8px; }
.np-scope .chat-ai-card-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; font-weight: 700; color: var(--np-slate-700); margin-bottom: 4px; }
.np-scope .chat-ai-card-body { font-size: 0.75rem; color: var(--np-slate-500); }
.np-scope .chat-input-wrap { position: relative; margin-top: 8px; }
.np-scope .chat-input-wrap input { width: 100%; background: rgba(255,255,255,0.8); border: 1px solid var(--np-slate-200); border-radius: 9999px; padding: 12px 48px 12px 16px; font-size: 0.875rem; outline: none; }
.np-scope .chat-input-btn { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: var(--np-brand-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; border: none; }

/* Stats Banner */
.np-scope .stats-banner { padding: 3rem 0; background: var(--np-slate-900); color: #fff; position: relative; z-index: 20; }
.np-scope .stat-item { text-align: center; padding: 0 1rem; }
.np-scope .stat-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
@media (min-width: 992px) { .np-scope .stat-icon { font-size: 3rem; } }
.np-scope .stat-icon.red { color: var(--np-brand-red); }
.np-scope .stat-icon.blue { color: var(--np-brand-blue); }
.np-scope .stat-icon.green { color: var(--np-brand-accent); }
.np-scope .stat-label { font-size: 0.875rem; color: var(--np-slate-400); font-weight: 500; }
.np-scope .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .np-scope .stats-grid { grid-template-columns: repeat(4, 1fr); } .np-scope .stat-item + .stat-item { border-left: 1px solid var(--np-slate-800); } }

/* Bento Grid Features (IA page) */
.np-scope .features-section { padding: 6rem 0; background: #fff; }
.np-scope .section-title { font-family: 'Urbanist', sans-serif; font-weight: 700; color: var(--np-slate-900); margin-bottom: 1.5rem; }
.np-scope .section-subtitle { font-size: 1.125rem; color: var(--np-slate-600); }
.np-scope .bento-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .np-scope .bento-grid { grid-template-columns: repeat(3, 1fr); } }
.np-scope .bento-card { border-radius: 1.5rem; padding: 2rem 2.5rem; border: 1px solid var(--np-slate-200); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.np-scope .bento-card.span-2 { grid-column: span 1; }
@media (min-width: 768px) { .np-scope .bento-card.span-2 { grid-column: span 2; } }
.np-scope .bento-card.bg-light { background: var(--np-slate-50); }
.np-scope .bento-card.bg-white-card { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.np-scope .bento-card.bg-dark-card { background: var(--np-slate-900); color: #fff; border-color: var(--np-slate-800); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.np-scope .bento-card:hover { border-color: var(--np-brand-blue); }
.np-scope .bento-card.bg-white-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
.np-scope .feature-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.np-scope .feature-icon.blue { background: var(--np-brand-bluelight); color: var(--np-brand-blue); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.np-scope .feature-icon.red { background: var(--np-brand-redlight); color: var(--np-brand-red); }
.np-scope .feature-icon.glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
.np-scope .feature-title { font-family: 'Urbanist', sans-serif; font-weight: 700; margin-bottom: 1rem; color: var(--np-slate-900); }
.np-scope .bento-card.bg-dark-card .feature-title { color: #fff; }
.np-scope .feature-text { color: var(--np-slate-600); margin-bottom: 1.5rem; }
.np-scope .bento-card.bg-dark-card .feature-text { color: var(--np-slate-400); }
.np-scope .feature-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.np-scope .feature-check-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--np-slate-700); font-weight: 500; }
.np-scope .feature-check-list li i { color: var(--np-brand-accent); }
.np-scope .bento-deco-blob { position: absolute; right: -80px; bottom: -80px; width: 400px; height: 400px; opacity: 0.2; pointer-events: none; transition: transform 0.5s; }
.np-scope .bento-card:hover .bento-deco-blob { transform: scale(1.05); }
.np-scope .dark-card-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,84,148,0.2), transparent); }
.np-scope .terminal-mock { background: var(--np-slate-50); padding: 1rem; border-radius: 12px; border: 1px solid var(--np-slate-100); font-family: monospace; font-size: 0.75rem; color: var(--np-slate-500); }
.np-scope .terminal-accent { color: var(--np-brand-accent); }
.np-scope .automation-layout { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .np-scope .automation-layout { flex-direction: row; } }
.np-scope .automation-content { flex: 1; }
.np-scope .rules-tag { display: inline-block; padding: 4px 12px; background: var(--np-slate-100); color: var(--np-slate-600); font-weight: 700; font-size: 0.75rem; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.np-scope .rules-flow { width: 100%; background: var(--np-slate-50); padding: 1rem; border-radius: 1rem; border: 1px solid var(--np-slate-200); display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .np-scope .rules-flow { width: 16rem; } }
.np-scope .rule-box { padding: 12px; border-radius: 12px; font-size: 0.875rem; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.np-scope .rule-box.condition { background: #fff; border: 1px solid var(--np-slate-100); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.np-scope .rule-dot-yellow { width: 8px; height: 8px; background: #eab308; border-radius: 50%; display: inline-block; }
.np-scope .rule-box.action { background: var(--np-brand-redlight); color: var(--np-brand-red); border: 1px solid rgba(255,91,77,0.2); font-weight: 700; }
.np-scope .rules-flow .arrow-center { text-align: center; color: var(--np-slate-400); }

/* Use Cases (IA page) */
.np-scope .usecases-section { padding: 6rem 0; background: var(--np-slate-50); border-top: 1px solid var(--np-slate-200); }
.np-scope .usecase-card { background: #fff; padding: 2rem; border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid var(--np-slate-200); }
.np-scope .usecase-icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.5rem; }
.np-scope .usecase-icon.orange { background: #ffedd5; color: #ea580c; }
.np-scope .usecase-icon.blue { background: #dbeafe; color: #2563eb; }
.np-scope .usecase-icon.purple { background: #f3e8ff; color: #7c3aed; }
.np-scope .usecase-title { font-family: 'Urbanist', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.np-scope .usecase-quote { background: var(--np-slate-50); padding: 1rem; border-radius: 12px; font-style: italic; color: var(--np-slate-600); font-size: 0.875rem; margin-bottom: 1rem; border: 1px solid var(--np-slate-100); }
.np-scope .usecase-desc { font-size: 0.875rem; color: var(--np-slate-500); }

/* FAQ (IA page – variant with slate bg) */
.np-scope .faq-section { padding: 6rem 0; background: #fff; }
.np-scope .faq-item-ia { background: var(--np-slate-50); border: 1px solid var(--np-slate-200); border-radius: 1rem; overflow: hidden; cursor: pointer; margin-bottom: 1rem; }
.np-scope .faq-question { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--np-slate-900); }
.np-scope .faq-answer-ia { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; color: var(--np-slate-600); font-size: 0.875rem; }
.np-scope .faq-item-ia.active .faq-answer-ia { max-height: 200px; padding-bottom: 1.5rem; }
.np-scope .faq-item-ia.active .faq-icon { transform: rotate(45deg); color: var(--np-brand-red); }

/* CTA (IA page) — la section utilise .cta-section + .bg-primary (cf. convention
   des pages standalone), seuls les overlays/typos restent spécifiques. */
.np-scope .cta-texture { position: absolute; inset: 0; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.1; }
.np-scope .cta-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2)); }
.np-scope .cta-title { font-family: 'Urbanist', sans-serif; font-weight: 700; margin-bottom: 1.5rem; }
.np-scope .cta-subtitle { color: #bfdbfe; margin-bottom: 2.5rem; }

/* Nav badge new */
.np-scope .nav-badge-new { background: var(--np-brand-red); color: #fff; font-size: 10px; padding: 2px 8px; border-radius: 9999px; margin-left: 4px; vertical-align: middle; }
