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

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

.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(26, 26, 46, 0.85) 0%, rgba(102, 126, 234, 0.7) 50%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 60px 0;
}

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

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

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 991px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

/* Block 2 */
.quantum-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a0d2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.quantum-services::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.quantum-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #64b3f4 0%, #c2e59c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(100, 179, 244, 0.5);
}

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

.quantum-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quantum-card::before {
    content: '';
    background: linear-gradient(135deg, rgba(100, 179, 244, 0.1) 0%, rgba(194, 229, 156, 0.1) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.quantum-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 179, 244, 0.4);
    box-shadow: 0 20px 40px rgba(100, 179, 244, 0.2);
}

.quantum-card:hover::before {
    opacity: 1;
}

.quantum-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(100, 179, 244, 0.3);
    transition: all 0.4s ease;
}

.quantum-card:hover .quantum-icon-wrapper {
    border-color: rgba(100, 179, 244, 0.8);
    box-shadow: 0 0 20px rgba(100, 179, 244, 0.5);
}

.quantum-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.quantum-card:hover .quantum-icon-img {
    transform: scale(1.1);
}

.quantum-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.quantum-card-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.metric-item {
    background: rgba(100, 179, 244, 0.2);
    color: #64b3f4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(100, 179, 244, 0.3);
}

.quantum-stats-row {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quantum-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.quantum-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #64b3f4 0%, #c2e59c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-subtitle {
        font-size: 1.1rem;
    }
    
    .quantum-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Block 3 */
.neural-marketplace {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.neural-marketplace::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="neural" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23neural)"/></svg>');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.marketplace-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.marketplace-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.feature-text {
    color: white;
    font-weight: 600;
}

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

.marketplace-hero-img {
    width: 100%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-products {
    position: relative;
    margin-left: -50px;
    margin-top: 20px;
}

.product-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
    width: 140px;
    transition: transform 0.3s ease;
}

.product-bubble:hover {
    transform: translateY(-5px) scale(1.05);
}

.product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 0.25rem;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #764ba2;
}

.neural-stats-grid {
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin: 0;
}

.neural-cta-section {
    margin-top: 3rem;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.neural-cta-btn {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    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 10px 30px rgba(255,107,107,0.4);
}

.neural-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.6);
}

@media (max-width: 991px) {
    .marketplace-title {
        font-size: 2.5rem;
    }
    
    .floating-products {
        margin-left: 0;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .marketplace-title {
        font-size: 2rem;
    }
    
    .neural-features {
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

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

.quantum-order-form::before {
    content: '';
    background: radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.form-hero-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #9333ea;
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

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

.form-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

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

.quantum-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.bio-scanner-visual {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.scanner-img {
    width: 200px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    opacity: 0.8;
}

.scanning-overlay {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-top: -120px;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.scan-line {
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #9333ea 50%, transparent 100%);
    animation: scan 2s linear infinite;
    margin-bottom: 10px;
}

@keyframes scan {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.scan-status {
    color: #9333ea;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group-quantum {
    margin-bottom: 40px;
}

.quantum-field {
    position: relative;
    margin-bottom: 30px;
}

.neural-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 60px 20px 20px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.neural-input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.neural-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-border {
    height: 2px;
    background: linear-gradient(90deg, #9333ea 0%, #3b82f6 100%);
    border-radius: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: -2px;
}

.neural-input:focus + .neural-label + .quantum-border {
    opacity: 1;
}

.field-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.neural-features-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-pill {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.pill-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.quantum-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
    border: none;
    border-radius: 15px;
    padding: 20px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantum-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.quantum-ripple {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 0;
    height: 0;
    transform: scale(0);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    to {
        width: 100px;
        height: 100px;
        transform: scale(1);
        opacity: 0;
    }
}

.connection-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    display: block;
    color: #9333ea;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-desc {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .quantum-order-form {
        padding: 60px 0;
    }

    .form-title {
        font-size: 2rem;
    }

    .quantum-form-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .neural-features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-pill {
        width: 100%;
        justify-content: center;
    }

    .connection-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .scanner-img {
        width: 150px;
        height: 90px;
    }

    .scanning-overlay {
        height: 90px;
        margin-top: -90px;
    }
}

@media (max-width: 576px) {
    .neural-input {
        padding: 15px 50px 15px 15px;
    }

    .quantum-submit-btn {
        padding: 18px;
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
    }

    .form-hero-img {
        width: 100px;
        height: 100px;
    }
}
