@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Video KYC Product Page Styles */

.arvento-video-kyc-page {
    font-family: 'Montserrat', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.kyc-hero {
    text-align: center;
    padding: 80px 20px;
    background: #30afb8;
    color: white;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 15px 50px rgba(48, 175, 184, 0.3);
}

.kyc-hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.kyc-hero .subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #30afb8;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 175, 184, 0.2);
    color: #30afb8;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Features Section */
.features-section {
    margin: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    color: #2d3748;
    margin-bottom: 16px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    background: #f7fafc;
    padding: 60px 40px;
    border-radius: 16px;
    margin: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #30afb8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3em;
    color: #2d3748;
    margin-bottom: 12px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
    margin-bottom: 80px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #667eea;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.use-case-card p {
    color: #666;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 80px;
    background: #30afb8;
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 50px rgba(48, 175, 184, 0.3);
}

.benefits-section .section-title {
    color: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    opacity: 0.9;
    line-height: 1.5;
}

/* Compliance Section */
.compliance-section {
    margin-bottom: 80px;
    text-align: center;
}

.compliance-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-badge {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.compliance-badge p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: #30afb8;
    border-radius: 20px;
    color: white;
    margin-top: 80px;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kyc-hero h1 {
        font-size: 2.5rem;
    }
    
    .kyc-hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .compliance-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .arvento-video-kyc-page {
        padding: 0 15px;
    }
    
    .kyc-hero {
        padding: 60px 20px;
    }
    
    .how-it-works {
        padding: 40px 20px;
    }
    
    .benefits-section {
        padding: 40px 20px;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .compliance-badges {
        grid-template-columns: 1fr;
    }
}