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

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

.hero-overlay {
    position: relative;
    top: -100vh;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(67, 56, 202, 0.75));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-secondary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 4rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description,
    .hero-secondary {
        font-size: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        display: block;
        margin: 0.5rem auto;
        max-width: 280px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-overlay {
        padding: 2rem 0;
    }
}

/* Block 2 */
.ai-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.ai-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.ai-features-section .container {
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.feature-grid {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

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

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

.features-cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.features-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
}

.features-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.features-visual:hover .features-image {
    transform: scale(1.05);
}

.features-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
}

.processing-indicator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.indicator-label {
    color: white;
    font-weight: 500;
    min-width: 100px;
    font-size: 0.875rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    animation: progressAnimation 2s ease-in-out infinite alternate;
}

.clarity-progress {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    width: 98%;
}

.noise-progress {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
    width: 94%;
}

.quality-progress {
    background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
    width: 96%;
}

.indicator-value {
    color: white;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

@keyframes progressAnimation {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.technology-showcase {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.showcase-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.tech-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

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

.tech-card:hover .tech-image {
    transform: scale(1.08);
}

.tech-content {
    padding: 1.5rem;
}

.tech-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.tech-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2.25rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-title {
        font-size: 1.875rem;
    }
    
    .technology-showcase {
        padding: 2rem;
        margin-top: 3rem;
    }
}

/* Block 3 */
.testimonials-excellence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 50%, #f0f7ff 100%);
    position: relative;
}

.testimonials-excellence-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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e3f2fd" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

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

.testimonials-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3b82f6;
    margin-right: 20px;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 4px;
}

.author-position {
    font-size: 1rem;
    color: #3b82f6;
    margin-bottom: 2px;
    font-weight: 600;
}

.author-company {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.testimonial-content {
    flex: 1;
}

.rating-stars {
    margin-bottom: 20px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
    font-weight: 400;
}

.testimonial-metrics {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
}

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

.metric-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 4px;
}

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

.excellence-metrics {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.metrics-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 32px;
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #10b981;
}

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

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

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

.metric-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

.trust-indicators {
    position: relative;
}

.trust-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 24px;
}

.trust-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 16px;
}

.trust-description {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.compliance-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    border: 1px solid #93c5fd;
}

.badge-icon {
    color: #3b82f6;
    margin-right: 12px;
    font-size: 1.1rem;
}

.badge-text {
    font-size: 0.9rem;
    color: #1e40af;
    font-weight: 600;
}

.testimonials-cta {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    margin-top: 40px;
}

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

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 36px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonials-primary-btn {
    background: white;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.testimonials-primary-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    color: #3b82f6;
}

.testimonials-secondary-btn {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.testimonials-secondary-btn:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .testimonials-main-title {
        font-size: 2.4rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 28px;
    }
    
    .excellence-metrics {
        margin-bottom: 32px;
    }
    
    .testimonials-cta {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-primary-btn,
    .testimonials-secondary-btn {
        width: 280px;
        text-align: center;
    }
    
    .compliance-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-excellence-section {
        padding: 60px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 16px;
    }
    
    .metrics-grid {
        gap: 20px;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .metric-icon-wrapper {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

/* Block 4 */
.industry-solutions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.solutions-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
}

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

.solution-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.8), rgba(16, 185, 129, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.solution-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #1a202c;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.solution-content {
    padding: 30px;
}

.solution-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.solution-features {
    margin-bottom: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.feature-highlight-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature-highlight-text {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.solution-stats {
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
}

.stat-grid {
    display: flex;
    justify-content: space-around;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-top: 5px;
}

.solution-metrics {
    margin-top: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
}

.metric-icon {
    font-size: 1.2rem;
    color: #3b82f6;
    margin-right: 12px;
}

.metric-text {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.95rem;
}

.healthcare-card .solution-overlay {
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.8));
}

.education-card .solution-overlay {
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.8), rgba(124, 58, 237, 0.8));
}

.finance-card .solution-overlay {
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.8), rgba(217, 119, 6, 0.8));
}

.media-card .solution-overlay {
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.8), rgba(220, 38, 38, 0.8));
}

.legal-card .solution-overlay {
    background: linear-gradient(45deg, rgba(55, 65, 81, 0.8), rgba(31, 41, 55, 0.8));
}

.integration-showcase {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 40px;
}

.integration-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.integration-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.integration-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 2.5rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.integration-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.integration-icon:hover {
    transform: scale(1.1);
}

.integration-name {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.95rem;
}

.integration-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.integration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

@media (max-width: 768px) {
    .solutions-main-title {
        font-size: 2rem;
    }
    
    .solutions-subtitle {
        font-size: 1rem;
    }
    
    .solution-content {
        padding: 20px;
    }
    
    .integration-showcase {
        padding: 30px 20px;
    }
    
    .integration-grid {
        gap: 20px;
    }
    
    .stat-grid {
        flex-direction: column;
        gap: 15px;
    }
}

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

.premium-contact-form-section::before {
    content: '';
    background: url('images/geometric-pattern-overlay.png') repeat;
    opacity: 0.05;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.form-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.1);
}

.form-visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
}

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

.form-overlay {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 3;
}

.premium-contact-form {
    padding: 60px;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
}

.form-section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.form-section-description {
    font-size: 1.1rem;
    color: #666666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

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

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

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 20px 24px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    font-size: 1.1rem;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

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

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.form-input:focus + .input-focus-border {
    width: 100%;
}

.form-benefits {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 16px;
    border: 1px solid #e8ebff;
}

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

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

.benefit-icon {
    color: #667eea;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    color: #444444;
    font-weight: 500;
}

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

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

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

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

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

.btn-text {
    margin-right: 8px;
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.form-privacy-note {
    font-size: 0.9rem;
    color: #666666;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-stats-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.stat-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.stat-card-icon {
    color: #ffffff;
    font-size: 1.5rem;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
    margin-top: 4px;
}

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

.trust-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

.trust-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .premium-contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .premium-contact-form {
        padding: 40px 30px;
    }
    
    .form-section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .premium-contact-form {
        padding: 30px 20px;
    }
    
    .form-input {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .form-submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}
