/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}



:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #a855f7;
    --accent-pink: #d946ef;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a24;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --gradient-text: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #d946ef 100%);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 100%;
}

/* ============================================
   LIGHT MODE - Stripe/Linear Professional Style
   ============================================ */
body.light-mode {
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --text-primary: #000000;
    --text-secondary: #525252;
    --text-muted: #737373;
    --border-color: #e5e5e5;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
    --primary: #0066ff;
}

/* Light Mode - Page Background */
body.light-mode {
    background: #fafafa;
}

/* Light Mode - Navbar */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

body.light-mode .logo {
    color: #000000;
    font-weight: 700;
}

body.light-mode .nav-link {
    color: #525252;
    font-weight: 500;
}

body.light-mode .nav-link:hover {
    color: #000000;
}

body.light-mode .nav-links.active {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Light Mode - Hero Section */
body.light-mode .hero {
    background: #ffffff;
}

body.light-mode .hero::before,
body.light-mode .hero::after,
body.light-mode .hero-visual::before,
body.light-mode .hero-visual::after {
    display: none;
}

body.light-mode .hero-title {
    color: #000000;
    -webkit-text-fill-color: #000000;
    background: none;
}

body.light-mode .hero-description {
    color: #525252;
}

/* Light Mode - Section Titles */
body.light-mode .section-title {
    background: none;
    -webkit-text-fill-color: #000000;
    color: #000000;
}

body.light-mode .section-title span,
body.light-mode .section-title .gradient-text,
body.light-mode .gradient-text {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .section-description {
    color: #525252;
}

/* Light Mode - Section Badges */
body.light-mode .section-badge {
    background: #f5f5f5;
    color: #0066ff;
    border: 1px solid #e5e5e5;
    font-weight: 600;
}

/* Light Mode - Buttons */
body.light-mode .btn-primary {
    background: #000000;
    color: #ffffff;
    border: none;
}

body.light-mode .btn-primary:hover {
    background: #171717;
}

body.light-mode .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #d4d4d4;
}

body.light-mode .btn-secondary:hover {
    background: #fafafa;
    border-color: #a3a3a3;
}

/* Light Mode - All Cards Base Style */
body.light-mode .feature-card,
body.light-mode .value-card,
body.light-mode .pricing-card,
body.light-mode .testimonial-card,
body.light-mode .faq-item,
body.light-mode .metric-card,
body.light-mode .process-step,
body.light-mode .flow-node {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-mode .feature-card:hover,
body.light-mode .value-card:hover,
body.light-mode .pricing-card:hover,
body.light-mode .testimonial-card:hover,
body.light-mode .process-step:hover,
body.light-mode .flow-node:hover {
    border-color: #0066ff;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
    transform: translateY(-2px);
}

/* Light Mode - Feature Cards */
body.light-mode .feature-icon {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    color: #0066ff;
}

body.light-mode .feature-title {
    color: #000000;
}

body.light-mode .feature-description {
    color: #525252;
}

/* Light Mode - Bento Grid / Flow Nodes */
body.light-mode .flow-nodes {
    background: transparent;
    border: none;
    gap: 16px;
}

body.light-mode .flow-node {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
}

body.light-mode .flow-node::after {
    color: rgba(0, 102, 255, 0.06);
}

body.light-mode .flow-node::before {
    display: none;
}

body.light-mode .node-icon {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border: 1px solid #bfdbfe;
}

body.light-mode .flow-node:hover .node-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #0066ff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

body.light-mode .node-content h3 {
    color: #000000;
    font-weight: 600;
}

body.light-mode .node-content p {
    color: #525252;
}

body.light-mode .expert-icon {
    color: #0066ff;
}

/* Light Mode - Process Steps */
body.light-mode .process-step {
    background: #ffffff;
}

body.light-mode .step-number {
    color: rgba(0, 102, 255, 0.1);
}

body.light-mode .step-title {
    color: #000000;
}

body.light-mode .step-description p {
    color: #525252;
}

body.light-mode .process-visual {
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

/* Light Mode - Evolution/Comparison Section */
body.light-mode .evolution-dashboard {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

body.light-mode .evolution-panel.legacy .panel-header {
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

body.light-mode .evolution-panel.legacy .evolution-list {
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

body.light-mode .evolution-panel.recruit-ai .panel-header {
    background: #f0f7ff;
    border: 1px solid #0066ff;
}

body.light-mode .evolution-panel.recruit-ai .evolution-list {
    background: #fafafa;
    border: 1px solid #e5e5e5;
}

body.light-mode .panel-title {
    color: #000000;
}

body.light-mode .evolution-item {
    border-bottom: 1px solid #f5f5f5;
}

body.light-mode .evolution-item:hover {
    background: #fafafa;
}

body.light-mode .item-icon {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
}

body.light-mode .item-text h4 {
    color: #000000;
}

body.light-mode .item-text p {
    color: #525252;
}

body.light-mode .status-indicator {
    background: #f5f5f5;
    color: #525252;
}

/* Light Mode - Integrations Section */
body.light-mode .integrations-section {
    background: #fafafa;
}

body.light-mode .integrations-grid {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

body.light-mode .integration-card {
    background: #ffffff;
    border-bottom: 1px solid #f5f5f5;
}

body.light-mode .integration-card:hover {
    background: #fafafa;
}

body.light-mode .integration-icon-wrapper {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
}

body.light-mode .integration-name {
    color: #000000;
}

body.light-mode .integration-tag {
    color: #737373;
}

body.light-mode .integration-tag::before {
    background: #a3a3a3;
}

body.light-mode .audit-log-note {
    background: #f0fdf4;
    border: 1px solid #22c55e;
}

body.light-mode .audit-log-note:hover {
    background: #dcfce7;
}

body.light-mode .audit-icon-wrapper {
    background: #dcfce7;
    border: 1px solid #22c55e;
}

body.light-mode .audit-title {
    color: #000000;
}

body.light-mode .audit-subtitle {
    color: #525252;
}

/* Light Mode - Pricing Cards */
body.light-mode .pricing-card.featured {
    background: linear-gradient(165deg, rgba(0, 102, 255, 0.04) 0%, #ffffff 100%);
    border: 2px solid #0066ff;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.12);
}

body.light-mode .pricing-header h3 {
    color: #000000;
}

body.light-mode .pricing-price .currency {
    color: #000000;
}

body.light-mode .pricing-price .price {
    color: #000000;
}

body.light-mode .pricing-card.featured .price {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .pricing-price .period {
    color: #737373;
}

body.light-mode .pricing-subtitle {
    color: #525252;
}

body.light-mode .pricing-features li {
    color: #525252;
    border-color: #f5f5f5;
}

body.light-mode .pricing-features li svg {
    color: #22c55e;
}

body.light-mode .pricing-features li.muted {
    color: #a3a3a3;
}

body.light-mode .pricing-features li.muted svg {
    color: #a3a3a3;
}

body.light-mode .pricing-features li.highlight {
    color: #059669;
}

body.light-mode .pricing-features li.highlight svg {
    color: #059669;
}

/* Light Mode - Testimonials */
body.light-mode .testimonial-text {
    color: #171717;
}

body.light-mode .testimonial-author-name {
    color: #000000;
}

body.light-mode .testimonial-author-title {
    color: #737373;
}

/* Light Mode - FAQ */
body.light-mode .faq-section {
    background: #fafafa;
}

body.light-mode .faq-item {
    background: #ffffff;
}

body.light-mode .faq-question {
    color: #000000;
}

body.light-mode .faq-question:hover {
    color: #0066ff;
}

body.light-mode .faq-answer {
    color: #525252;
}

/* Light Mode - Metrics Section */
body.light-mode .metrics-section {
    background: #ffffff;
}

body.light-mode .metrics-text p {
    color: #525252;
}

body.light-mode .metrics-list li {
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

body.light-mode .metrics-list h4 {
    color: #000000;
}

body.light-mode .metrics-list p {
    color: #737373;
}

/* Light Mode - Value Proposition Section */
body.light-mode .value-proposition-section {
    background: #fafafa;
}

body.light-mode .value-icon {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    color: #0066ff;
}

body.light-mode .value-title {
    color: #000000;
}

body.light-mode .value-description {
    color: #525252;
}

/* Light Mode - How It Works Section */
body.light-mode .how-it-works {
    background: #ffffff;
}

/* Light Mode - Features Section */
body.light-mode .features {
    background: #fafafa;
}

/* Light Mode - CTA Section */
body.light-mode .cta-section {
    background: #000000;
}

body.light-mode .cta-title {
    color: #ffffff;
}

body.light-mode .cta-description {
    color: rgba(255, 255, 255, 0.7);
}

body.light-mode .cta-section .btn-primary {
    background: #ffffff;
    color: #000000;
}

body.light-mode .cta-section .btn-primary:hover {
    background: #f5f5f5;
}

/* Light Mode - Footer */
body.light-mode .footer {
    background: #000000;
    border-top: none;
}

body.light-mode .footer .logo {
    color: #ffffff;
}

body.light-mode .footer-description {
    color: #a3a3a3;
}

body.light-mode .footer-title {
    color: #ffffff;
}

body.light-mode .footer-link {
    color: #a3a3a3;
}

body.light-mode .footer-link:hover {
    color: #ffffff;
}

body.light-mode .footer-bottom {
    color: #737373;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Light Mode - Dashboard Preview */
body.light-mode .dashboard-preview {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

body.light-mode .dashboard-header {
    background: #fafafa;
    border-bottom: 1px solid #e5e5e5;
}

body.light-mode .dashboard-sidebar {
    background: #fafafa;
    border-right: 1px solid #e5e5e5;
}

body.light-mode .sidebar-item {
    color: #525252;
}

body.light-mode .sidebar-item.active,
body.light-mode .sidebar-item:hover {
    background: #f0f7ff;
    color: #0066ff;
}

body.light-mode .candidate-card,
body.light-mode .analytics-item,
body.light-mode .job-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

body.light-mode .candidate-card:hover {
    background: #fafafa;
    border-color: #0066ff;
}

/* Light Mode - Modal */
body.light-mode .modal-content {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

body.light-mode .modal-header {
    border-bottom: 1px solid #e5e5e5;
}

body.light-mode .modal-title {
    color: #000000;
}

/* Light Mode - Form Elements */
body.light-mode input,
body.light-mode select,
body.light-mode textarea {
    background: #ffffff;
    border: 1px solid #d4d4d4;
    color: #000000;
}

body.light-mode input:focus,
body.light-mode select:focus,
body.light-mode textarea:focus {
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
    outline: none;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
    color: #a3a3a3;
}

body.light-mode .form-group label {
    color: #000000;
    font-weight: 500;
}

/* Light Mode - Stats */
body.light-mode .stat-value {
    color: #000000;
}

body.light-mode .stat-label {
    color: #525252;
}

/* Light Mode - Theme Toggle */
body.light-mode .theme-toggle {
    background: #ffffff;
    border: 1px solid #d4d4d4;
    color: #000000;
}

body.light-mode .theme-toggle:hover {
    background: #fafafa;
    border-color: #0066ff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.95);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    min-width: 0;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-icon {
    position: relative;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}

.mobile-menu-icon::before {
    transform: translateY(-7px);
}

.mobile-menu-icon::after {
    transform: translateY(7px);
}

.mobile-menu-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.mobile-menu-btn.active .mobile-menu-icon {
    background: transparent;
}

.mobile-menu-btn.active .mobile-menu-icon::before {
    transform: rotate(45deg);
}

.mobile-menu-btn.active .mobile-menu-icon::after {
    transform: rotate(-45deg);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

/* Dark mode (default) - show sun icon and "Light" text */
.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

.theme-toggle .theme-text-light {
    display: inline;
}

.theme-toggle .theme-text-dark {
    display: none;
}

/* Light mode - show moon icon and "Dark" text */
body.light-mode .theme-toggle .sun-icon {
    display: none;
}

body.light-mode .theme-toggle .moon-icon {
    display: block;
}

body.light-mode .theme-toggle .theme-text-light {
    display: none;
}

body.light-mode .theme-toggle .theme-text-dark {
    display: inline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.6), 0 0 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Expert Spotlight Effect */
}

/* The Spotlight Beam (From Bottom) */
.hero-visual::before {
    content: '';
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 800px;
    background: radial-gradient(ellipse at 50% 100%,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(99, 102, 241, 0.1) 30%,
            transparent 70%);
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
    animation: spotlightAmbient 8s ease-in-out infinite alternate;
}

/* The Source Lamp Glow (From Bottom) */
.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: radial-gradient(ellipse at center,
            rgba(99, 102, 241, 0.5),
            transparent 70%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.8;
    animation: lampFlicker 10s infinite;
}

@keyframes spotlightAmbient {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes lampFlicker {

    0%,
    100% {
        opacity: 0.8;
    }

    92% {
        opacity: 0.8;
    }

    93% {
        opacity: 0.5;
    }

    /* Micro flicker */
    94% {
        opacity: 0.8;
    }

    96% {
        opacity: 0.9;
    }

    97% {
        opacity: 0.7;
    }

    98% {
        opacity: 0.8;
    }
}

.product-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: floatGentle 6s ease-in-out infinite;
}

/* Professional Dashboard Transitions */
.dashboard-visual {
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    animation: dashboardEntry 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes dashboardEntry {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Precision Scanner Animation */
.precision-scanner {
    animation: precisionScan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes precisionScan {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(240px);
        opacity: 0;
    }
}

/* Radial Progress Animation */
.radial-progress {
    animation: radialFill 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes radialFill {
    from {
        stroke-dashoffset: 220;
    }

    to {
        stroke-dashoffset: 44;
    }
}

/* Live Log Typing Effect */
.log-line-1 {
    animation: logFadeIn 6s infinite;
}

.log-line-2 {
    animation: logFadeIn 6s infinite 2s;
}

.log-line-3 {
    animation: logFadeIn 6s infinite 4s;
}

@keyframes logFadeIn {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-5px);
    }

    10%,
    90% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Data Progress Bar */
.data-progress {
    animation: barGrow 6s linear infinite;
}

@keyframes barGrow {
    0% {
        width: 0;
    }

    80% {
        width: 150px;
    }

    100% {
        width: 150px;
        opacity: 0;
    }
}

/* Neural Grid Animation */
.neural-grid {
    animation: neuralPulse 10s ease-in-out infinite;
}

@keyframes neuralPulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.2;
    }
}

/* Custom easing for dashboard panels */
.dashboard-panel {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-panel:hover {
    transform: translateY(-8px) scale(1.02);
}


/* Verified Badge Pulse */
.verified-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1) translate(195px, 130px);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) translate(195px, 130px);
    }
}

@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: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   PREMIUM SECTION HEADERS - Enterprise Style
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header .section-badge {
    animation: fadeInUp 0.8s ease-out;
}

.section-header .section-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-header .section-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-badge.pulse {
    animation: pulse-glow 3s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 40%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title span,
.section-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section - Process Pipeline */
.how-it-works {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.process-pipeline {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    position: relative;
    padding: 60px 0;
    max-width: 1300px;
    margin: 0 auto;
}

/* Connecting Line Background */
.pipeline-connector-bg {
    position: absolute;
    top: 180px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.3) 20%,
            rgba(99, 102, 241, 0.3) 80%,
            transparent 100%);
    z-index: 0;
}

.pipeline-connector-bg::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.1) 20%,
            rgba(99, 102, 241, 0.1) 80%,
            transparent 100%);
    filter: blur(8px);
}

/* ============================================
   PREMIUM PROCESS STEPS - Enterprise Style
   ============================================ */

.process-step {
    position: relative;
    flex: 1 1 0;
    width: auto;
    min-width: 280px;
    max-width: 400px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 40px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.process-step::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-step:hover::after {
    opacity: 1;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation */
.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step:nth-child(3) {
    transition-delay: 0.3s;
}

/* Step Header - Premium Style */
.step-header {
    margin-bottom: 28px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Step Number - Large Gradient Style */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid transparent;
    background-origin: border-box;
    position: relative;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step:hover .step-number::after {
    opacity: 1;
}

/* Step Title - Clean Typography */
.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
    white-space: normal;
}

/* Visual Container - Premium Glass Card */
.process-visual {
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.process-visual:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.visual-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .visual-backdrop {
    opacity: 1;
}

.pipeline-svg {
    width: 100%;
    height: 100%;
}

/* Step Description - Professional Typography */
.step-description {
    width: 100%;
}

.step-description p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    margin: 0;
    letter-spacing: 0.01em;
}

.step-description .highlight {
    color: var(--primary-light);
    font-weight: 600;
}

/* Premium Connectors */
.pipeline-connector {
    flex: 0 0 80px;
    height: 2px;
    position: relative;
    top: 120px;
    margin: 0 -10px;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(99, 102, 241, 0.3) 20%,
            rgba(99, 102, 241, 0.3) 80%,
            transparent 100%);
}

.data-stream {
    position: absolute;
    top: -1px;
    left: 0;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-light),
            var(--accent-cyan),
            transparent);
    border-radius: 2px;
    filter: blur(1px);
    animation: streamFlowPremium 2.5s ease-in-out infinite;
}

@keyframes streamFlowPremium {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(400%);
        opacity: 0;
    }
}

/* Animation Delays */
.process-step:nth-child(2) .process-visual {
    animation-delay: 0.2s;
}

.process-step:nth-child(4) .process-visual {
    animation-delay: 0.4s;
}

/* Hover Effects */
.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step:hover .step-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Value Proposition Styles */
.value-prop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-top: 8px;
}

.value-icon {
    font-size: 1.125rem;
}

.value-text {
    color: var(--text-secondary);
}

/* Value Proposition Section */
.value-proposition-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.value-card:hover::before {
    opacity: 1;
}

.value-metric {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.value-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
}

.comparison-column.traditional {
    opacity: 0.6;
}

.comparison-column.hire-talent-ai {
    border-color: var(--primary);
    position: relative;
}

.comparison-column.hire-talent-ai::before {
    content: 'Recommended';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.comparison-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-column.traditional .comparison-list li svg {
    color: var(--text-muted);
}

.comparison-column.hire-talent-ai .comparison-list li svg {
    color: var(--accent-green);
}

/* Metrics Section - Expert Statistics Display */
.metrics-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    overflow: hidden;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.metrics-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .metrics-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
    }
}

.metrics-text h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.metrics-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.metrics-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metrics-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.metrics-list li:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(8px);
}

.metrics-section.animate .metrics-list li {
    opacity: 1;
    transform: translateY(0);
}

.metrics-list li.delay-200 {
    transition-delay: 0.5s;
}

.metrics-list li.delay-400 {
    transition-delay: 0.6s;
}

.metrics-list li.delay-600 {
    transition-delay: 0.7s;
}

.metrics-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.metrics-list li .metric-desc h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.metrics-list li .metric-desc p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.metrics-visual {
    position: relative;
}

.metrics-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.metrics-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.metrics-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.metrics-section.animate .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.stat-item.delay-200 {
    transition-delay: 0.9s;
}

.stat-item.delay-400 {
    transition-delay: 1.0s;
}

.stat-item.delay-600 {
    transition-delay: 1.1s;
}

.stat-item.delay-800 {
    transition-delay: 1.2s;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item .stat-trend {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
}

.metrics-chart {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.metrics-section.animate .metrics-chart .chart-row {
    opacity: 1;
    transform: translateY(0);
}

.chart-row.delay-200 {
    transition-delay: 1.3s;
}

.chart-row.delay-400 {
    transition-delay: 1.4s;
}

.chart-row.delay-600 {
    transition-delay: 1.5s;
}

.chart-row.delay-800 {
    transition-delay: 1.6s;
}

.chart-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    width: 80px;
}

.chart-bar-container {
    flex: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    border-radius: 4px;
    background: var(--gradient-primary);
    position: relative;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s linear infinite;
}

.chart-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 48px;
    text-align: right;
}

/* Metrics Section Title Animation */
.metrics-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 40%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Light Mode - Metrics Title */
body.light-mode .metrics-title {
    background: none;
    -webkit-text-fill-color: #000000;
    color: #000000;
}

.metrics-section.animate .metrics-title {
    opacity: 1;
    transform: translateY(0);
}

.metrics-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.2s;
}

.metrics-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.metrics-section.animate .metrics-text {
    opacity: 1;
    transform: translateY(0);
}

.metrics-list {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.4s;
}

.metrics-section.animate .metrics-list {
    opacity: 1;
    transform: translateY(0);
}

.metrics-visual {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.8s;
}

.metrics-section.animate .metrics-visual {
    opacity: 1;
    transform: translateY(0);
}

.metrics-section.animate .metrics-visual.delay-800 {
    transition-delay: 0.8s;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 100%);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    margin-top: 48px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    min-width: unset;
    width: 100%;
    max-width: 400px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 0 30px rgba(139, 92, 246, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.company-logo {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.author-role {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Navigation dots */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot:hover {
    background: var(--primary-light);
}

.nav-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    gap: 20px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 20px 40px rgba(99, 102, 241, 0.2);
    background: linear-gradient(165deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.02) 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    align-self: flex-start;
    margin-top: 8px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-card.featured .price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 8px;
}

.period {
    color: var(--text-muted);
    font-size: 0.85rem;
    width: 100%;
    margin-top: 4px;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    color: var(--accent-green);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.pricing-features li.muted {
    color: var(--text-muted);
    opacity: 0.7;
}

.pricing-features li.muted svg {
    color: var(--text-muted);
}

.pricing-features li.highlight {
    color: #10b981;
    font-weight: 600;
}

.pricing-features li.highlight svg {
    color: #10b981;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Responsive Pricing Grid */
@media (max-width: 1100px) {
    .pricing-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid.four-cols {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 28px 24px;
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-section .btn-primary:hover::before {
    left: 100%;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Modal Dialogs */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-card-hover);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-group label a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 24px 32px 32px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-footer .btn {
    min-width: 120px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

.feature-list li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 24px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.time-slot {
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.time-slot.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-green);
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-message p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Light mode adjustments */
body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea,
body.light-mode .time-slot {
    background: #ffffff;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.footer-link-group h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-link-group a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Recruitment Lifecycle Flow Styles */
.lifecycle-flow {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 0;
}

.lifecycle-path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.3) 10%, rgba(99, 102, 241, 0.3) 90%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.lifecycle-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: flowLine 4s linear infinite;
}

@keyframes flowLine {
    0% {
        top: -100px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.lifecycle-step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes lifecycleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lifecycle-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    animation: none;
}

@keyframes nodeRipple {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.node-content {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    z-index: 1;
}

.step-card {
    width: 42%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lifecycle-step:hover .step-card {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lifecycle-step:hover .step-node {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

.lifecycle-step:hover .node-content {
    color: white;
}

.step-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-metric {
    font-size: 13px;
    font-weight: 700;
    color: white;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   STRIPE/LINEAR STYLE COMPARISON SECTION
   Ultra Clean • Minimal • Enterprise Grade
   ============================================ */

.evolution-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
}

/* VS Divider */
.evolution-connector {
    display: none;
}

/* Panel Base */
.evolution-panel {
    background: transparent;
    border: none;
    padding: 0;
}

/* Legacy Panel */
.evolution-panel.legacy .panel-header {
    padding: 24px 28px;
    background: rgba(127, 127, 127, 0.03);
    border: 1px solid rgba(127, 127, 127, 0.08);
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.evolution-panel.legacy .evolution-list {
    background: rgba(127, 127, 127, 0.02);
    border: 1px solid rgba(127, 127, 127, 0.08);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 8px;
}

/* AI Panel */
.evolution-panel.recruit-ai .panel-header {
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    position: relative;
}

.evolution-panel.recruit-ai .panel-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-green));
    border-radius: 0 0 2px 2px;
}

.evolution-panel.recruit-ai .evolution-list {
    background: rgba(99, 102, 241, 0.02);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 8px;
}

/* Panel Header */
.panel-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.panel-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 10px 0 0 0;
    color: var(--text-primary);
}

/* Status Badge */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    background: rgba(127, 127, 127, 0.1);
    color: var(--text-muted);
    border: none;
}

.status-indicator::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
}

.status-indicator.active {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.status-indicator.active::before {
    opacity: 1;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Evolution List */
.evolution-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Evolution Item */
.evolution-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    transition: background 0.15s ease;
    position: relative;
}

.evolution-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: none;
}

.evolution-item::before {
    display: none;
}

/* Active Item */
.evolution-item.active {
    background: rgba(99, 102, 241, 0.04);
}

.evolution-item.active:hover {
    background: rgba(99, 102, 241, 0.06);
    transform: none;
}

/* Item Icon */
.item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 8px;
}

.evolution-panel.legacy .item-icon {
    opacity: 0.5;
    filter: grayscale(0.8);
}

.evolution-item.active .item-icon {
    background: rgba(99, 102, 241, 0.1);
    box-shadow: none;
}

/* Item Text */
.item-text {
    flex: 1;
    min-width: 0;
}

.item-text h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 2px 0;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.evolution-panel.legacy .item-text h4 {
    color: var(--text-secondary);
}

.item-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Badge */
.evolution-badge {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: none;
    border-radius: 4px;
    margin-left: auto;
}

.evolution-item:hover .evolution-badge {
    transform: none;
    box-shadow: none;
}

/* Connector elements - hidden */
.connector-line,
.connector-arrow {
    display: none;
}

.connector-arrow:hover {
    transform: scale(1.1);
}

.connector-arrow svg {
    width: 20px;
    height: 16px;
}

/* Bento Grid Features - Premium Enterprise Style */
.architectural-flow {
    position: relative;
    padding: 0;
    margin-top: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.flow-line,
.data-pulse {
    display: none;
}

.flow-nodes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.flow-node {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flow-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.flow-node:hover {
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

.flow-node:hover::before {
    opacity: 1;
}

/* Feature Number Badge */
.flow-node::after {
    content: '0' attr(style);
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.flow-node:nth-child(1)::after {
    content: '01';
}

.flow-node:nth-child(2)::after {
    content: '02';
}

.flow-node:nth-child(3)::after {
    content: '03';
}

.flow-node:nth-child(4)::after {
    content: '04';
}

.node-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.node-icon::after,
.node-icon::before {
    display: none;
}

.flow-node:hover .node-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.35);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.flow-node.active .node-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.node-content {
    position: relative;
    z-index: 1;
}

.node-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.node-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

/* Expert SVG Icon Styles */
.expert-icon {
    width: 28px;
    height: 28px;
    overflow: visible;
    color: #3b82f6;
}

.icon-orbit {
    animation: none;
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        opacity: 0.5;
        stroke-width: 1.5;
    }

    50% {
        opacity: 1;
        stroke-width: 2.5;
    }
}

.icon-flash {
    animation: iconFlash 3s ease-in-out infinite;
}

@keyframes iconFlash {

    0%,
    100% {
        opacity: 0.3;
        filter: drop-shadow(0 0 0px var(--primary));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--primary));
    }
}

.icon-glow {
    animation: iconGlow 4s ease-in-out infinite;
}

@keyframes iconGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Definition for Node Gradients used in SVGs */
svg defs {
    height: 0;
    width: 0;
    position: absolute;
}

/* Scroll Animation Initial States */
.hero-content,
.hero-visual,
.features,
.flow-node,
.evolution-dashboard .dashboard-panel {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes blurSlideUp {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

.element-visible,
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Expert Animation Base */
.feature-card,
.step,
.testimonial-card,
.pricing-card,
.value-card,
.evolution-item,
.flow-node,
.lifecycle-step,
.demo-content,
.cta-content {
    opacity: 0;
    transition: all 1.0s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, filter;
}

.feature-card.animate,
.step.animate,
.testimonial-card.animate,
.pricing-card.animate,
.value-card.animate,
.evolution-item.animate,
.flow-node.animate,
.lifecycle-step.animate,
.demo-content.animate,
.cta-content.animate {
    animation: blurSlideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Expert Animation Enhancements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
    }
}

@keyframes gradient-xy {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes tooltip {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFlip {
    0% {
        transform: perspective(1000px) rotateY(90deg);
        opacity: 0;
    }

    100% {
        transform: perspective(1000px) rotateY(0);
        opacity: 1;
    }
}

@keyframes scorePop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Expert Animation Classes */
.float-1 {
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    animation: float-delayed 7s ease-in-out infinite;
}

.float-3 {
    animation: float 8s ease-in-out infinite;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    background-size: 1000px 100%;
    animation: shimmer 8s linear infinite;
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Gradient Background Animation */
.animated-gradient {
    background: linear-gradient(270deg, var(--primary), var(--secondary), var(--accent-pink), var(--primary));
    background-size: 400% 400%;
    animation: gradient-xy 15s ease infinite;
}

.animated-gradient-hover:hover {
    background: linear-gradient(270deg, var(--secondary), var(--accent), var(--accent-pink), var(--accent-cyan));
    background-size: 400% 400%;
    animation: gradient-xy 10s ease infinite;
}

/* Card Flip Effect */
.card-flip {
    perspective: 1000px;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-inner {
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.card-flip-front,
.card-flip-back {
    backface-visibility: hidden;
}

.card-flip-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Score Pop Animation */
.score-pop {
    animation: scorePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: white;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
}

/* Stats Grid - Expert Version */
.expert-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.stat-card:hover::before {
    background: var(--gradient-secondary);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 12px;
}

.stat-trend.up {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.stat-trend.down {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* Division Line */
.division-line {
    position: relative;
    text-align: center;
    margin: 80px 0;
}

.division-line::before,
.division-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.division-line::before {
    left: 0;
}

.division-line::after {
    right: 0;
}

.division-text {
    position: relative;
    background: var(--bg-dark);
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.delay-200 {
    animation-delay: 200ms !important;
    transition-delay: 200ms !important;
}

.delay-400 {
    animation-delay: 400ms !important;
    transition-delay: 400ms !important;
}

.delay-600 {
    animation-delay: 600ms !important;
    transition-delay: 600ms !important;
}

.delay-800 {
    animation-delay: 800ms !important;
    transition-delay: 800ms !important;
}

.delay-1000 {
    animation-delay: 1000ms !important;
    transition-delay: 1000ms !important;
}

/* Keep existing flow-node stagger if preferred, or replace with generic classes above via JS */
.flow-node:nth-child(1) {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.flow-node:nth-child(2) {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

.flow-node:nth-child(3) {
    transition-delay: 0.6s;
    animation-delay: 0.6s;
}

.flow-node:nth-child(4) {
    transition-delay: 0.8s;
}

.stat:nth-child(1) {
    transition-delay: 0.1s;
}

.stat:nth-child(2) {
    transition-delay: 0.2s;
}

.stat:nth-child(3) {
    transition-delay: 0.3s;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    position: relative;
    width: 90%;
    max-width: 900px;
    box-shadow: var(--shadow-card);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close-outside {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close-outside:hover {
    color: var(--primary);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: black;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   NOTION/VERCEL STYLE INTEGRATIONS
   Premium • Minimal • World-Class
   ============================================ */

.integrations-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

/* Subtle top border */
.integrations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

/* Grid - 4 columns with perfect spacing */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 64px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Integration Card - Table Cell Style */
.integration-card {
    background: var(--bg-dark);
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.integration-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.integration-card.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    animation: cardReveal 0.5s ease forwards;
    animation-play-state: paused;
}

.integration-card.stagger-item.animate {
    animation-play-state: running;
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.integration-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.integration-card:hover::before {
    opacity: 1;
}

/* Icon - Minimal Square */
.integration-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.integration-card:hover .integration-icon-wrapper {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.12) 100%);
    border-color: rgba(99, 102, 241, 0.25);
    transform: scale(1.05);
}

.integration-icon-wrapper svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

/* Card Title - Bold & Clean */
.integration-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: none;
    -webkit-text-fill-color: unset;
}

/* Integration List - Vertical Stack */
.integration-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

/* Tags - Text Links Style */
.integration-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    cursor: default;
    position: relative;
}

.integration-tag::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.integration-tag:hover {
    color: var(--text-primary);
}

.integration-tag:hover::before {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

/* Hide unused elements */
.integration-header,
.connection-status,
.status-dot,
.integration-description,
.tag-icon {
    display: none;
}

/* Audit Log Note - Enterprise Badge */
.audit-log-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 48px auto 0;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.audit-log-note svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.audit-log-note strong {
    color: #10b981;
    font-weight: 600;
}

.audit-log-note svg {
    color: #10b981;
    flex-shrink: 0;
}

.audit-log-note strong {
    color: #10b981;
    font-weight: 600;
}

.integration-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.integration-actions .btn-configure,
.integration-actions .btn-connect {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-configure {
    background: rgba(128, 128, 128, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(128, 128, 128, 0.2);
}

.btn-configure:hover {
    background: rgba(128, 128, 128, 0.15);
    color: var(--text-primary);
    border-color: rgba(128, 128, 128, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-connect {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-connect:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-connect:active {
    transform: translateY(0);
}

/* Stagger animation for cards */
@keyframes stagger-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Audit Log Note - Enterprise Style */
.audit-log-note {
    margin-top: 64px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.audit-log-note:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.15);
}

.audit-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}

.audit-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.audit-text {
    flex: 1;
    text-align: left;
}

.audit-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.audit-subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}

.audit-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.audit-badge svg {
    width: 14px;
    height: 14px;
}

@keyframes pulse-green {

    0%,
    100% {
        background: rgba(16, 185, 129, 0.15);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        background: rgba(16, 185, 129, 0.25);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

/* Integration Toast Notification */
.integration-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    min-width: 300px;
}

.integration-toast.show {
    transform: translateX(0);
}

.integration-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.9rem;
}

.integration-toast svg {
    color: var(--primary);
    flex-shrink: 0;
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Lock pulse animation */
@keyframes lock-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.faq-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.faq-grid {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    color: var(--primary);
    transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.faq-body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 0 32px 32px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}


/* Duplicate styles removed - see new styles above */

/* Base Metrics Grid - 2x2 for Desktop & Tablet */
.metrics-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ============================================
   PROFESSIONAL FOOTER STYLES
   ============================================ */

.footer {
    background: #050505;
    /* Very dark, almost black */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    justify-content: center;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE DESIGN SYSTEM
   ============================================ */

/*
   BREAKPOINTS:
   1. Large Devices: 1280px (Laptops/Desktops)
   2. Medium Devices: 1024px (Tablets landscape / Small Laptops)
   3. Small Devices: 768px (Tablets portrait)
   4. Mobile Devices: 480px (Large Phones)
   5. Small Mobile: 360px (Small Phones)
*/

/* 3. Mobile Devices (Max Width: 767px) */
@media (max-width: 767px) {

    /* Layout & Globals */
    .container {
        padding: 0 20px;
    }

    .navbar,
    .navbar.scrolled {
        padding: 12px 0;
    }

    .navbar .container {
        padding: 0 16px;
    }

    .nav-content {
        width: 100%;
        gap: 12px;
        min-width: 0;
        justify-content: space-between;
    }

    .logo {
        gap: 8px;
        font-size: 1.2rem;
        min-width: 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo span {
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-content {
        flex-wrap: wrap;
    }

    section {
        padding: 50px 0;
    }

    /* Typography Override */
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navigation - Mobile Menu */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 28px;
        height: calc(100vh - 70px);
        border-bottom: 1px solid var(--border-color);
        z-index: 1000;
        gap: 20px;
        overflow-y: auto;
        width: 100%;
        max-width: 100%;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        padding: 0;
        flex-shrink: 0;
        overflow: hidden;
        border-color: var(--border-color);
        background: rgba(255, 255, 255, 0.04);
    }

    .mobile-menu-icon,
    .mobile-menu-icon::before,
    .mobile-menu-icon::after {
        width: 20px;
    }

    /* Grids - Stack Everything */
    .features-grid,
    .value-grid,
    .metrics-stats,
    .integrations-grid,
    .pricing-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .process-pipeline {
        flex-direction: column;
        gap: 40px;
    }

    .pipeline-connector-bg,
    .pipeline-connector {
        display: none;
    }

    .process-step {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        min-width: 0;
        padding: 32px;
    }

    /* Hero Section */
    /* Hero Section - Optimized for Small Screens */
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
        margin: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        /* Adjusted for mobile fit */
        line-height: 1.2;
        text-align: left;
        margin-left: 0;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        text-align: left;
        margin-left: 0;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Force 3 columns */
        gap: 8px;
        width: 100%;
        margin-bottom: 24px;
        padding: 12px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .hero-stats .stat {
        width: auto;
        background: transparent;
        padding: 4px;
        border-radius: 0;
        border: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats .stat-value {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .hero-stats .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Ensure Visual comes after Content */
    .hero-grid {
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        transform: scale(0.9);
        /* Slight scale down to fit better */
    }

    /* How It Works header */
    .how-it-works .section-header {
        align-items: flex-start;
        text-align: left;
    }

    /* How It Works - Mobile Timeline */
    .process-pipeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        position: relative;
        padding: 40px 0 20px 0;
    }

    .pipeline-connector-bg {
        display: block;
        position: absolute;
        left: 18px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(255, 255, 255, 0.12);
        z-index: 0;
    }

    .pipeline-connector {
        display: none;
    }

    .process-step {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
        padding: 28px 24px;
        position: relative;
        z-index: 1;
        margin-bottom: 16px;
        border-radius: 20px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .process-visual {
        height: auto;
        min-height: 150px;
        border-radius: 16px;
    }

    .step-description {
        width: 100%;
    }

    .step-description p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Complex Components -> Vertical Stack */
    .value-comparison {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .lifecycle-step {
        display: grid;
        grid-template-columns: 48px 1fr;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 28px;
        text-align: left;
        position: relative;
    }

    .lifecycle-step::before {
        content: '';
        position: absolute;
        left: 21px;
        top: 44px;
        width: 2px;
        height: calc(100% - 44px);
        background: rgba(255, 255, 255, 0.14);
    }

    .lifecycle-step:last-child::before {
        display: block;
    }

    .lifecycle-path {
        display: none;
    }

    .step-node {
        position: static;
        left: auto;
        transform: none;
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .step-card {
        width: 100%;
        padding: 16px;
        text-align: left;
        margin: 0;
    }

    .evolution-dashboard {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .evolution-connector {
        display: none;
    }

    .evolution-panel {
        width: 100%;
        padding: 0;
    }

    .evolution-panel.legacy {
        order: 2;
    }

    .evolution-panel.recruit-ai {
        order: 1;
    }

    .evolution-panel.legacy .panel-header,
    .evolution-panel.recruit-ai .panel-header {
        padding: 20px;
        border-radius: 14px 14px 0 0;
    }

    .evolution-panel.legacy .evolution-list,
    .evolution-panel.recruit-ai .evolution-list {
        padding: 6px;
        border-radius: 0 0 14px 14px;
    }

    .panel-header h3 {
        font-size: 1.1rem;
    }

    .evolution-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .item-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
        border-radius: 6px;
    }

    .item-text h4 {
        font-size: 13px;
    }

    .item-text p {
        font-size: 11px;
    }

    .evolution-badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .evolution-list {
        gap: 2px;
    }

    .flow-nodes {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .flow-node {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .flow-node::after {
        font-size: 48px;
        top: 24px;
        right: 24px;
    }

    .node-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .node-content h3 {
        font-size: 17px;
    }

    .node-content p {
        font-size: 14px;
    }

    /* Modals & Forms */
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* iPads: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) {

    .stat-item .stat-label,
    .stat-item .stat-trend {
        display: block;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
}

/* 4. Small Mobile (Max Width: 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }

    .navbar .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo span {
        max-width: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .pricing-price .price {
        font-size: 2.5rem;
    }

    .btn-configure,
    .btn-connect {
        width: 100%;
        justify-content: center;
    }

    .integration-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .integration-actions {
        width: 100%;
        flex-direction: column;
    }

    .flow-nodes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flow-node {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .flow-node::after {
        font-size: 40px;
        top: 20px;
        right: 20px;
    }

    .node-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .node-content h3 {
        font-size: 16px;
    }

    .evolution-panel.legacy .panel-header,
    .evolution-panel.recruit-ai .panel-header {
        padding: 16px;
        border-radius: 12px 12px 0 0;
    }

    .evolution-panel.legacy .evolution-list,
    .evolution-panel.recruit-ai .evolution-list {
        padding: 4px;
        border-radius: 0 0 12px 12px;
    }

    .evolution-item {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 8px;
    }

    .item-icon {
        min-width: 28px;
        height: 28px;
        width: 28px;
        font-size: 12px;
        border-radius: 6px;
    }

    .panel-header h3 {
        font-size: 1rem;
    }

    .status-indicator {
        font-size: 9px;
        padding: 3px 8px;
    }

    .evolution-badge {
        padding: 2px 5px;
        font-size: 9px;
    }

    .item-text h4 {
        font-size: 12px;
    }

    .item-text p {
        font-size: 10px;
    }
}

/* 5. Extra Small Mobile (Max Width: 359px) */
@media (max-width: 359px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .stat-value,
    .stat-number {
        font-size: 1.25rem;
    }

    .integrations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        border-radius: 16px;
    }

    .integration-card {
        padding: 24px 20px;
    }

    .integration-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 18px;
    }

    .integration-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .integration-card h3 {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .integration-tag {
        font-size: 13px;
    }

    .integration-list {
        gap: 6px;
    }

    .audit-log-note {
        padding: 12px 20px;
        font-size: 12px;
        gap: 10px;
        border-radius: 50px;
    }

    .audit-log-note svg {
        width: 16px;
        height: 16px;
    }

    .btn-configure,
    .btn-connect {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}