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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 70vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-banner .container {
    z-index: 3;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: white;
    padding: 60px 0;
}

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

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.hero-cta:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.innovation-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.innovation-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #e8f4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.innovation-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #64ffda;
}

.innovation-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.innovation-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.floating-stats {
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatAnimation 3s ease-in-out infinite;
    margin: 0.5rem;
}

.stat-bubble-1 {
    animation-delay: 0s;
    margin-left: -20px;
}

.stat-bubble-2 {
    animation-delay: 1s;
    margin-left: 60px;
}

.stat-bubble-3 {
    animation-delay: 2s;
    margin-left: 20px;
}

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

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

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

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

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.tech-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tech-content {
    padding: 1.5rem;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #64ffda;
}

.tech-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 60px 0;
    }
    
    .innovation-title {
        font-size: 2.5rem;
    }
    
    .innovation-description {
        font-size: 1.1rem;
    }
    
    .floating-stats {
        margin-top: -60px;
    }
    
    .stat-bubble {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .innovation-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-bubble-1, .stat-bubble-2, .stat-bubble-3 {
        margin-left: 0;
    }
}

/* Block 3 */
.future-workspace {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f35 25%, #2d1b69 75%, #673ab7 100%);
    overflow: hidden;
}

.workspace-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00e5ff, #3f51b5, #9c27b0, #e91e63);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.workspace-subtitle {
    font-size: 1.4rem;
    color: #b8c5d1;
    font-weight: 300;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.workspace-hero-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    min-height: 500px;
}

.workspace-hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.3);
}

.workspace-hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.workspace-overlay {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.9), rgba(45, 27, 105, 0.8));
}

.workspace-metrics {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

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

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: #b8c5d1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workspace-features-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.feature-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-block:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(156, 39, 176, 0.4);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

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

.feature-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-text {
    color: #b8c5d1;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(63, 81, 181, 0.2);
    border-color: rgba(63, 81, 181, 0.4);
}

.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: #b8c5d1;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .workspace-main-title {
        font-size: 2.5rem;
    }
    
    .workspace-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .workspace-features-stack {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .future-workspace {
        padding: 80px 0;
    }
    
    .workspace-main-title {
        font-size: 2rem;
    }
    
    .workspace-subtitle {
        font-size: 1.1rem;
    }
    
    .workspace-hero-card {
        min-height: 400px;
    }
    
    .workspace-hero-image {
        height: 250px;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a855f7 50%, #06b6d4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.order-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.form-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s ease;
}

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

.form-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-counter {
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.counter-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 4px;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.quantum-order-form {
    width: 100%;
}

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

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

.field-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #06b6d4;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.field-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #06b6d4, #a855f7);
    transition: width 0.3s ease;
}

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

.submit-button {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.3);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover .button-glow {
    transform: rotate(45deg) translateX(100%);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    filter: brightness(1.1);
}

.trust-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (max-width: 768px) {
    .order-form-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .form-visual {
        height: 250px;
    }
    
    .form-content {
        padding: 40px 24px;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
    }
}
