
/* 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: 1;
}

.hero-bg-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(13, 27, 62, 0.85) 0%, rgba(27, 38, 79, 0.75) 50%, rgba(65, 88, 178, 0.65) 100%);
}

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

.hero-content {
    text-align: center;
    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 4px 20px 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: 300;
}

.hero-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.quantum-storage-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.quantum-content {
    padding: 40px 0;
}

.quantum-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #7c3aed);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.quantum-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.quantum-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 40px;
    max-width: 500px;
}

.quantum-features {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.feature-text p {
    color: #cbd5e0;
    margin: 0;
    font-size: 0.95rem;
}

.quantum-cta-btn {
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantum-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

.quantum-visual {
    position: relative;
    height: 600px;
}

.quantum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
    margin-bottom: 40px;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-item.active {
    animation: quantumGlow 2s infinite alternate;
}

.grid-item.floating {
    animation: quantumFloat 3s ease-in-out infinite;
}

.grid-item.pulse {
    animation: quantumPulse 2.5s ease-in-out infinite;
}

@keyframes quantumGlow {
    0% { box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3); }
    100% { box-shadow: 0 15px 35px rgba(0, 212, 255, 0.8); }
}

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

@keyframes quantumPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.quantum-metrics {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

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

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: quantumParticles 8s linear infinite;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 30%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 4s; }
.particle-4 { top: 80%; left: 70%; animation-delay: 6s; }
.particle-5 { top: 40%; left: 50%; animation-delay: 1s; }

@keyframes quantumParticles {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@media (max-width: 992px) {
    .quantum-title {
        font-size: 2.8rem;
    }
    
    .quantum-visual {
        height: 500px;
        margin-top: 60px;
    }
    
    .quantum-grid {
        height: 350px;
    }
    
    .quantum-metrics {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .quantum-storage-showcase {
        padding: 80px 0;
    }
    
    .quantum-title {
        font-size: 2.2rem;
    }
    
    .quantum-description {
        font-size: 1.1rem;
    }
    
    .quantum-grid {
        height: 280px;
        gap: 15px;
    }
    
    .metric-card {
        min-width: 100px;
        padding: 20px 15px;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
}

/* Block 3 */
.neural-insights-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.4);
    padding: 8px 20px;
    border-radius: 25px;
    color: #da70d6;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.insights-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #da70d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insights-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.neural-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    margin-bottom: 30px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

.processing-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    color: #00ff88;
}

.neural-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.grid-cell {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(138, 43, 226, 0.1);
}

.grid-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-cell:hover img {
    transform: scale(1.1);
}

.cell-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8) 0%, rgba(218, 112, 214, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-cell:hover .cell-overlay {
    opacity: 1;
}

.cell-overlay h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.progress-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 2s linear infinite;
}

.progress-value {
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.neural-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn.active,
.control-btn:hover {
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(138, 43, 226, 0.5);
    color: #da70d6;
}

.insights-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #da70d6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    font-size: 14px;
    color: #00ff88;
    font-weight: 500;
}

.stat-item strong {
    display: block;
    font-size: 18px;
    color: white;
}

.insights-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    margin-top: 60px;
    backdrop-filter: blur(20px);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.insights-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8a2be2, #da70d6);
    border: none;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.insights-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.neural-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(138, 43, 226, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.node-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.node-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.node-4 {
    top: 40%;
    left: 50%;
    animation-delay: 1s;
}

.bg-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    animation: pulse 3s ease-in-out infinite;
}

.connection-1 {
    top: 25%;
    left: 10%;
    width: 200px;
    transform: rotate(30deg);
}

.connection-2 {
    top: 60%;
    right: 15%;
    width: 150px;
    transform: rotate(-45deg);
}

.connection-3 {
    bottom: 35%;
    left: 20%;
    width: 180px;
    transform: rotate(60deg);
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@media (max-width: 1200px) {
    .insights-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .neural-insights-section {
        padding: 80px 0;
    }
    
    .insights-title {
        font-size: 2.2rem;
    }
    
    .neural-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .neural-controls {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .insights-subtitle {
        font-size: 1.1rem;
    }
    
    .neural-dashboard {
        padding: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .insights-cta {
        padding: 30px 20px;
    }
}

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

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    transform: rotate(-5deg);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 1.125rem;
    color: #718096;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

.form-label i {
    color: #667eea;
    width: 20px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

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

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

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

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
}

.loader-ring {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

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

.trust-indicators {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #718096;
    text-align: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -5%;
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -3%;
    animation: float 8s ease-in-out infinite reverse;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .trust-item {
        flex: 1;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.75rem;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .form-control {
        padding: 14px 16px;
    }
    
    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}
