
/* Block 1 */
.hero-banner {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        color: white;
    }
    
    .hero-background {
        position: relative;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.4) contrast(1.1);
    }
    
    .hero-overlay {
        position: relative;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.8) 100%);
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        top: -100vh;
        z-index: 3;
        text-align: center;
        padding: 2rem;
        animation: fadeInUp 1s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-description {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }
    
    .btn-hero-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        border: 2px solid transparent;
    }
    
    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        color: white;
        text-decoration: none;
    }
    
    .btn-hero-secondary {
        background: transparent;
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid white;
        transition: all 0.3s ease;
    }
    
    .btn-hero-secondary:hover {
        background: white;
        color: #667eea;
        transform: translateY(-2px);
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        animation: fadeInUp 1s ease-out 0.5s both;
    }
    
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
    
    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }
    
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
            padding: 0 1rem;
        }
        
        .hero-actions {
            flex-direction: column;
            align-items: center;
        }
        
        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            max-width: 280px;
            text-align: center;
        }
        
        .hero-stats {
            gap: 2rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .hero-content {
            padding: 1rem;
        }
    }

/* Block 2 */
.innovation-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.innovation-showcase::before {
    content: '';
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

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

.innovation-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;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.innovation-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 40px;
}

.innovation-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature-icon i {
    font-size: 24px;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.btn-innovation {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-innovation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.innovation-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.visual-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.visual-item.primary {
    grid-row: 1 / 3;
}

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

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

.visual-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.innovation-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
}

@media (max-width: 992px) {
    .innovation-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .innovation-title {
        font-size: 2.2rem;
    }
    
    .visual-grid {
        height: 400px;
    }
    
    .innovation-stats {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 60px 0;
    }
    
    .innovation-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 150px);
        height: auto;
    }
    
    .visual-item.primary {
        grid-row: auto;
    }
    
    .innovation-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Block 3 */
.workspace-solutions {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.solutions-grid {
    margin-bottom: 80px;
}

.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.solution-media {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

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

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

.solution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.solution-text {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    padding: 6px 12px;
    background: #edf2f7;
    color: #2d3748;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.solution-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.price-label {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

.price-value {
    color: #1a202c;
    font-size: 1.8rem;
    font-weight: 700;
}

.solution-cta {
    display: block;
    text-align: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.solutions-footer {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.footer-text {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.consultation-offer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

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

.offer-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.offer-subtitle {
    color: #4a5568;
    font-size: 14px;
}

.offer-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.offer-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
    .workspace-solutions {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .solution-content {
        padding: 24px;
    }
    
    .solutions-footer {
        padding: 30px 20px;
    }
    
    .consultation-offer {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .offer-content {
        align-items: center;
    }
    
    .offer-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .solution-pricing {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

.order-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    backdrop-filter: blur(100px);
    z-index: 1;
}

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

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(255, 107, 107, 0.5);
    }
}

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

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 90%;
    margin: 0 auto;
}

.order-form {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    margin-top: 40px;
}

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

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

.form-label i {
    color: #667eea;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
}

.input-accent {
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: 4px;
}

.form-control:focus + .input-accent {
    transform: scaleX(1);
}

.form-benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

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

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

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 14px;
}

.benefit-text {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

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

.submit-button:hover::before {
    transform: translateX(0);
}

.button-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 2;
}

.button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

.button-icon i {
    color: white;
    font-size: 16px;
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: #718096;
    font-size: 0.9rem;
}

.form-security i {
    color: #48bb78;
}

.floating-elements {
    position: relative;
    z-index: 1;
}

.float-element {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.float-element img {
    width: 32px;
    height: 32px;
    opacity: 0.7;
}

.element-1 {
    animation-delay: -1s;
}

.element-2 {
    animation-delay: -3s;
}

.element-3 {
    animation-delay: -5s;
}

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

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .order-form {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .form-control {
        padding: 16px 20px;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
}
