
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 100%;
    padding: 3rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-secondary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-feature-icon {
    font-size: 1.5rem;
    color: #ffd700;
    margin-right: 0.75rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-primary-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #ff5252 0%, #d63031 100%);
    color: #ffffff;
}

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

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-primary-btn,
    .hero-secondary-btn {
        text-align: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Block 2 */
.conversion-advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

.advantages-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.advantages-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.advantages-visual {
    margin-bottom: 40px;
}

.advantages-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.advantages-content {
    padding-left: 40px;
}

.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.advantage-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon {
    font-size: 1.5rem;
    color: white;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.advantages-testimonial {
    background: white;
    border-radius: 24px;
    padding: 50px;
    margin: 80px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.testimonial-quote {
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1.2rem;
    color: #334155;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

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

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
}

.author-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-position {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 8px;
}

.author-rating {
    color: #fbbf24;
    font-size: 0.9rem;
}

.advantages-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 60px 50px;
    border-radius: 24px;
    margin-top: 60px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.cta-secondary-btn {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid #475569;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: white;
    color: #1e293b;
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .advantages-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .advantages-title {
        font-size: 2.5rem;
    }
    
    .visual-stats {
        grid-template-columns: 1fr;
    }
    
    .advantage-card {
        flex-direction: column;
        text-align: center;
    }
    
    .advantages-testimonial {
        padding: 30px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Block 3 */
.security-trust-section {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .security-trust-section::before {
            content: '';
            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="20" cy="20" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23cbd5e1" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.4;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .container {
            position: relative;
            z-index: 1;
        }

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

        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }

        .security-badge-icon {
            font-size: 18px;
        }

        .security-title {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            color: #1e293b;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1e293b, #475569);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .security-subtitle {
            font-size: 1.3rem;
            line-height: 1.6;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
        }

        .security-features-row {
            margin-bottom: 100px;
        }

        .security-visual-container {
            position: relative;
            padding: 30px;
        }

        .security-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }

        .security-main-image:hover {
            transform: translateY(-8px);
        }

        .security-certifications {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            justify-content: center;
        }

        .cert-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .cert-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            padding: 8px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .cert-name {
            font-size: 12px;
            font-weight: 600;
            color: #475569;
            text-align: center;
        }

        .security-features-grid {
            display: flex;
            flex-direction: column;
            gap: 35px;
            padding-left: 30px;
        }

        .security-feature-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .security-feature-card::before {
            content: '';
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            width: 4px;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .security-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .security-feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon-container {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .feature-security-icon {
            font-size: 28px;
            color: white;
        }

        .feature-security-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .feature-security-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #64748b;
            margin-bottom: 18px;
        }

        .feature-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border-radius: 12px;
            border-left: 4px solid #10b981;
        }

        .feature-check {
            color: #10b981;
            font-size: 14px;
        }

        .highlight-text {
            font-size: 14px;
            font-weight: 600;
            color: #065f46;
        }

        .security-stats-section {
            margin-bottom: 80px;
            text-align: center;
        }

        .stats-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 50px;
        }

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

        .stat-security-card {
            background: white;
            padding: 40px 30px;
            border-radius: 18px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            text-align: center;
        }

        .stat-security-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .stat-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }

        .stat-icon {
            font-size: 32px;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #1e293b;
            display: block;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            color: #475569;
            display: block;
            margin-bottom: 12px;
        }

        .stat-description {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        .security-trust-indicators {
            background: white;
            padding: 60px;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            text-align: center;
        }

        .trust-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
        }

        .trust-description {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .trust-logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            align-items: center;
        }

        .trust-logo {
            height: 50px;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: all 0.3s ease;
        }

        .trust-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        .security-cta-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .security-cta-btn {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .security-cta-btn:hover {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
            color: white;
        }

        .security-secondary-btn {
            background: transparent;
            color: #475569;
            padding: 16px 36px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .security-secondary-btn:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            color: #334155;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .security-title {
                font-size: 2.5rem;
            }

            .security-features-grid {
                padding-left: 0;
                margin-top: 40px;
            }

            .security-feature-card {
                padding: 25px;
            }

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

            .security-trust-indicators {
                padding: 40px 30px;
            }

            .trust-logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .security-cta-container {
                flex-direction: column;
                align-items: center;
            }
        }

/* Block 4 */
.process-workflow-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.process-workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: 1;
}

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

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

.header-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.badge-icon {
    margin-right: 8px;
    font-size: 16px;
}

.workflow-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.workflow-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.workflow-steps-container {
    margin-bottom: 100px;
}

.workflow-visual {
    position: relative;
    margin-bottom: 40px;
}

.workflow-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.workflow-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stat-bubble {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 120px;
}

.stat-bubble-1 {
    position: absolute;
    top: 20%;
    right: -10%;
}

.stat-bubble-2 {
    position: absolute;
    bottom: 30%;
    left: -10%;
}

.stat-bubble-3 {
    position: absolute;
    top: 60%;
    right: 10%;
}

.bubble-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.bubble-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
}

.workflow-steps-list {
    padding-left: 40px;
}

.workflow-step {
    display: flex;
    margin-bottom: 48px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.active-step {
    border-color: #6366f1;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 24px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-check-icon {
    color: #10b981;
    margin-right: 8px;
    font-size: 14px;
}

.feature-text {
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
}

.workflow-performance-metrics {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    margin-bottom: 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.metrics-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 48px;
}

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

.metric-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.metric-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.metric-icon {
    color: white;
    font-size: 1.75rem;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 12px;
}

.metric-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.workflow-testimonial-section {
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.author-position {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 12px;
}

.company-logo {
    height: 24px;
    width: auto;
}

.testimonial-rating {
    margin-bottom: 24px;
}

.rating-star {
    color: #fbbf24;
    margin-right: 4px;
    font-size: 1.1rem;
}

.rating-text {
    color: #4b5563;
    font-weight: 600;
    margin-left: 8px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 24px;
    border-left: 4px solid #6366f1;
    padding-left: 24px;
}

.testimonial-highlights {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
}

.highlight-icon {
    color: #10b981;
    margin-right: 8px;
    font-size: 1rem;
}

.highlight-text {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
}

.workflow-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 60px;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    margin-bottom: 40px;
}

.workflow-primary-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.workflow-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    color: white;
}

.workflow-secondary-btn {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.workflow-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    color: #cbd5e1;
}

.trust-icon {
    margin-right: 8px;
    color: #10b981;
    font-size: 1.1rem;
}

.trust-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .workflow-title {
        font-size: 2.5rem;
    }
    
    .workflow-steps-list {
        padding-left: 0;
    }
    
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        align-self: center;
    }
    
    .stat-bubble {
        position: relative !important;
        margin: 10px;
        display: inline-block;
    }
    
    .workflow-stats-overlay {
        position: relative;
        text-align: center;
        margin-top: 20px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .testimonial-highlights {
        justify-content: center;
    }
    
    .workflow-cta-section {
        padding: 60px 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .workflow-primary-btn,
    .workflow-secondary-btn {
        display: block;
        margin: 8px auto;
        text-align: center;
    }
}

/* Block 5 */
.contact-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    background: url('/images/abstract-geometric-pattern.jpg') center/cover;
    opacity: 0.05;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-icon i {
    font-size: 32px;
    color: white;
}

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b8b8b;
    font-size: 18px;
    z-index: 3;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #8b8b8b;
    font-weight: 400;
}

.form-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #667eea;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.4;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    margin-bottom: 30px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-icon {
    font-size: 20px;
}

.button-ripple {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.form-trust-indicators {
    text-align: center;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-note {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-icon {
    color: #667eea;
    margin-top: 2px;
    flex-shrink: 0;
}

.testimonial-preview {
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.author-position {
    color: #6b7280;
    font-size: 0.9rem;
}

.additional-options {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.options-header {
    text-align: center;
    margin-bottom: 30px;
}

.options-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.options-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    color: white;
}

.option-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.option-detail {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .form-grid .input-group:last-child {
        grid-column: 1 / -1;
    }
    
    .form-features {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .contact-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .form-container {
        padding: 80px;
    }
    
    .form-title {
        font-size: 3.8rem;
    }
    
    .form-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-container {
        padding: 40px 25px;
        margin: 0 15px 30px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .additional-options {
        margin: 0 15px;
        padding: 30px 20px;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        margin: 0 15px 30px;
        padding: 30px 20px;
    }
}
