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

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

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

.hero-overlay {
    position: relative;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(102, 126, 234, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    top: -100%;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.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-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.hero-cta-button:active {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

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

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Block 2 */
.ai-integration-showcase {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.ai-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ai-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-text-content {
    padding-right: 2rem;
}

.ai-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-section-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.ai-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.ai-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

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

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ai-feature-content {
    flex: 1;
}

.ai-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.ai-feature-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.ai-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.ai-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.ai-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-demo-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.ai-demo-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 10px 25px rgba(102, 126, 234, 0.3));
}

.ai-floating-elements {
    position: relative;
    pointer-events: none;
}

.ai-stat-bubble {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.ai-bubble-1 {
    top: -40px;
    right: -30px;
    animation-delay: 0s;
}

.ai-bubble-2 {
    bottom: -30px;
    left: -40px;
    animation-delay: 2s;
}

.ai-bubble-3 {
    top: 50%;
    right: -60px;
    animation-delay: 4s;
}

.ai-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.ai-stat-label {
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 600;
    margin-top: 0.3rem;
}

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

@media (max-width: 1024px) {
    .ai-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .ai-text-content {
        padding-right: 0;
    }
    
    .ai-section-title {
        font-size: 2.4rem;
    }
    
    .ai-bubble-1, .ai-bubble-2, .ai-bubble-3 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 1rem auto;
        display: inline-flex;
    }
    
    .ai-floating-elements {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .ai-integration-showcase {
        padding: 3rem 0;
    }
    
    .ai-showcase-container {
        padding: 0 1rem;
    }
    
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-section-subtitle {
        font-size: 1.1rem;
    }
    
    .ai-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .ai-floating-elements {
        flex-direction: column;
        align-items: center;
    }
    
    .ai-stat-bubble {
        position: relative;
        margin: 0.5rem 0;
    }
}

/* Block 3 */
.quantum-computing-integration {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2d1b69 100%);
    padding: 5rem 0;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.quantum-computing-integration::before {
    content: '';
    background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.quantum-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.quantum-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quantum-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e6e6fa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.quantum-subtitle {
    font-size: 1.3rem;
    color: #b8b8d1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.quantum-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.quantum-tech-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.quantum-tech-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.quantum-tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
}

.quantum-tech-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.quantum-tech-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.quantum-tech-desc {
    color: #b8b8d1;
    line-height: 1.6;
    font-size: 1rem;
}

.quantum-visual-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.quantum-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.quantum-metrics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0%, rgba(75, 0, 130, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.quantum-metric-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.quantum-metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.quantum-metric-unit {
    display: block;
    font-size: 0.9rem;
    color: #e6e6fa;
    font-weight: 500;
}

.qm-card-1 {
    animation: quantumFloat 3s ease-in-out infinite;
}

.qm-card-2 {
    animation: quantumFloat 3s ease-in-out infinite 1s;
}

.qm-card-3 {
    animation: quantumFloat 3s ease-in-out infinite 2s;
}

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

.quantum-applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.quantum-app-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quantum-app-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.quantum-app-icon {
    width: 40px;
    height: 40px;
    filter: brightness(1.3);
}

.quantum-app-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.quantum-cta-section {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.quantum-primary-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}

.quantum-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.quantum-secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantum-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .quantum-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quantum-main-title {
        font-size: 2.5rem;
    }
    
    .quantum-metrics-overlay {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .quantum-container {
        padding: 0 1rem;
    }
    
    .quantum-main-title {
        font-size: 2rem;
    }
    
    .quantum-subtitle {
        font-size: 1.1rem;
    }
    
    .quantum-applications-grid {
        grid-template-columns: 1fr;
    }
    
    .quantum-cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .quantum-primary-btn,
    .quantum-secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

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

.order-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.order-form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

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

.order-form-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #4a5568 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
}

.order-form-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.order-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.order-form-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.order-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.order-benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.order-testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 24px;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
    padding-left: 24px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
}

.order-form-right {
    position: sticky;
    top: 120px;
}

.order-contact-form {
    background: #fff;
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

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

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

.form-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 56px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.1rem;
    color: #2d3748;
    background: #fff;
    transition: all 0.3s ease;
}

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

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.form-extras {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.extras-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 16px;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-option {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option:hover {
    border-color: #667eea;
    color: #667eea;
}

.size-option.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
}

.feature-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-mark {
    width: 24px;
    height: 24px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-mark {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-mark::after {
    content: '✓';
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

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

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

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

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

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.privacy-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.privacy-text {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .order-form-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .order-form-right {
        position: static;
    }
    
    .order-form-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .order-form-container {
        padding: 0 1rem;
    }
    
    .order-form-title {
        font-size: 2rem;
    }
    
    .order-form-subtitle {
        font-size: 1.1rem;
    }
    
    .order-contact-form {
        padding: 32px;
    }
    
    .size-options {
        flex-direction: column;
    }
    
    .order-benefit-item {
        gap: 16px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        padding: 14px;
    }
    
    .order-testimonial {
        padding: 32px;
    }
}
