* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #3b82f6, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.logo-stars {
    position: absolute;
    top: -8px;
    right: -10px;
    font-size: 0.8rem;
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.login-link:hover {
    color: #3b82f6;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #3b82f6 90%, #06b6d4 100%);
    color: white;
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    background: linear-gradient(45deg, #60a5fa, #34d399, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-social-proof {
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.stars {
    color: #06b6d4;
    font-size: 1.2rem;
}

.hero-visual {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    opacity: 0.1;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.floating-documents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.doc-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.1) 70%, transparent 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(59, 130, 246, 0.8);
    animation: float 15s infinite ease-in-out;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.3),
        0 0 40px rgba(6, 182, 212, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.doc-icon:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 60px rgba(6, 182, 212, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.doc-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.doc-icon:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.doc-icon:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.doc-icon:nth-child(4) {
    top: 70%;
    left: 15%;
    animation-delay: -15s;
    animation-duration: 22s;
}

.doc-icon:nth-child(5) {
    top: 40%;
    left: 5%;
    animation-delay: -8s;
    animation-duration: 28s;
}

.doc-icon:nth-child(6) {
    top: 80%;
    left: 70%;
    animation-delay: -12s;
    animation-duration: 16s;
}

.doc-icon:nth-child(7) {
    top: 10%;
    left: 50%;
    animation-delay: -18s;
    animation-duration: 24s;
}

.doc-icon:nth-child(8) {
    top: 90%;
    left: 40%;
    animation-delay: -3s;
    animation-duration: 26s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
        box-shadow: 
            0 0 20px rgba(59, 130, 246, 0.3),
            0 0 40px rgba(6, 182, 212, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(1deg) scale(1.05);
        opacity: 0.9;
        box-shadow: 
            0 0 30px rgba(59, 130, 246, 0.5),
            0 0 60px rgba(6, 182, 212, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: translateY(-8px) translateX(-3px) rotate(-0.5deg) scale(1.02);
        opacity: 0.7;
        box-shadow: 
            0 0 25px rgba(59, 130, 246, 0.4),
            0 0 50px rgba(6, 182, 212, 0.25),
            inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
    75% {
        transform: translateY(-20px) translateX(8px) rotate(0.5deg) scale(1.08);
        opacity: 1;
        box-shadow: 
            0 0 35px rgba(59, 130, 246, 0.6),
            0 0 70px rgba(6, 182, 212, 0.4),
            inset 0 0 35px rgba(255, 255, 255, 0.25);
    }
}

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.video-showcase .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-showcase .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(59, 130, 246, 0.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 4px;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 20px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #3b82f6;
    display: none;
    z-index: 10;
}

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

.video-loader p {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
}

.section-overline {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1e293b;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.benefit-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.benefit-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

.checkmark {
    color: #10b981;
    font-weight: 700;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Detailed Features Section */
.detailed-features {
    padding: 120px 0;
    background: #f8fafc;
}

.detailed-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.detailed-feature:nth-child(even) {
    direction: rtl;
}

.detailed-feature:nth-child(even) > * {
    direction: ltr;
}

.feature-content {
    padding: 0 20px;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.feature-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #475569;
}

.feature-benefits li:before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.feature-visual {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
}

.mock-interface {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #94a3b8;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
        transform: scale(1.02);
    }
}

.upload-area {
    border: 2px dashed #3b82f6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    margin: 20px 0;
}

.processing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #3b82f6;
    font-weight: 600;
    margin: 20px 0;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.data-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.data-point {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.data-point strong {
    display: block;
    color: #3b82f6;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.data-point span {
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .detailed-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-content h2 {
        font-size: 2.2rem;
    }
    
    .detailed-feature:nth-child(even) {
        direction: ltr;
    }
}

/* Platform Features Section */
.platform-features {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.platform-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgb(148, 163, 184)" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.platform-features .container {
    position: relative;
    z-index: 2;
}

.platform-features .section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-features .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.platform-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.platform-feature-card:hover::before {
    transform: scaleX(1);
}

.platform-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.platform-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.platform-feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-features .section-title {
        font-size: 2.2rem;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #1e293b 0%, #475569 30%, #3b82f6 80%, #06b6d4 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(253, 224, 71, 0.5);
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Testimonial Section */
.testimonial {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: #3b82f6;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.author-info h4 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #3b82f6 80%, #06b6d4 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.final-cta .floating-documents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.4;
}

.final-cta .doc-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.final-cta .doc-icon:nth-child(2) {
    top: 70%;
    left: 90%;
    animation-delay: -10s;
    animation-duration: 25s;
}

.final-cta .doc-icon:nth-child(3) {
    top: 25%;
    left: 85%;
    animation-delay: -15s;
    animation-duration: 18s;
}

.final-cta .doc-icon:nth-child(4) {
    top: 80%;
    left: 10%;
    animation-delay: -8s;
    animation-duration: 22s;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.demo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 60px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1.2rem;
}

.step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: #1f2937;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
}

/* Thank You Message */
.thank-you-message {
    display: none;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #8b5cf6 100%);
    border-radius: 24px;
    color: white;
    animation: slideIn 0.5s ease-out;
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.thank-you-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/><circle cx="15" cy="15" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
    pointer-events: none;
}

.thank-you-message h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.thank-you-message p {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-message .material-icons {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    animation: pulse-check 2s ease-in-out infinite;
}

@keyframes pulse-check {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Mobile */
    nav {
        padding: 1rem 0;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-cta {
        gap: 0.75rem;
        width: auto;
        flex-shrink: 0;
    }
    
    .login-link {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
    
    /* Section Mobile */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Grids Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Video Mobile */
    .video-showcase {
        padding: 60px 0 80px;
    }
    
    .video-showcase .section-title {
        font-size: 2rem;
    }
    
    .video-showcase .section-subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        padding: 3px;
    }
    
    /* Detailed Features Mobile */
    .detailed-feature {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .detailed-feature:nth-child(even) {
        direction: ltr;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    /* Mock Interface Mobile */
    .mock-interface {
        padding: 15px;
        min-height: 250px;
        font-size: 2rem;
    }
    
    .processing-indicator {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
        margin: 10px 0;
        font-size: 0.9rem;
    }
    
    .processing-indicator span {
        word-break: break-word;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    /* Header Mobile */
    nav {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .header-cta {
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Section Mobile */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons Mobile */
    .primary-btn,
    .secondary-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* Cards Mobile */
    .benefit-card {
        padding: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .platform-feature-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    /* Video Mobile */
    .video-showcase {
        padding: 40px 0 60px;
    }
    
    .video-showcase .section-title {
        font-size: 1.75rem;
    }
    
    .video-container {
        padding: 2px;
        border-radius: 16px;
    }
    
    .video-wrapper {
        border-radius: 14px;
    }
    
    /* Form Mobile */
    .contact-form {
        padding: 1.5rem;
        margin: 2rem auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Final CTA Mobile */
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        line-height: 50px;
    }
    
    /* Mock Interface Mobile Small */
    .mock-interface {
        padding: 12px;
        min-height: 200px;
        font-size: 1.5rem;
    }
    
    .processing-indicator {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .spinner {
        width: 16px;
        height: 16px;
    }
}
