
/* 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-image-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .hero-background-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(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        padding: 100px 0;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        color: #f8f9fa;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .hero-description {
        font-size: 1.1rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        opacity: 0.9;
    }

    .hero-description-secondary {
        font-size: 1rem;
        color: #f8f9fa;
        margin-bottom: 3rem;
        line-height: 1.6;
        opacity: 0.85;
    }

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

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #ffffff;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: #ffd700;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        display: block;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
        font-weight: 500;
    }

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

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

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

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

    .hero-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .hero-guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        color: #ffffff;
        font-size: 0.95rem;
        opacity: 0.9;
    }

    .guarantee-icon {
        font-size: 1.3rem;
        color: #00d4aa;
    }

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

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
        }
        
        .hero-stats {
            gap: 2rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .hero-btn-primary,
        .hero-btn-secondary {
            width: 100%;
            max-width: 300px;
        }
    }

    @media (max-width: 576px) {
        .hero-content {
            padding: 80px 0;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }

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

.services-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.section-subdescription {
    font-size: 1rem;
    color: #7b8794;
    line-height: 1.6;
}

.services-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.services-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.services-main-image:hover {
    transform: scale(1.05);
}

.image-overlay-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.overlay-stat {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.overlay-stat i {
    color: #667eea;
    font-size: 1.2rem;
}

.services-grid {
    margin-top: 80px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e8ecf0;
    position: relative;
}

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

.featured-service {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon {
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 18px;
}

.service-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.service-features i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e8ecf0;
    margin-top: auto;
}

.success-rate {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-from {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

.services-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    color: white;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.services-cta-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services-cta-btn:hover {
    background: white;
    color: #667eea;
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .services-main-image {
        height: 300px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .services-cta-section {
        text-align: center;
    }
    
    .services-cta-btn {
        margin-top: 20px;
    }
}

/* Block 3 */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
}

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

.testimonials-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonials-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-stats-row {
    margin-bottom: 70px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
    font-weight: 500;
    margin-top: 5px;
}

.testimonials-grid {
    margin-bottom: 70px;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.featured-testimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.featured-testimonial::before {
    content: '⭐ Wyróżniona historia';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #f0f0f0;
}

.featured-testimonial .client-avatar {
    border-color: rgba(255, 255, 255, 0.3);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.featured-testimonial .client-name {
    color: white;
}

.client-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.relationship-length, .session-count {
    background: rgba(102, 126, 234, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: #667eea;
}

.featured-testimonial .relationship-length,
.featured-testimonial .session-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.rating-stars {
    display: flex;
    gap: 3px;
    font-size: 18px;
    color: #ffd700;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.featured-testimonial .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-results {
    background: rgba(102, 126, 234, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.featured-testimonial .testimonial-results {
    background: rgba(255, 255, 255, 0.1);
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

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

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.featured-testimonial .testimonial-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.service-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.featured-testimonial .service-type {
    background: white;
    color: #667eea;
}

.testimonial-date {
    color: #8892b0;
    font-size: 14px;
    font-weight: 500;
}

.featured-testimonial .testimonial-date {
    color: rgba(255, 255, 255, 0.8);
}

.compact-testimonial {
    padding: 30px;
}

.compact-text {
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.testimonials-video-section {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    margin: 70px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.video-testimonial-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-testimonial-wrapper:hover {
    transform: scale(1.02);
}

.video-testimonial-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #667eea;
    transition: all 0.3s ease;
}

.video-testimonial-wrapper:hover .video-play-overlay {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.video-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.video-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.video-highlights {
    display: flex;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 600;
}

.highlight-item i {
    font-size: 20px;
}

.testimonials-trust-indicators {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 25px;
    margin: 70px 0;
}

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

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

.trust-icon {
    font-size: 50px;
    color: #667eea;
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.testimonials-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    border-radius: 25px;
    color: white;
    text-align: center;
}

.cta-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text-section {
    flex: 1;
    text-align: left;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.benefit-point i {
    color: #10b981;
    font-size: 18px;
}

.cta-button-section {
    text-align: center;
}

.testimonials-cta-btn {
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.testimonials-cta-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.cta-guarantee i {
    color: #10b981;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .video-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text-section {
        text-align: center;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .testimonials-video-section,
    .testimonials-trust-indicators,
    .testimonials-cta {
        padding: 40px 20px;
    }
}

/* Block 4 */
.methodology-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.methodology-process-section::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 1000 1000"><circle cx="200" cy="200" r="2" fill="%23dee2e6" opacity="0.5"/><circle cx="800" cy="300" r="2" fill="%23dee2e6" opacity="0.3"/><circle cx="400" cy="700" r="2" fill="%23dee2e6" opacity="0.4"/></svg>');
    pointer-events: none;
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.methodology-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.methodology-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-timeline {
    margin-bottom: 80px;
}

.timeline-header {
    position: relative;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.timeline-header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.timeline-stats-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 30px;
}

.stat-bubble {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 120px;
}

.stat-bubble .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-bubble .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.timeline-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 50px;
    align-items: flex-start;
}

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

.step-number-wrapper {
    position: relative;
    margin-right: 40px;
    flex-shrink: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.step-connector {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, #667eea 0%, rgba(102,126,234,0.3) 100%);
}

.final-step .step-connector {
    display: none;
}

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

.step-content:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.highlighted-step .step-content {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-color: #ffc5c5;
}

.highlighted-step .step-number {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 0 8px 25px rgba(255,107,107,0.3);
}

.step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-duration {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 5px 15px;
    background: rgba(102,126,234,0.1);
    border-radius: 15px;
    display: inline-block;
}

.step-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
}

.step-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-item i {
    color: #667eea;
    font-size: 1.2rem;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.step-outcome {
    background: rgba(40,167,69,0.1);
    color: #28a745;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    border-left: 4px solid #28a745;
}

.methodology-features-grid {
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.methodology-results-section {
    margin-bottom: 80px;
}

.results-chart-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

.results-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.results-stats {
    margin-bottom: 35px;
}

.result-stat {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.stat-details .stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.stat-details .stat-description {
    display: block;
    color: #6c757d;
    font-size: 0.95rem;
}

.results-guarantee {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    border: 1px solid #e1bee7;
}

.guarantee-badge {
    margin-right: 20px;
}

.guarantee-badge i {
    font-size: 2rem;
    color: #667eea;
}

.guarantee-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

.methodology-cta {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.9) 0%, rgba(118,75,162,0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 600px;
}

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

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-benefits-quick {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.quick-benefit {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.quick-benefit i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.methodology-cta-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.methodology-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    color: #5a67d8;
}

@media (max-width: 768px) {
    .methodology-title {
        font-size: 2.2rem;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number-wrapper {
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .step-connector {
        display: none;
    }
    
    .results-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .timeline-stats-overlay {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-bubble {
        min-width: 100px;
        padding: 15px;
    }
    
    .cta-benefits-quick {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

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

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.form-content {
    padding: 0 20px;
    color: white;
}

.form-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.form-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-icon {
    color: #4ade80;
    font-size: 20px;
    margin-right: 12px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}

.trust-item i {
    margin-right: 8px;
    font-size: 16px;
}

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

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

.form-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-subheading {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 0;
}

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

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

.form-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-label-icon {
    margin-right: 8px;
    color: #667eea;
    font-size: 16px;
}

.form-input, .form-textarea {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #374151;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.checkbox-label {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon {
    margin-right: 10px;
    font-size: 18px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover .btn-shine {
    left: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #6b7280;
}

.security-icon {
    margin-right: 6px;
    color: #10b981;
}

.additional-contact-options {
    margin-top: 80px;
}

.contact-divider {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.divider-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0 30px;
    color: white;
    font-weight: 500;
    position: relative;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.method-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.method-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
}

.method-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.method-link:hover {
    border-color: white;
    color: white;
}

.success-stories-preview {
    margin-top: 60px;
}

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

.stories-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
}

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

.story-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    color: white;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.story-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-container {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
