  /* ============================================
   RESET COMPLET POUR ISOLER LA PAGE PRE-HIRE
   ============================================ */

/* Force le reset des éléments de base */
#prehire-landing{
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #0f172a !important;
    color: #f8fafc !important;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    display: block !important;
    position: relative !important;
    line-height: 1.6 !important;
    overflow-x: hidden !important;
}

/* Réinitialise les polices pour tous les éléments */
#prehire-landing * {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

/* Variables CSS */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #31793F;
    --accent-light: #285A61;
    --accent-glow: rgba(49, 121, 63, 0.3);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.5);
    --border: rgba(148, 163, 184, 0.1);
    --gradient-1: linear-gradient(135deg, #31793F 0%, #285A61 100%);
    --gradient-2: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --font-display: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Satoshi', sans-serif;
}

/* ============================================
   VOTRE CSS ORIGINAL COMMENCE ICI
   ============================================ */

/* SUPPRIMEZ cette section dupliquée (lignes 48-61 de votre code) : */
/* #prehire-landing { all: initial; ... } */
/* Elle est maintenant remplacée par le reset ci-dessus */


/* Utility Classes */
#prehire-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
        #prehire-landing .text-gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        #prehire-landing .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 12px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #prehire-landing .btn-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 24px var(--accent-glow);
        }

        #prehire-landing .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px var(--accent-glow);
        }

        #prehire-landing .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
        }

        #prehire-landing .btn-secondary:hover {
            background: var(--bg-card);
            border-color: var(--accent);
        }

        /* Navigation */
        #prehire-landing .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        #prehire-landing .nav.scrolled {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
        }

        #prehire-landing .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

        .logo-icon svg,
        .logo-icon img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 64px;
            object-fit: contain;
            display: block;
        }

        /* Responsive logo sizing */
        @media (max-width: 1024px) {
            .logo-icon img {
                max-height: 56px;
            }
            
             #prehire-landing .hero {
            
            padding: 100px 0 80px!important;
          
        }
        }

        @media (max-width: 640px) {
            .logo-icon img {
                max-height: 48px;
            }
        }

        #prehire-landing .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        #prehire-landing .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        #prehire-landing .nav-links a:hover {
            color: var(--text);
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 28px;
            height: 28px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: var(--primary);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu-overlay.active {
            transform: translateX(0);
        }

        .mobile-menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .mobile-menu-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Menu Header */
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: var(--primary);
            z-index: 1;
            backdrop-filter: blur(20px);
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
        }

        .mobile-menu-logo img {
            max-height: 40px;
            width: auto;
            object-fit: contain;
        }

        .mobile-menu-close {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-menu-close:hover {
            background: rgba(239, 68, 68, 0.1);
        }

        .mobile-menu-close:active {
            transform: scale(0.95);
        }

        .mobile-menu-close-icon {
            width: 24px;
            height: 24px;
            position: relative;
        }

        .mobile-menu-close-icon::before,
        .mobile-menu-close-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 2px;
            background: #ef4444;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-close-icon::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .mobile-menu-close-icon::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .mobile-menu-close:hover .mobile-menu-close-icon::before,
        .mobile-menu-close:hover .mobile-menu-close-icon::after {
            background: #dc2626;
        }

        .mobile-menu-content {
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .mobile-menu-content a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.125rem;
            padding: 16px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-menu-content a:hover,
        .mobile-menu-content a:active {
            background: var(--bg-card);
            color: var(--accent);
            transform: translateX(4px);
        }

        #prehire-landing .mobile-menu-content a.btn-primary {
            background: var(--gradient-1);
            color: white;
            justify-content: center;
            margin-top: 16px;
            box-shadow: 0 4px 24px var(--accent-glow);
        }

        #prehire-landing .mobile-menu-content a.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px var(--accent-glow);
        }

        /* Body scroll lock when menu is open */
        #prehire-landing.menu-open {
            overflow: hidden;
        }

        /* Hero Section */
        #prehire-landing .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 75px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(49, 121, 63, 0.15), transparent);
            pointer-events: none;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top:60px;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 100px;
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
            color:#fff;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 500px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.4s;
            opacity: 0;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.5s;
            opacity: 0;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-light);
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Hero Demo Animation */
        .hero-demo {
            position: relative;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .demo-container {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 24px;
            backdrop-filter: blur(20px);
        }

        .demo-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .demo-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .demo-dot-red { background: #ef4444; }
        .demo-dot-yellow { background: #f59e0b; }
        .demo-dot-green { background: #10b981; }

        /* Pipeline Animation */
        .pipeline {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pipeline-step {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--primary);
            border-radius: 12px;
            opacity: 0;
            transform: translateX(-20px);
        }

        .pipeline-step.active {
            animation: slideIn 0.5s ease forwards;
        }

        .pipeline-step.completed {
            opacity: 1;
            transform: translateX(0);
        }

        .pipeline-step.completed .step-icon {
            background: var(--success);
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .step-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .step-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .step-status {
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 100px;
            background: var(--bg-card);
            color: var(--text-muted);
        }

        .step-status.done {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success);
        }

        .step-status.processing {
            background: rgba(49, 121, 63, 0.2);
            color: var(--accent-light);
        }

        /* Hero Demo - Restore original purple/blue colors */
        .hero-demo .step-icon {
            background: #6366f1;
        }

        .hero-demo .pipeline-step.completed .step-icon {
            background: var(--success);
        }

        .hero-demo .step-status.processing {
            background: rgba(99, 102, 241, 0.2);
            color: #818cf8;
        }

        .hero-demo .pipeline-step.completed .step-icon {
            background: var(--success);
        }

        .hero-demo .step-status.processing {
            background: rgba(99, 102, 241, 0.2);
            color: #818cf8;
        }

        /* Problem Section */
        #prehire-landing .section {
            padding: 120px 0;
            position: relative;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-light);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
            color:#fff;
        }
      
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 600px;
        }

        .problem-section {
            background: var(--gradient-2);
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .problem-card {
            padding: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .problem-card:hover {
            transform: translateY(-4px);
            border-color: var(--danger);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
        }

        .problem-card-icon {
            width: 48px;
            height: 48px;
            background: rgba(239, 68, 68, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .problem-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .problem-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Comparison Section */
        .comparison-section {
            background: var(--primary);
            overflow: hidden;
        }

        .comparison-container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 60px;
        }

        .comparison-side {
            padding: 40px;
            border-radius: 20px;
            position: relative;
        }

        .comparison-before {
            background: rgba(239, 68, 68, 0.05);
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .comparison-after {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .comparison-label {
            position: absolute;
            top: -12px;
            left: 24px;
            background: var(--primary);
            padding: 4px 16px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 100px;
        }

        .comparison-before .comparison-label {
            color: var(--danger);
            border: 1px solid var(--danger);
        }

        .comparison-after .comparison-label {
            color: var(--success);
            border: 1px solid var(--success);
        }

        .comparison-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .comparison-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .comparison-before .comparison-icon {
            background: rgba(239, 68, 68, 0.2);
            color: var(--danger);
        }

        .comparison-after .comparison-icon {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success);
        }

        .comparison-arrow {
            font-size: 3rem;
            color: var(--accent);
            animation: arrowPulse 2s infinite;
        }

        @keyframes arrowPulse {
            0%, 100% { transform: translateX(0); opacity: 1; }
            50% { transform: translateX(10px); opacity: 0.7; }
        }

        /* How It Works Section */
        .how-section {
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
        }

        .how-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .how-header .section-subtitle {
            margin: 0 auto;
        }

        .steps-container {
            position: relative;
        }

        .steps-line {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .step-card {
            text-align: center;
            padding: 32px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px var(--accent-glow);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
        }

        .step-card-icon {
            width: 64px;
            height: 64px;
            background: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 20px auto 24px;
        }

        .step-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .step-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .step-tag {
            display: inline-block;
            margin-top: 16px;
            padding: 6px 12px;
            background: rgba(49, 121, 63, 0.1);
            color: var(--accent-light);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Interactive Demo Section */
        .demo-section {
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .demo-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--accent-glow), transparent 70%);
            pointer-events: none;
        }

        .demo-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }

        .demo-controls {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .demo-control-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }

        .demo-control-btn:hover,
        .demo-control-btn.active {
            border-color: var(--accent);
            background: rgba(49, 121, 63, 0.1);
        }

        .demo-control-btn.active {
            box-shadow: 0 0 30px var(--accent-glow);
        }

        .demo-control-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .demo-control-text h4 {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .demo-control-text p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Demo Animation Panel */
        .demo-panel {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px;
            min-height: 500px;
            position: relative;
            overflow: hidden;
        }

        .demo-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
        }

        .demo-panel-title {
            font-weight: 600;
        }

        .demo-panel-badge {
            padding: 6px 12px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* CV Filtering Animation */
        .cv-filter-demo {
            display: none;
        }

        .cv-filter-demo.active {
            display: block;
        }

        .cv-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cv-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--primary);
            border-radius: 12px;
            transition: all 0.5s ease;
        }

        .cv-item.filtering {
            animation: cvFilter 1s ease forwards;
        }

        .cv-item.rejected {
            opacity: 0.3;
            transform: translateX(-20px);
        }

        .cv-item.accepted {
            border: 1px solid var(--success);
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
        }

        @keyframes cvFilter {
            0% { background: var(--primary); }
            50% { background: rgba(49, 121, 63, 0.2); }
            100% { background: var(--primary); }
        }

        .cv-avatar {
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .cv-info {
            flex: 1;
        }

        .cv-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cv-role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .cv-score {
            text-align: right;
        }

        .cv-score-value {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
        }

        .cv-score-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .cv-score-high { color: var(--success); }
        .cv-score-medium { color: var(--warning); }
        .cv-score-low { color: var(--danger); }

        /* Video Demo Animation */
        .video-demo {
            display: none;
        }

        .video-demo.active {
            display: block;
        }

        .video-player {
            background: var(--primary);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .video-placeholder {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .video-avatar-large {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 16px;
            animation: videoPulse 2s infinite;
        }

        @keyframes videoPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--accent-glow); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px var(--accent-glow); }
        }

        .video-waveform {
            display: flex;
            gap: 4px;
            align-items: center;
            height: 40px;
        }

        .wave-bar {
            width: 4px;
            background: var(--accent);
            border-radius: 2px;
            animation: waveAnim 1s ease-in-out infinite;
        }

        @keyframes waveAnim {
            0%, 100% { height: 10px; }
            50% { height: 30px; }
        }

        .video-questions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .video-question {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--primary);
            border-radius: 8px;
            font-size: 0.9rem;
        }

        .question-num {
            width: 28px;
            height: 28px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* Shortlist Demo */
        .shortlist-demo {
            display: none;
        }

        .shortlist-demo.active {
            display: block;
        }

        .shortlist-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .shortlist-count {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .shortlist-count span {
            color: var(--success);
            font-weight: 700;
        }

        .candidate-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: var(--primary);
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .candidate-card:hover {
            border-color: var(--accent);
        }

        .candidate-card.top-pick {
            border-color: var(--success);
            background: rgba(16, 185, 129, 0.05);
        }

        .candidate-rank {
            width: 32px;
            height: 32px;
            background: var(--gradient-1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .candidate-card.top-pick .candidate-rank {
            background: var(--success);
        }

        .candidate-details {
            flex: 1;
        }

        .candidate-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .candidate-match {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .match-bar {
            width: 100px;
            height: 6px;
            background: var(--border);
            border-radius: 3px;
            overflow: hidden;
        }

        .match-fill {
            height: 100%;
            background: var(--gradient-1);
            border-radius: 3px;
        }

        .candidate-actions {
            display: flex;
            gap: 8px;
        }

        .action-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .action-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Metrics Section */
        .metrics-section {
            background: var(--primary-light);
            position: relative;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .metric-card {
            text-align: center;
            padding: 40px 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
        }

        .metric-value {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .metric-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--primary);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

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

        .testimonial-card {
            padding: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            position: relative;
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 24px;
            color: var(--text);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .testimonial-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--gradient-2);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-item {
            margin-bottom: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 24px 24px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 80% at 50% 120%, var(--accent-glow), transparent);
            pointer-events: none;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 24px;
            color:#fff;
        }

        .cta-subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .cta-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .cta-guarantee-icon {
            color: var(--success);
        }

        /* Footer */
        #prehire-landing .footer {
            background: var(--primary-light);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border);
        }

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

        #prehire-landing .footer-brand .logo {
            justify-content: start;
        }

        #prehire-landing .footer-brand p {
            color: var(--text-muted);
            margin: 20px 0;
            max-width: 300px;
            line-height: 1.7;
        }

        #prehire-landing .footer-social {
            display: flex;
            gap: 12px;
        }

        #prehire-landing .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        #prehire-landing .footer-social a:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        #prehire-landing .footer-column h4 {
            font-weight: 600;
            margin-bottom: 20px;
            color: #f8fafc !important;
        }

        #prehire-landing .footer-links {
            list-style: none;
            margin:0;
        }

        #prehire-landing .footer-links li {
            margin-bottom: 12px;
        }

        #prehire-landing .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        #prehire-landing .footer-links a:hover {
            color: var(--text);
        }

        #prehire-landing .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 40px;
            border-top: 1px solid var(--border);
        }

        #prehire-landing .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            #prehire-landing .hamburger {
                display: flex;
            }

            #prehire-landing .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                order: 1;
            }

            .hero-demo {
                order: 2;
            }

            .hero-subtitle {
                margin: 0 auto 32px;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .problem-grid {
                grid-template-columns: 1fr;
            }

            .comparison-container {
                grid-template-columns: 1fr;
            }

            .comparison-arrow {
                transform: rotate(90deg);
                justify-self: center;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-line {
                display: none;
            }

            .demo-wrapper {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            #prehire-landing .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            #prehire-landing .mobile-menu-overlay {
                max-width: 100%;
            }

            .mobile-menu-header {
                padding: 16px 20px;
            }

            .mobile-menu-logo img {
                max-height: 36px;
            }

            .mobile-menu-close {
                width: 36px;
                height: 36px;
            }

            .mobile-menu-close-icon {
                width: 20px;
                height: 20px;
            }

            .mobile-menu-close-icon::before,
            .mobile-menu-close-icon::after {
                width: 16px;
            }

            .mobile-menu-content {
                padding: 24px 20px;
            }

            #prehire-landing .nav-links {
                display: none;
            }

            #prehire-landing .hero h1 {
                font-size: 2rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: row;
                gap: 20px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }

            #prehire-landing .footer-grid {
                grid-template-columns: 1fr;
            }

            #prehire-landing .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }