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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 60, 36, 0.85) 0%, rgba(34, 139, 34, 0.75) 50%, rgba(46, 125, 50, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 4rem 0;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-text {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 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(76, 175, 80, 0.3);
    border: 2px solid transparent;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    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.25);
    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;
}

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

.stat-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

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

.eco-services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

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

.service-intro {
    margin-bottom: 50px;
}

.service-title {
    font-size: 2rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
    text-align: justify;
}

.service-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-text {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(5, 150, 105, 0.4);
    color: white;
    text-decoration: none;
}

.service-visual {
    position: relative;
    padding-left: 40px;
}

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

.service-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 15px;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 15px;
    text-align: center;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 25px;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.benefit-card i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .service-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .service-visual {
        padding-left: 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.7rem;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .service-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
}

/* Block 3 */
.client-testimonials-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f0 50%, #f0faf5 100%);
    position: relative;
}

.client-testimonials-showcase::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"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23059669" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(5, 150, 105, 0.25);
}

.header-badge i {
    font-size: 16px;
    color: #fbbf24;
}

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

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

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 120px;
    color: rgba(5, 150, 105, 0.08);
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(5, 150, 105, 0.2);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid #059669;
    position: relative;
}

.testimonial-card.featured::after {
    content: 'NAJLEPSZA OPINIA';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #059669;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

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

.client-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.client-position {
    font-size: 16px;
    color: #059669;
    font-weight: 600;
    margin-bottom: 4px;
}

.client-company {
    font-size: 15px;
    color: #64748b;
    font-style: italic;
}

.rating-stars {
    display: flex;
    gap: 4px;
    align-self: flex-start;
}

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

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.testimonial-text:last-child {
    margin-bottom: 0;
}

.testimonial-metrics {
    display: flex;
    gap: 32px;
    justify-content: center;
    padding: 24px 0;
    border-top: 2px solid rgba(5, 150, 105, 0.1);
    flex-wrap: wrap;
}

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

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #059669;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
}

.stat-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 600;
    font-size: 15px;
}

.stat-point i {
    font-size: 14px;
}

.testimonial-achievements {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    flex-wrap: wrap;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-compliance {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
    flex-wrap: wrap;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
}

.compliance-item i {
    color: #059669;
    font-size: 16px;
}

.testimonials-summary {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(5, 150, 105, 0.1);
    position: relative;
    z-index: 2;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fffe, #ecfdf5);
    border-radius: 20px;
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: transform 0.3s ease;
}

.summary-stat:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.stat-content {
    flex: 1;
}

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

.stat-text {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.testimonials-action {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 24px;
    color: white;
    overflow: hidden;
    position: relative;
}

.testimonials-action::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

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

.action-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.action-description {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 32px;
}

.action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.action-btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
}

.action-btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.4);
    color: white;
}

.action-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.action-image {
    position: relative;
    z-index: 2;
}

.action-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .client-testimonials-showcase {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 18px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 16px;
    }
    
    .testimonials-summary {
        padding: 40px 24px;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-action {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    
    .action-title {
        font-size: 28px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-btn-primary,
    .action-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        margin: 0 -10px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-stats,
    .testimonial-achievements,
    .testimonial-compliance {
        flex-direction: column;
        gap: 12px;
    }
}

/* Block 4 */
.environmental-process-workflow {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.environmental-process-workflow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.header-decoration i {
    font-size: 24px;
    color: #10b981;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

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

.process-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
}

.timeline-step.reverse {
    flex-direction: row-reverse;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.step-icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #e5f7f3;
}

.step-icon i {
    font-size: 2rem;
    color: #10b981;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
}

.timeline-step.reverse .step-content {
    flex-direction: row-reverse;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.step-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.feature-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-tag i {
    font-size: 0.8rem;
}

.step-visual {
    flex: 1;
    position: relative;
}

.step-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: translateY(-10px);
}

.audit-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.metric-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.metric-card i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 10px;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.strategy-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.component-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #10b981;
}

.component-icon {
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.component-icon i {
    font-size: 1.5rem;
    color: #10b981;
}

.component-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.component-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

.implementation-phases {
    margin-top: 35px;
}

.phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.phase-marker {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-marker i {
    color: white;
    font-size: 1.2rem;
}

.phase-details {
    flex: 1;
}

.phase-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.phase-duration {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.monitoring-benefits {
    margin-top: 30px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.benefit-point {
    background: rgba(16, 185, 129, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    color: #059669;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.benefit-point i {
    font-size: 1rem;
}

.process-results {
    background: white;
    border-radius: 25px;
    padding: 60px;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.results-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

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

.result-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.result-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.result-icon i {
    font-size: 2rem;
    color: white;
}

.result-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.result-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
}

.process-cta {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.cta-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.guarantee-item i {
    color: #10b981;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .timeline-step,
    .timeline-step.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .step-content,
    .timeline-step.reverse .step-content {
        flex-direction: column;
    }
    
    .process-title {
        font-size: 2.2rem;
    }
    
    .step-title {
        font-size: 1.6rem;
    }
    
    .audit-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-results {
        padding: 40px 30px;
    }
    
    .process-cta {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-guarantee {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .environmental-process-workflow {
        padding: 60px 0;
    }
    
    .process-header {
        margin-bottom: 60px;
    }
    
    .process-title {
        font-size: 1.9rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-step {
        margin-bottom: 80px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .results-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

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

.contact-order-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.03) 0%, transparent 50%), 
                    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
}

.form-header {
  text-align: center;
  padding: 64px 48px 48px;
  background: linear-gradient(135deg, #ffffff 0%, #fafffe 100%);
  border-bottom: 1px solid #f1f5f9;
}

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.2);
}

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

.form-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.form-subtitle {
  font-size: 20px;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.consultation-form {
  padding: 64px 48px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.input-label {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.input-wrapper i {
  position: absolute;
  left: 20px;
  font-size: 18px;
  color: #64748b;
  z-index: 2;
}

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

.form-input:focus {
  outline: none;
  border-color: #22c55e;
  background: white;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

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

.submit-button {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 32px;
  min-width: 280px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  letter-spacing: -0.01em;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.4);
}

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

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
}

.benefit-item i {
  color: #22c55e;
  font-size: 14px;
}

.form-visual {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

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

.expert-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
  border: 4px solid white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.expert-info {
  text-align: center;
}

.expert-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.expert-role {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 16px;
  font-weight: 500;
}

.expert-credentials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.credential {
  background: #dcfce7;
  color: #166534;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: #166534;
}

.feature-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

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

.trust-indicators {
  padding: 64px 48px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.trust-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .contact-order-form {
    padding: 80px 0;
  }
  
  .form-wrapper {
    border-radius: 24px;
    margin: 0 16px;
  }
  
  .form-header {
    padding: 48px 24px 32px;
  }
  
  .form-title {
    font-size: 32px;
  }
  
  .form-subtitle {
    font-size: 18px;
  }
  
  .form-content {
    grid-template-columns: 1fr;
  }
  
  .consultation-form,
  .form-visual,
  .trust-indicators {
    padding: 48px 24px;
  }
  
  .form-grid {
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .form-benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .company-logos {
    gap: 24px;
  }
  
  .submit-button {
    min-width: 100%;
  }
}
