
/* 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(26, 35, 126, 0.85) 0%, rgba(49, 27, 146, 0.75) 50%, rgba(74, 20, 140, 0.85) 100%);
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #e8eaff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #f0f2ff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-secondary {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #e0e5ff;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #e8eaff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

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

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

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description,
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta,
    .hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Block 2 */
.services-overview {
padding: 80px 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.services-intro {
font-size: 1.1rem;
color: #5a6c7d;
line-height: 1.6;
margin-bottom: 40px;
}

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

.service-item {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
padding: 25px;
background: rgba(255, 255, 255, 0.8);
border-radius: 16px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}

.service-item:hover {
transform: translateY(-5px);
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.service-icon {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
flex-shrink: 0;
font-size: 1.5rem;
}

.service-info h4 {
font-size: 1.3rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 10px;
}

.service-info p {
color: #5a6c7d;
line-height: 1.5;
margin: 0;
font-size: 0.95rem;
}

.services-cta .btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: none;
padding: 15px 35px;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
}

.services-cta .btn:hover {
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

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

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

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

.stat-box {
background: rgba(255, 255, 255, 0.9);
padding: 25px 20px;
border-radius: 16px;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}

.stat-box:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
display: block;
font-size: 2rem;
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 8px;
}

.stat-text {
color: #5a6c7d;
font-weight: 500;
font-size: 0.9rem;
}

@media (max-width: 992px) {
.services-content,
.services-visual {
padding-left: 15px;
padding-right: 15px;
}

.services-visual {
margin-top: 50px;
}

.services-title {
font-size: 2rem;
}

.service-item {
padding: 20px;
}

.service-icon {
width: 50px;
height: 50px;
font-size: 1.3rem;
margin-right: 15px;
}

.service-info h4 {
font-size: 1.2rem;
}

.main-service-image {
height: 350px;
}
}

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

.services-title {
font-size: 1.8rem;
}

.service-item {
flex-direction: column;
text-align: center;
}

.service-icon {
margin-right: 0;
margin-bottom: 15px;
}

.stat-box {
padding: 20px 15px;
}

.stat-number {
font-size: 1.8rem;
}
}

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

.testimonials-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(103, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-header {
    position: relative;
    z-index: 2;
}

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

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonials-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 25px;
}

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

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-description {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
    margin-top: 5px;
    margin-bottom: 8px;
}

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

.testimonial-count {
    text-align: center;
}

.count-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

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

.testimonials-image-container {
    position: relative;
}

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

.floating-review {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 200px;
    backdrop-filter: blur(10px);
}

.review-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.85rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 500;
}

.review-author {
    font-size: 0.75rem;
    color: #6c757d;
    font-style: italic;
}

.testimonials-grid {
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(103, 126, 234, 0.1);
}

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

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

.testimonial-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.testimonial-featured .customer-name,
.testimonial-featured .testimonial-text {
    color: white;
}

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

.testimonial-featured .rating-stars {
    color: #ffc107;
}

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

.customer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
    line-height: 1.2;
}

.customer-location {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.testimonial-project {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 10px;
}

.project-type {
    background: rgba(103, 126, 234, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.project-duration {
    color: #6c757d;
}

.before-after .badge {
    background: #28a745;
    color: white;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 15px;
}

.testimonial-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

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

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

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-primary {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: rgba(255,255,255,0.9);
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #667eea;
    border-color: white;
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .testimonials-main-image {
        height: 300px;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonials-cta {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Block 4 */
.process-workflow {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    margin-bottom: 80px;
}

.process-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.process-highlights {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.highlight-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #ffffff;
    color: #667eea;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}

.content-wrapper {
    flex: 1;
}

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

.timeline-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    color: #28a745;
    font-size: 0.8rem;
}

.timeline-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
}

.timeline-image {
    width: 250px;
    height: 180px;
    flex-shrink: 0;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-benefits {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 2px solid #e9ecef;
}

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

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

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

.benefit-text h5 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.benefit-text p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.process-summary {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

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

.cta-description {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.process-btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary.process-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary.process-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.process-guarantee {
    margin-top: 60px;
    text-align: center;
}

.guarantee-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 40px;
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.guarantee-badge {
    font-size: 2rem;
    opacity: 0.9;
}

.guarantee-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.guarantee-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .timeline-container::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        margin-left: 80px;
    }
    
    .timeline-icon {
        margin: 0 20px 0 0;
    }
    
    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-image {
        width: 100%;
        height: 200px;
        order: -1;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        padding: 30px 20px;
    }
    
    .timeline-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

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

.consultation-form-section::before {
    content: '';
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    background-size: 200px 200px;
    background-image: radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.1) 1px, transparent 0);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.consultation-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.consultation-form .form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i {
    color: #667eea;
    font-size: 1rem;
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fafbfc;
    font-size: 1rem;
    color: #2d3748;
    transition: all 0.3s ease;
    outline: none;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.modern-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
    padding-right: 50px;
}

.input-underline {
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0;
    transition: width 0.3s ease;
    margin-top: -2px;
    border-radius: 1px;
}

.modern-input:focus + .input-underline,
.modern-select:focus + .input-underline,
.modern-textarea:focus + .input-underline {
    width: 100%;
}

.consent-section {
    margin: 40px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.consent-checkbox:last-child {
    margin-bottom: 0;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkmark::after {
    content: '✓';
    font-size: 12px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-label .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-label .checkmark::after {
    opacity: 1;
}

.consent-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.consent-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

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

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-sidebar {
    position: sticky;
    top: 120px;
}

.contact-info {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.contact-value {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.contact-value:hover {
    color: #667eea;
}

.response-promise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 25px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.promise-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.promise-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

.success-stats {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.stats-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #667eea;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

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

.trust-logo:hover {
    filter: none;
}

.faq-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .consultation-form-container {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .form-sidebar {
        position: static;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-benefits {
        gap: 15px;
    }
    
    .benefit-tag {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .consultation-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-form-container {
        padding: 25px 20px;
    }
    
    .contact-info,
    .success-stats {
        padding: 20px;
    }
    
    .response-promise {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
}
