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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.75) 50%, rgba(0, 123, 255, 0.6) 100%);
    z-index: -1;
}

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

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
    color: #ffffff;
}

.btn-secondary-hero {
    color: #ffffff;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 3rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
}

/* Block 2 */
.ai-insights-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .ai-insights-section::before {
            content: '';
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            z-index: 1;
        }
        
        .insights-badge {
            display: inline-block;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        
        .insights-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .insights-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        
        .insights-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        
        .feature-content p {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.5;
        }
        
        .insights-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .dashboard-mockup {
            max-width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            background: white;
            padding: 20px;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.3s ease;
        }
        
        .dashboard-mockup:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }
        
        .dashboard-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        
        .floating-metric {
            background: white;
            padding: 12px 16px;
            border-radius: 8px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 80px;
            animation: float 3s ease-in-out infinite;
        }
        
        .metric-1 {
            transform: translateX(-20px) translateY(-80px);
            animation-delay: 0s;
        }
        
        .metric-2 {
            transform: translateX(180px) translateY(-120px);
            animation-delay: 1s;
        }
        
        .metric-3 {
            transform: translateX(100px) translateY(-60px);
            animation-delay: 2s;
        }
        
        .metric-label {
            font-size: 12px;
            color: #666;
            font-weight: 500;
            text-align: center;
        }
        
        .metric-value {
            font-size: 18px;
            font-weight: 700;
            color: #007bff;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        @media (max-width: 768px) {
            .ai-insights-section {
                padding: 60px 0;
            }
            
            .insights-title {
                font-size: 2rem;
            }
            
            .insights-description {
                font-size: 1rem;
            }
            
            .dashboard-mockup {
                transform: none;
                padding: 15px;
            }
            
            .floating-metric {
                display: none;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .feature-icon {
                align-self: center;
            }
        }
        
        @media (max-width: 576px) {
            .insights-title {
                font-size: 1.75rem;
            }
            
            .feature-item {
                padding: 16px;
            }
        }

/* Block 3 */
.workspace-evolution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.workspace-evolution-section::before {
    content: '';
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

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

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

.evolution-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1f2937 0%, #4f46e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evolution-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.evolution-timeline {
    position: relative;
    z-index: 1;
}

.evolution-timeline::before {
    content: '';
    background: linear-gradient(180deg, #e5e7eb 0%, #d1d5db 50%, #e5e7eb 100%);
    width: 4px;
    height: 100%;
    left: 30px;
    top: 0;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding: 0 0 60px 80px;
    opacity: 0.7;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.active,
.timeline-item:hover {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.timeline-marker i {
    font-size: 24px;
    color: white;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.timeline-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-image {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

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

.timeline-content:hover .timeline-img {
    transform: scale(1.05);
}

.evolution-stats-panel {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: fit-content;
    position: sticky;
    top: 120px;
    z-index: 1;
}

.evolution-stats-panel h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.stat-card {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon i {
    font-size: 20px;
    color: white;
}

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

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

.stat-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 2px;
}

.future-preview {
    position: relative;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.preview-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-overlay {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.preview-overlay h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.preview-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.evolution-stats-panel:hover .preview-img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .evolution-title {
        font-size: 2.5rem;
    }
    
    .evolution-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-marker i {
        font-size: 18px;
    }
    
    .evolution-stats-panel {
        margin-top: 50px;
        position: static;
    }
}

@media (max-width: 767.98px) {
    .workspace-evolution-section {
        padding: 60px 0;
    }
    
    .evolution-title {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .evolution-stats-panel {
        padding: 30px 20px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    display: block;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 1;
}

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

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.order-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.ergonomic-order-form {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 16px 50px 16px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 46px;
    color: #999;
    font-size: 18px;
}

.form-benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.benefit-item i {
    color: #007bff;
    font-size: 16px;
}

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

.submit-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,123,255,0.4);
}

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

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

.form-disclaimer {
    font-size: 13px;
    color: #666;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e1e8ed;
}

.trust-item img {
    height: 40px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-subtitle {
        font-size: 16px;
    }
    
    .order-form-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .form-benefits {
        padding: 20px 15px;
    }
    
    .benefit-item {
        font-size: 13px;
    }
    
    .trust-item img {
        height: 35px;
    }
}
