        :root {
            --brand: #4924FF;
            --brand-dark: #3619DB;   /* For hover states and active buttons */
            --brand-light: #F0EEFF;  /* For background tints and subtle alerts */
            --brand-bg: #EDEFF7;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a68;
            --text-muted: #8888a4;
            --bg-white: #ffffff;
            --bg-light: #fafafc;
            --bg-section: #f8f8fc;
            --border-light: #e8e8f0;
            --success: #10b981;
            --success-bg: #ecfdf5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-white);
            color: var(--text-primary);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        a {
            color: var(--brand);
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }
        
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo svg {
            height: 36px;
            width: auto;
        }
        
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--brand);
            color: #fff;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s ease;
            text-decoration: none;
        }
        
        .nav-cta:hover {
            background: var(--brand-dark);
            transform: translateY(-1px);
            text-decoration: none;
        }
        
.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    color: var(--text-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-login:hover {
    background: var(--bg-light);
    text-decoration: none;
}
        
        
        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-section) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(73, 36, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }
        
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--brand-bg);
            color: var(--brand);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .hero-badge svg {
            width: 16px;
            height: 16px;
        }
        
        .hero h1 {
            font-size: clamp(36px, 5vw, 52px);
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        
        .hero h1 span {
            color: var(--brand);
        }
        
        .hero-description {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 540px;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--border-light);
        }
        
        .hero-stat {
            text-align: left;
        }
        
        .hero-stat-value {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--brand);
            line-height: 1;
        }
        
        .hero-stat-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        
        /* Hero Visual */
        .hero-visual {
            position: relative;
        }
        
        .hero-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(73, 36, 255, 0.1), 0 1px 3px rgba(0,0,0,0.05);
            border: 1px solid var(--border-light);
        }
        
        .hero-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-light);
        }
        
        .hero-card-icon {
            width: 48px;
            height: 48px;
            background: var(--brand-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-card-icon svg {
            width: 24px;
            height: 24px;
            color: var(--brand);
        }
        
        .hero-card-title {
            font-size: 18px;
            font-weight: 700;
        }
        
        .hero-card-subtitle {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        .company-preview {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .company-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px;
            background: var(--bg-light);
            border-radius: 12px;
            transition: all 0.2s ease;
        }
        
        .company-item:hover {
            background: var(--brand-bg);
        }
        
        .company-avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--brand), var(--brand-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
        }
        
        .company-info {
            flex: 1;
        }
        
        .company-name {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 2px;
        }
        
        .company-meta {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .company-score {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: var(--success-bg);
            color: var(--success);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        
        /* Story Section */
        .story {
            padding: 100px 0;
            background: var(--bg-white);
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        @media (max-width: 900px) {
            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        .story-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--brand);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }
        
        .story h2 {
            font-size: clamp(28px, 4vw, 40px);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        
        .story-text {
            color: var(--text-secondary);
            font-size: 17px;
        }
        
        .story-text p {
            margin-bottom: 20px;
        }
        
        .story-quote {
            position: relative;
            padding: 32px;
            background: var(--bg-section);
            border-radius: 16px;
            border-left: 4px solid var(--brand);
            margin-top: 32px;
        }
        
        .story-quote p {
            font-style: italic;
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        
        .story-quote-author {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 600;
        }
        
        .story-visual {
            position: relative;
        }
        
        .story-visual img {
            width: 100%;
            border-radius: 20px;
        }
        
        .story-illustration {
            background: linear-gradient(135deg, var(--brand-bg) 0%, #fff 100%);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .story-illustration::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(73, 36, 255, 0.1) 0%, transparent 60%);
        }
        
        .story-feature-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .story-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--bg-white);
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        
        .story-feature-icon {
            width: 44px;
            height: 44px;
            background: var(--brand);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .story-feature-icon svg {
            width: 22px;
            height: 22px;
            color: #fff;
        }
        
        .story-feature-content h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .story-feature-content p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--bg-section);
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .section-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        @media (max-width: 900px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .feature-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 36px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(73, 36, 255, 0.08);
            border-color: var(--brand-bg);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--brand-bg);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--brand);
        }
        
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .feature-card p {
            color: var(--text-secondary);
            font-size: 15px;
        }
        
        /* How It Works */
        .how-it-works {
            padding: 100px 0;
            background: var(--bg-white);
        }
        
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        
        @media (max-width: 900px) {
            .steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .steps {
                grid-template-columns: 1fr;
            }
        }
        
        .step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 64px;
            height: 64px;
            background: var(--brand);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 800;
            margin: 0 auto 20px;
        }
        
        .step h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }
        
        .step p {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        /* CTA / Registration Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-white) 100%);
        }
        
        .cta-card {
            background: var(--bg-white);
            border-radius: 28px;
            padding: 60px;
            box-shadow: 0 30px 80px rgba(73, 36, 255, 0.1);
            border: 1px solid var(--border-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        @media (max-width: 900px) {
            .cta-card {
                grid-template-columns: 1fr;
                padding: 40px 24px;
                gap: 40px;
            }
        }
        
        .cta-content h2 {
            font-size: clamp(28px, 4vw, 36px);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        
        .cta-content p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }
        
        .cta-benefits {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .cta-benefit {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-secondary);
        }
        
        .cta-benefit svg {
            width: 20px;
            height: 20px;
            color: var(--success);
            flex-shrink: 0;
        }
        
        
        /* CTA Action Card */
.cta-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-action-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    width: 100%;
}

.cta-action-icon {
    width: 72px;
    height: 72px;
    background: var(--brand-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cta-action-icon svg {
    width: 36px;
    height: 36px;
    color: var(--brand);
}

.cta-action-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-action-card > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.cta-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-action-button:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(73, 36, 255, 0.35);
    text-decoration: none;
    color: #fff;
}

.cta-action-button:active {
    transform: translateY(-1px);
}

.cta-action-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: 0;
}

.cta-action-note a {
    color: var(--brand);
}

.cta-action-note a:hover {
    text-decoration: underline;
}
        
        
        
        /* Footer */
        .footer {
            padding: 60px 0 40px;
            background: var(--text-primary);
            color: rgba(255,255,255,0.7);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        .footer-brand {
            max-width: 300px;
        }
        
        .footer-logo {
            margin-bottom: 16px;
        }
        
        .footer-logo svg {
            height: 32px;
            width: auto;
        }
        
        .footer-logo svg path,
        .footer-logo svg polygon {
            fill: #fff !important;
        }
        
        .footer-description {
            font-size: 15px;
            line-height: 1.7;
        }
        
        .footer-column h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: #fff;
            text-decoration: none;
        }
        
        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }
        
        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
        
        /* Privacy Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background: var(--bg-white);
            border-radius: 20px;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        
        .modal-header h2 {
            font-size: 24px;
        }
        
        .modal-close {
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg-light);
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .modal-close:hover {
            background: var(--border-light);
        }
        
        .modal-content {
            color: var(--text-secondary);
            font-size: 15px;
        }
        
        .modal-content h3 {
            color: var(--text-primary);
            font-size: 18px;
            margin: 24px 0 12px;
        }
        
        .modal-content h3:first-child {
            margin-top: 0;
        }
        
        .modal-content p {
            margin-bottom: 16px;
        }
        
        .modal-content ul {
            margin-bottom: 16px;
            padding-left: 24px;
        }
        
        .modal-content li {
            margin-bottom: 8px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        
        /* Honeypot */
        .hp-field {
            position: absolute;
            left: -9999px;
            opacity: 0;
            height: 0;
            width: 0;
        }
   
        /* Hero Banner Image */
        
.banner-section {
    margin-top:80px;
}
.hero-banner {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 0px;
}

.hero-banner-inner {
    background: url('/assets/img/aix2-header.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 24px;
    height: 200px;
    box-shadow: 0 20px 60px rgba(63, 85, 245, 0.15);
}



/* Sales Problem Highlight */
.sales-problem {
    background: linear-gradient(180deg, var(--brand-bg) 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 36px 40px;
    margin-bottom: 60px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(63, 85, 245, 0.12);
}

.sales-problem-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
}

.sales-problem-stat {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    white-space: nowrap;
}

.sales-problem-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.sales-problem-content p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 720px;
}

@media (max-width: 768px) {
    .sales-problem {
        padding: 28px 24px;
    }

    .sales-problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sales-problem-stat {
        font-size: 44px;
    }
}



/* ========================================
   HERO ANIMATION SECTION
   ======================================== */

.anim-section {
    padding: 80px 0;
     
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    overflow: hidden;
    
}
.anim-spacer {
    height: 50px;
}
.anim-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding:30px;
    
    text-align: center;
    
}

.anim-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: animFadeInUp 0.8s ease forwards;
}

.anim-subheadline {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    opacity: 0;
    animation: animFadeInUp 0.8s ease 0.2s forwards;
}

.anim-wrapper {
    position: relative;
    width: 100%;
    height: 580px;
    perspective: 1200px;
    opacity: 0;
    animation: animFadeIn 0.6s ease 0.4s forwards;
}

@media (max-width: 768px) {
    .anim-wrapper {
        height: auto;
        min-height: 500px;
    }
}

/* Step 1: Search Interface */
.anim-search-step {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-search-step.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) scale(0.95);
}

.anim-search-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 1.5rem;
}

.anim-search-tagline i {
    color: var(--brand, #6366f1);
    font-size: 1.2rem;
}

.anim-search-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.12), 0 1px 3px rgba(0,0,0,0.05);
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.anim-search-box:hover,
.anim-search-box.active {
    border-color: var(--brand, #6366f1);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.18), 0 2px 6px rgba(0,0,0,0.06);
}

.anim-search-input {
    flex: 1;
    font-size: 1.1rem;
    color: #1e293b;
    border: none;
    outline: none;
    font-family: inherit;
    background: transparent;
}

.anim-typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--brand, #6366f1);
    margin-left: 2px;
    animation: animBlink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes animBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.anim-search-btn {
    background: var(--brand, #6366f1);
    border: none;
    border-radius: 12px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.anim-search-btn:hover {
    background: var(--brand-dark, #4f46e5);
    transform: scale(1.05);
}

.anim-search-btn i {
    color: white;
    font-size: 1.3rem;
}

.anim-search-cta {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.anim-search-cta:hover {
    color: var(--brand, #6366f1);
}

/* Step 2: Search Results */
.anim-results-step {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    width: 100%;
    max-width: 700px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-results-step.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.anim-results-step.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) scale(0.95);
}

.anim-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0 4px;
}

.anim-results-count {
    font-size: 1rem;
    color: #475569;
}

.anim-results-count span {
    font-weight: 700;
    color: var(--brand, #6366f1);
}

.anim-results-time {
    font-size: 0.85rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.anim-result-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: left;
}

.anim-result-card:hover {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    border-color: #c7d2fe;
}

.anim-result-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.anim-company-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.anim-company-info {
    flex: 1;
}

.anim-company-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.anim-company-name i {
    color: #94a3b8;
    font-size: 0.9rem;
}

.anim-company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.anim-tag {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
}

.anim-tag.revenue {
    background: #dcfce7;
    color: #166534;
}

.anim-tag.employees {
    background: #dbeafe;
    color: #1e40af;
}

.anim-score-badge {
    background: #22c55e;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.anim-result-details {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .anim-result-details {
        grid-template-columns: 1fr;
    }
}

.anim-detail-label {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.anim-detail-label i {
    font-size: 0.85rem;
    width: 16px;
}

.anim-detail-value {
    color: #1e293b;
}

.anim-detail-value .highlight {
    background: #fef3c7;
    padding: 1px 4px;
    border-radius: 3px;
}

.anim-result-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.anim-btn-primary {
    background: #22c55e;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.anim-btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.anim-btn-primary.clicked {
    background: var(--brand, #6366f1);
    animation: animButtonPulse 0.4s ease;
}

@keyframes animButtonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.anim-btn-secondary {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.anim-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Step 3: Lead Intel Card */
.anim-intel-step {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(40px) scale(0.95);
    width: 100%;
    max-width: 880px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-intel-step.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.anim-intel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    text-align: left;
}

.anim-intel-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.anim-intel-company {
    display: flex;
    align-items: center;
    gap: 16px;
}

.anim-intel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.anim-intel-company-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.anim-intel-meta {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.anim-intel-meta-item {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.anim-intel-actions-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.anim-intel-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 6px;
}

.anim-intel-btn:hover {
    background: rgba(255,255,255,0.2);
}

.anim-intel-btn.primary {
    background: #f59e0b;
    border-color: #f59e0b;
}

.anim-intel-body {
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 16px;
    padding: 20px;
}

@media (max-width: 900px) {
    .anim-intel-body {
        grid-template-columns: 1fr;
    }
}

.anim-intel-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.anim-intel-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.anim-intel-section-title .badge {
    background: #dbeafe;
    color: #2563eb;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: none;
}

.anim-intel-section-title .badge.green {
    background: #dcfce7;
    color: #166534;
}

/* KPI Grid */
.anim-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.anim-kpi-item {
    background: white;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.anim-kpi-item.highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 1px solid #86efac;
}

.anim-kpi-value {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.anim-kpi-value.green { color: #22c55e; }
.anim-kpi-value.red { color: #ef4444; }
.anim-kpi-value.blue { color: #3b82f6; }

.anim-kpi-label {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 2px;
}

/* AI Analysis */
.anim-ai-analysis {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #334155;
}

.anim-ai-highlight {
    background: linear-gradient(120deg, #dcfce7 0%, #bbf7d0 100%);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.anim-ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.anim-ai-tag {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
}

.anim-ai-tag.blue {
    background: #dbeafe;
    color: #1e40af;
}

/* Contacts */
.anim-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.anim-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.anim-contact-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.anim-contact-info {
    flex: 1;
    min-width: 0;
}

.anim-contact-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anim-contact-role {
    font-size: 0.7rem;
    color: #64748b;
}

.anim-contact-action {
    color: var(--brand, #6366f1);
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
}

/* Sales Tips */
.anim-sales-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.anim-sales-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #334155;
}

.anim-sales-tip i {
    color: #22c55e;
    font-size: 0.9rem;
    margin-top: 2px;
}

/* News Section */
.anim-news-item {
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
}

.anim-news-item:last-child {
    margin-bottom: 0;
}

.anim-news-date {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-bottom: 4px;
}

.anim-news-title {
    font-size: 0.8rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.4;
}

.anim-news-source {
    font-size: 0.65rem;
    color: var(--brand, #6366f1);
    margin-top: 4px;
}

/* Restart button */
.anim-restart-indicator {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.9rem;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anim-restart-indicator.visible {
    opacity: 1;
}

.anim-restart-indicator:hover {
    color: var(--brand, #6366f1);
}

.anim-restart-indicator i {
    font-size: 1.1rem;
}

/* Animations */
@keyframes animFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Progress indicator */
.anim-progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    opacity: 0;
    animation: animFadeIn 0.6s ease 0.6s forwards;
}

.anim-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.anim-progress-dot.active {
    background: var(--brand, #6366f1);
    transform: scale(1.2);
}

.anim-progress-dot:hover {
    background: #94a3b8;
}

.anim-progress-dot.active:hover {
    background: var(--brand-dark, #4f46e5);
}

.anim-intel-right-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-section) 100%);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(63, 85, 245, 0.08);
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .testimonial-card {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 32px;
        text-align: center;
    }
}

.testimonial-image {
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(63, 85, 245, 0.3);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-label svg {
    width: 18px;
    height: 18px;
}

.testimonial-quote {
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 80px;
    color: var(--brand-bg);
    font-family: Georgia, serif;
    line-height: 1;
}

@media (max-width: 900px) {
    .testimonial-quote {
        font-size: 20px;
    }
    .testimonial-quote::before {
        display: none;
    }
}

.testimonial-details {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-stats {
    display: flex;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 600px) {
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
}

.testimonial-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-stat-icon {
    width: 48px;
    height: 48px;
    background: var(--success-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--success);
}

.testimonial-stat-content {
    text-align: left;
}

.testimonial-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.testimonial-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

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

@media (max-width: 900px) {
    .testimonial-author {
        justify-content: center;
    }
}

.testimonial-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-author-info a {
    color: var(--brand);
    font-weight: 500;
}

.testimonial-author-logo {
    height: 32px;
    opacity: 0.7;
}
