
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.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;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 47, 0.85) 0%, rgba(24, 59, 86, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #e8f4f8;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: #d1e7dd;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description-secondary {
    font-size: 1.1rem;
    color: #b8d4da;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    border: 2px solid transparent;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
    color: white;
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: #d1e7dd;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

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

.services-overview::before {
    content: '';
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.services-content {
    padding-right: 40px;
}

.services-header {
    margin-bottom: 50px;
}

.services-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.services-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 14px;
    color: #475569;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.services-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-services-primary,
.btn-services-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-services-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-services-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-services-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-services-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.services-visual {
    padding-left: 40px;
}

.services-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.services-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-stats-overlay {
    position: absolute;
    top: 320px;
    right: -20px;
    z-index: 3;
}

.stats-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    max-width: 280px;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #3b82f6;
    font-weight: 600;
}

.stats-header i {
    font-size: 18px;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    display: block;
}

.services-process {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
}

.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 14px;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .services-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .services-visual {
        padding-left: 0;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-image-container {
        min-height: auto;
    }
    
    .services-stats-overlay {
        position: relative;
        top: -60px;
        right: 0;
        margin-top: 20px;
    }
    
    .stats-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 30px;
    }
    
    .services-description {
        font-size: 16px;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .services-cta {
        justify-content: center;
    }
    
    .btn-services-primary,
    .btn-services-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.testimonials-showcase {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonials-badge {
            display: inline-block;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .testimonials-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .testimonials-description {
            font-size: 1.2rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border: 2px solid #28a745;
        }

        .testimonial-card.featured::before {
            content: "Top Review";
            position: absolute;
            top: -10px;
            right: 30px;
            background: #28a745;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #28a745;
        }

        .client-info {
            flex: 1;
            min-width: 200px;
        }

        .client-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #212529;
            margin: 0;
        }

        .client-position {
            font-size: 0.95rem;
            color: #28a745;
            font-weight: 600;
            display: block;
        }

        .client-company {
            font-size: 0.9rem;
            color: #6c757d;
            display: block;
        }

        .testimonial-rating {
            color: #ffc107;
            font-size: 1.1rem;
        }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #495057;
            font-style: italic;
            margin: 0 0 25px 0;
            padding: 0;
            border: none;
        }

        .testimonial-content::before {
            content: """;
            font-size: 3rem;
            color: #28a745;
            line-height: 1;
            float: left;
            margin-right: 8px;
            margin-top: -5px;
        }

        .testimonial-metrics {
            display: flex;
            gap: 25px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
            flex-wrap: wrap;
        }

        .metric-item {
            text-align: center;
            flex: 1;
            min-width: 100px;
        }

        .metric-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: #28a745;
        }

        .metric-label {
            display: block;
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 5px;
        }

        .testimonials-summary {
            margin-bottom: 60px;
        }

        .summary-stats {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
        }

        .summary-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .summary-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 15px;
        }

        .summary-description {
            font-size: 1.1rem;
            color: #6c757d;
            margin: 0;
        }

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

        .stat-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 15px;
            border: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .stat-content {
            flex: 1;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: #212529;
            line-height: 1;
        }

        .stat-label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: #495057;
            margin-top: 5px;
        }

        .stat-sublabel {
            display: block;
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 3px;
        }

        .testimonials-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 20px;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        .cta-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-cta-primary, .btn-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-cta-primary {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border: none;
        }

        .btn-cta-primary:hover {
            background: linear-gradient(135deg, #218838, #1c9e85);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            color: white;
        }

        .btn-cta-secondary {
            background: transparent;
            color: #28a745;
            border: 2px solid #28a745;
        }

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

        .cta-visual {
            text-align: center;
        }

        .cta-image {
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 1200px) {
            .testimonial-card.featured {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .testimonials-showcase {
                padding: 60px 0;
            }

            .testimonials-title {
                font-size: 2.2rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 50px;
            }

            .testimonial-card {
                padding: 25px;
            }

            .testimonials-cta {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 35px;
            }

            .stats-carousel {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stat-card {
                padding: 20px;
            }

            .summary-stats {
                padding: 35px 25px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .testimonial-metrics {
                gap: 15px;
            }

            .cta-actions {
                flex-direction: column;
            }

            .btn-cta-primary, .btn-cta-secondary {
                justify-content: center;
                width: 100%;
            }
        }

/* Block 4 */
.energy-process-workflow {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9ff 50%, #fefffe 100%);
    overflow: hidden;
}

.workflow-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-badge {
    display: inline-block;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.workflow-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workflow-description {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 0;
}

.workflow-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: start;
}

.workflow-timeline {
    position: relative;
}

.timeline-phase {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-phase:last-child .phase-connector {
    display: none;
}

.phase-connector {
    position: absolute;
    left: 30px;
    top: 80px;
    width: 3px;
    height: 120px;
    background: linear-gradient(180deg, #d1d5db 0%, #e5e7eb 100%);
    border-radius: 2px;
}

.timeline-phase.active .phase-connector {
    background: linear-gradient(180deg, #059669 0%, #10b981 100%);
    box-shadow: 0 0 20px rgba(5, 150, 105, 0.4);
}

.phase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.timeline-phase.active .phase-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
}

.phase-icon i {
    font-size: 20px;
}

.phase-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.timeline-phase.active .phase-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(5, 150, 105, 0.15);
    border-color: #d1fae5;
}

.phase-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.phase-duration {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.phase-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

.phase-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-deliverables li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #374151;
}

.phase-deliverables i {
    color: #10b981;
    font-size: 12px;
}

.workflow-visual {
    position: sticky;
    top: 100px;
}

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

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

.workflow-guarantees {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantees-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.guarantee-item i {
    color: #10b981;
    font-size: 16px;
    width: 20px;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guarantee-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.workflow-stats {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1f2937;
}

.stats-header i {
    color: #f59e0b;
    font-size: 18px;
}

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

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.workflow-technologies {
    margin-bottom: 80px;
}

.tech-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 50px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tech-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tech-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.tech-content {
    padding: 20px;
}

.tech-name {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.tech-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.workflow-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.workflow-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-workflow-primary,
.btn-workflow-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-workflow-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-workflow-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-workflow-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.benefit-item i {
    color: #10b981;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .workflow-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .workflow-visual {
        position: static;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .workflow-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .energy-process-workflow {
        padding: 60px 0;
    }
    
    .timeline-phase {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .phase-connector {
        left: 30px;
        top: 60px;
        height: 80px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .workflow-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

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

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

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

.form-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}

.form-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.form-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
}

.form-benefits .benefit-item i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.energy-contact-form {
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.field-group {
    position: relative;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.field-label i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 6px;
    font-size: 10px;
}

.form-input {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #9ca3af;
}

.field-helper {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
    font-style: italic;
}

.form-actions {
    text-align: center;
}

.submit-button {
    width: 100%;
    padding: 24px 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

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

.button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.button-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.form-trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.form-trust-indicators .trust-item i {
    color: #10b981;
}

.form-testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.testimonial-content {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 16px 0;
    font-style: italic;
}

.testimonial-text cite {
    font-style: normal;
}

.testimonial-text strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-text span {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-metrics .metric-item {
    text-align: center;
}

.testimonial-metrics .metric-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}

.testimonial-metrics .metric-label {
    font-size: 14px;
    color: #6b7280;
}

.form-additional-info {
    margin-top: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

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

.info-icon i {
    color: white;
    font-size: 20px;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.info-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.info-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-title {
        font-size: 40px;
    }
    
    .energy-contact-form {
        padding: 40px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .energy-contact-form {
        padding: 32px 24px;
    }
    
    .form-testimonial {
        padding: 32px 24px;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .info-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 28px;
    }
    
    .form-description {
        font-size: 16px;
    }
    
    .submit-button {
        padding: 20px 32px;
        font-size: 16px;
    }
}
