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

.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(13, 110, 253, 0.85) 0%, rgba(25, 135, 84, 0.75) 100%);
    z-index: 2;
}

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

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

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

.hero-description {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-secondary {
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-hero-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    color: #ffffff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    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-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

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

.services-showcase::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><circle fill="%23e8f4fd" opacity="0.3" cx="30" cy="30" r="2"/></g></svg>');
z-index: 1;
}

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

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

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

.section-subtitle {
font-size: 1.3rem;
color: #546e7a;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

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

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

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #3f51b5 0%, #2196f3 100%);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.4s ease;
}

.service-card:hover::before {
transform: scaleX(1);
}

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

.service-card.featured {
background: linear-gradient(135deg, #3f51b5 0%, #2196f3 100%);
color: white;
transform: scale(1.02);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
color: white;
}

.service-card.featured .feature-tag {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-image {
width: 100%;
height: 200px;
border-radius: 12px;
overflow: hidden;
margin-bottom: 24px;
}

.service-img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.service-card:hover .service-img {
transform: scale(1.05);
}

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

.service-icon {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #3f51b5 0%, #2196f3 100%);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
box-shadow: 0 10px 30px rgba(63, 81, 181, 0.3);
}

.service-card.featured .service-icon {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}

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

.service-title {
font-size: 1.5rem;
font-weight: 700;
color: #1a237e;
margin-bottom: 16px;
}

.service-description {
font-size: 1rem;
color: #546e7a;
line-height: 1.7;
margin-bottom: 24px;
}

.service-features {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
margin-bottom: 24px;
}

.feature-tag {
background: #e8f4fd;
color: #1565c0;
padding: 6px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid #bbdefb;
}

.feature-tag i {
margin-right: 4px;
}

.service-stats {
display: flex;
justify-content: space-around;
margin-top: 24px;
}

.stat {
text-align: center;
}

.stat-number {
font-size: 1.8rem;
font-weight: 700;
color: white;
display: block;
}

.stat-label {
font-size: 0.85rem;
color: rgba(255, 255, 255, 0.9);
margin-top: 4px;
}

.process-timeline {
background: white;
border-radius: 20px;
padding: 50px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
margin-bottom: 60px;
}

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

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

.timeline-step {
display: flex;
align-items: flex-start;
gap: 20px;
}

.step-number {
width: 50px;
height: 50px;
border-radius: 50%;
background: linear-gradient(135deg, #3f51b5 0%, #2196f3 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
flex-shrink: 0;
box-shadow: 0 6px 20px rgba(63, 81, 181, 0.3);
}

.step-content h4 {
font-size: 1.2rem;
font-weight: 700;
color: #1a237e;
margin-bottom: 8px;
}

.step-content p {
font-size: 0.95rem;
color: #546e7a;
line-height: 1.6;
margin: 0;
}

.cta-section {
background: linear-gradient(135deg, #1a237e 0%, #3f51b5 100%);
border-radius: 20px;
padding: 60px;
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.5; }
50% { transform: scale(1.1); opacity: 0.3; }
}

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

.cta-title {
font-size: 2.2rem;
font-weight: 700;
color: white;
margin-bottom: 16px;
line-height: 1.2;
}

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

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

.btn-primary-cta {
background: white;
color: #1a237e;
padding: 16px 32px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
border: 2px solid white;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
}

.btn-primary-cta:hover {
background: transparent;
color: white;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.section-subtitle {
font-size: 1.1rem;
}

.services-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.service-card {
padding: 30px;
}

.timeline-steps {
grid-template-columns: 1fr;
}

.timeline-step {
flex-direction: column;
text-align: center;
}

.process-timeline {
padding: 30px;
}

.cta-section {
padding: 40px 20px;
}

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

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

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

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

.client-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

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

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

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #007bff, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

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

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

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

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #6610f2);
}

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

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #007bff;
}

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

.client-photo {
    flex-shrink: 0;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.client-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.client-position {
    font-size: 0.95rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 3px;
}

.client-company {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffc107;
    font-size: 14px;
}

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

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: #007bff;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.achievement {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.achievement i {
    font-size: 12px;
}

.testimonial-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.service-used {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.service-used i {
    color: #28a745;
    font-size: 14px;
}

.testimonials-summary {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

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

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

.summary-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-visual {
    flex: 1;
}

.stat-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.stat-info {
    flex-shrink: 0;
    text-align: right;
}

.stat-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.stat-description {
    font-size: 0.9rem;
    color: #6c757d;
    max-width: 150px;
    line-height: 1.3;
}

.summary-cta {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 40px;
}

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

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-primary-testimonial {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-primary-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
    color: white;
}

.btn-secondary-testimonial {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary-testimonial:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
}

.video-testimonials {
    margin-top: 40px;
}

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

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

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-image {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-button {
    background: rgba(0, 123, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.video-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-duration {
    background: #007bff;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .testimonials-summary {
        padding: 30px;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .summary-stat {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-info {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-testimonial,
    .btn-secondary-testimonial {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 4 */
.career-insights-analytics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.analytics-content {
    margin-bottom: 80px;
}

.main-analytics-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.analytics-visual {
    position: relative;
    overflow: hidden;
}

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

.analytics-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
}

.overlay-stats {
    display: flex;
    gap: 20px;
}

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

.overlay-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.analytics-content-area {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.content-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.insight-item {
    display: flex;
    gap: 15px;
}

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

.insight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.insight-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.insight-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

.market-insights-section {
    margin-bottom: 60px;
}

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

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

.market-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid;
}

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

.trend-up {
    border-color: #10b981;
}

.trend-stable {
    border-color: #3b82f6;
}

.trend-emerging {
    border-color: #8b5cf6;
}

.trend-cautious {
    border-color: #f59e0b;
}

.market-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.trend-up .market-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trend-stable .market-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.trend-emerging .market-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.trend-cautious .market-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.market-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.market-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

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

.market-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.market-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
}

.skills-demand-section {
    margin-bottom: 60px;
}

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

.skills-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.skills-subtitle {
    color: #666;
    font-size: 1.1rem;
}

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

.skill-category {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 600;
    color: #1a1a2e;
}

.skill-growth {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 500;
}

.skill-bar {
    background: #f3f4f6;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.skill-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.skill-salary {
    font-size: 0.85rem;
    color: #666;
}

.career-calculator-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calculator-header {
    margin-bottom: 25px;
}

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

.calculator-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.calculator-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.feature-item i {
    color: rgba(255, 255, 255, 0.8);
}

.btn-calculator {
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #667eea;
    text-decoration: none;
}

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

.calculator-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.data-sources-section {
    margin-bottom: 60px;
}

.sources-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
}

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

.source-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.source-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.source-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.source-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.action-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

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

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

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

.btn-action-primary, .btn-action-secondary {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-action-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.btn-action-secondary {
    background: white;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-action-primary:hover, .btn-action-secondary:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-action-primary:hover {
    color: white;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-action-secondary:hover {
    color: #1a1a2e;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .main-analytics-card {
        grid-template-columns: 1fr;
    }
    
    .career-calculator-section {
        grid-template-columns: 1fr;
    }
    
    .calculator-features {
        grid-template-columns: 1fr;
    }
    
    .overlay-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-action-primary, .btn-action-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 5 */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    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="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.trust-item i {
    color: #667eea;
    font-size: 16px;
}

.consultation-form {
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

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

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

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-35px) translateX(-10px) scale(0.85);
    color: #667eea;
    background: white;
    padding: 0 8px;
}

.form-label {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    color: #888;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label i {
    position: absolute;
    left: -34px;
    color: #667eea;
    font-size: 18px;
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus ~ .input-underline {
    transform: scaleX(1);
}

.input-hint {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #888;
    padding-left: 16px;
}

.form-features {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
    border-radius: 16px;
    border: 1px solid #e1e8ff;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.feature-item i {
    color: #667eea;
    font-size: 16px;
    flex-shrink: 0;
}

.submit-section {
    text-align: center;
}

.submit-button {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

.button-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.6s;
}

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

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

.form-visual {
    position: relative;
}

.visual-content {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.success-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.stats-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

.testimonial-preview {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

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

.author-title {
    color: #666;
    font-size: 0.85rem;
    margin-top: 2px;
}

.process-preview {
    margin-top: 40px;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.step-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-text strong {
    color: white;
    font-size: 1rem;
}

.step-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.security-badge {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.security-badge:hover {
    opacity: 1;
}

.badge-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-content {
        padding: 40px 30px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-content {
        margin: 0 16px;
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .security-badges {
        gap: 20px;
    }
}
