
/* 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-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100vh;
    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-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    color: white;
    animation: fadeInUp 1.2s ease-out;
}

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

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-additional {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

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

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.9;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        gap: 2rem;
        justify-content: space-between;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

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

.insurance-services-showcase::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.services-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #3b82f6;
}

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-content {
    padding: 32px;
}

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

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

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.service-features i {
    color: #10b981;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.service-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.kasko-service .service-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.health-service .service-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.life-service .service-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.business-service .service-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.travel-service .service-badge {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.services-cta {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 60px 40px;
    border-radius: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    z-index: 1;
}

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

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

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

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

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

.cta-primary-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-primary-btn:hover {
    background: white;
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

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

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

@media (max-width: 768px) {
    .services-title {
        font-size: 2.25rem;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .services-cta {
        padding: 40px 20px;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 3 */
.expert-advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f1f8e9 100%);
    overflow: hidden;
}

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

.advantages-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a237e, #3f51b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.advantage-main-image:hover {
    transform: translateY(-5px);
}

.visual-stats {
    display: flex;
    gap: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.stat-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a237e;
}

.stat-badge i {
    font-size: 1.2rem;
    color: #ff6f00;
}

.advantages-content {
    padding-left: 20px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.advantage-text p {
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

.process-flow {
    margin: 80px 0;
    padding: 60px 0;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

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

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

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6f00, #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #1a237e;
}

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

.process-step p {
    color: #546e7a;
    line-height: 1.5;
    font-size: 0.95rem;
}

.client-success {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.success-content {
    padding-left: 30px;
}

.success-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.success-description {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.success-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    color: white;
    font-size: 1.2rem;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
}

.metric-label {
    display: block;
    color: #546e7a;
    font-size: 0.9rem;
}

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

.success-btn {
    background: linear-gradient(135deg, #1a237e, #3f51b5);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.4);
    color: white;
}

.success-btn-secondary {
    background: white;
    color: #1a237e;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #1a237e;
    transition: all 0.3s ease;
}

.success-btn-secondary:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantages-content {
        padding-left: 0;
    }
    
    .success-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .success-metrics {
        justify-content: center;
    }
    
    .success-cta {
        justify-content: center;
    }
    
    .process-steps {
        padding: 0 20px;
    }
    
    .client-success {
        padding: 30px;
    }
}

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

        .testimonials-showcase::before {
            content: '';
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e0f2fe" opacity="0.4"/><circle cx="80" cy="40" r="1.5" fill="%2381c784" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%23ffb74d" opacity="0.4"/></svg>') repeat;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.3;
        }

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

        .testimonials-title {
            font-size: 3.2rem;
            font-weight: 700;
            color: #1a365d;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonials-subtitle {
            font-size: 1.25rem;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 120px;
            color: #e2e8f0;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-color: #3182ce;
        }

        .premium-card {
            border: 2px solid #ffd700;
            background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
        }

        .premium-card::after {
            content: 'Premium';
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .featured-card {
            border: 2px solid #4299e1;
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            transform: scale(1.02);
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .video-testimonial {
            border: 2px solid #38b2ac;
            background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
        }

        .video-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .customer-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e2e8f0;
            transition: border-color 0.3s ease;
        }

        .testimonial-card:hover .customer-photo {
            border-color: #3182ce;
        }

        .customer-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .customer-title {
            font-size: 0.9rem;
            color: #718096;
            margin-bottom: 8px;
        }

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

        .rating i {
            color: #ffd700;
            font-size: 0.9rem;
        }

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

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

        .testimonial-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #e2e8f0;
            font-size: 0.85rem;
        }

        .insurance-type {
            color: #3182ce;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .testimonial-date {
            color: #718096;
        }

        .achievement-badge {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
        }

        .testimonials-stats {
            margin: 80px 0 60px;
            padding: 60px 30px;
            background: white;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .stat-item {
            position: relative;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #2d3748;
            display: block;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #2d3748 0%, #4299e1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 10px;
            display: block;
        }

        .stat-desc {
            font-size: 0.9rem;
            color: #718096;
            line-height: 1.5;
        }

        .testimonials-cta {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

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

        .cta-bg-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(45, 55, 72, 0.9) 0%, rgba(26, 54, 93, 0.8) 100%);
        }

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

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

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

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

        .cta-btn-primary {
            background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(66, 153, 225, 0.5);
            color: white;
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

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

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .trust-item i {
            color: #4299e1;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .testimonials-title {
                font-size: 2.2rem;
            }

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

            .testimonial-card {
                padding: 20px;
            }

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

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

            .trust-indicators {
                gap: 20px;
                flex-direction: column;
                align-items: center;
            }

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

            .testimonials-stats {
                margin: 60px 0 40px;
                padding: 40px 20px;
            }
        }

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

.premium-contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

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

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.form-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

.form-visual {
    position: relative;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.consultation-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 32px 32px;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.benefit-item i {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

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

.form-group {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
    background: #fafbfc;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

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

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

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

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    padding: 20px 40px;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

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

.submit-btn i {
    font-size: 18px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
}

.form-note i {
    color: #22c55e;
    font-size: 16px;
}

.contact-alternatives {
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}

.alternative-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-method:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: #3b82f6;
}

.contact-method.whatsapp:hover {
    color: #25d366;
}

.contact-method i {
    font-size: 24px;
    width: 24px;
    text-align: center;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.method-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.method-value {
    font-size: 1rem;
    font-weight: 600;
}

.trust-section {
    margin-top: 100px;
    text-align: center;
}

.trust-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

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

.trust-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.trust-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid #e5e7eb;
}

.feature-icon i {
    font-size: 32px;
    color: #3b82f6;
}

.feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

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

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.metric-card.highlighted {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: scale(1.05);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.metric-card.highlighted:hover {
    transform: scale(1.05) translateY(-4px);
}

.metric-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.metric-card.highlighted .metric-number {
    color: white;
}

.metric-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.metric-card.highlighted .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .premium-contact-form {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.4rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
    
    .trust-title {
        font-size: 2rem;
    }
    
    .contact-methods {
        gap: 12px;
    }
    
    .contact-method {
        padding: 12px 16px;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .form-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 24px 20px;
    }
    
    .form-input {
        padding: 16px 16px 16px 50px;
    }
    
    .submit-btn {
        padding: 16px 32px;
    }
}
