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

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

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

    .hero-overlay {
        position: relative;
        top: -70vh;
        width: 100%;
        height: 70vh;
        background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.75) 50%, rgba(0, 0, 0, 0.6) 100%);
        z-index: 2;
    }

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

    .hero-content {
        color: white;
        padding: 2rem 0;
    }

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

    .hero-description {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        font-weight: 300;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-button {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 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(255, 107, 107, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .hero-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
        color: white;
        background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .hero-button {
            padding: 0.9rem 2rem;
            font-size: 1rem;
        }

        .hero-banner {
            min-height: 60vh;
        }

        .hero-image {
            height: 60vh;
        }

        .hero-overlay {
            top: -60vh;
            height: 60vh;
        }

        .hero-banner .container {
            top: -60vh;
            height: 60vh;
        }
    }

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

        .hero-description {
            font-size: 1rem;
            padding: 0 1rem;
        }

        .hero-content {
            padding: 1rem 0;
        }
    }

/* Block 2 */
.quantum-devices-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2d2d5f 100%);
    color: white;
    overflow: hidden;
}

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

.quantum-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.quantum-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #b8b9ff;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.feature-text p {
    color: #b8b9ff;
    margin: 0;
    line-height: 1.5;
}

.quantum-cta-btn {
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.quantum-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}

.quantum-visual {
    position: relative;
}

.quantum-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.quantum-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #b8b9ff;
}

.quantum-devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.device-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.device-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.device-info p {
    color: #b8b9ff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.device-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
}

@media (max-width: 992px) {
    .quantum-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-stats {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2rem;
    }
    
    .quantum-description {
        font-size: 1.1rem;
    }
    
    .quantum-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Block 3 */
.biometric-wellness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.biometric-wellness-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 108, 223, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.wellness-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d6cdf 0%, #1e40af 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wellness-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.wellness-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dashboard-header {
    position: relative;
    margin-bottom: 2rem;
}

.scanner-device {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.vitals-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(10px);
}

.vital-reading {
    text-align: center;
    color: white;
}

.vital-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
}

.vital-unit {
    font-size: 0.9rem;
    color: #94a3b8;
}

.vital-label {
    display: block;
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 0.25rem;
}

.wellness-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.metric-info {
    flex: 1;
}

.metric-info h5 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 4px;
    width: var(--progress, 0%);
    animation: fillProgress 2s ease-out;
}

.progress-fill[data-progress="87"] {
    --progress: 87%;
}

.progress-fill[data-progress="92"] {
    --progress: 92%;
}

.progress-fill[data-progress="78"] {
    --progress: 78%;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: var(--progress); }
}

.metric-score {
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
}

.wellness-features {
    padding-left: 2rem;
}

.feature-highlight {
    margin-bottom: 2.5rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-highlight h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.feature-highlight p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.wellness-action-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.wellness-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

.wellness-products-showcase {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.product-highlight {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.product-details h4 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-details p {
    color: #64748b;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #059669;
    display: block;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .wellness-features {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .wellness-products-showcase {
        flex-direction: column;
    }
    
    .wellness-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .vitals-overlay {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vital-reading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .wellness-main-title {
        font-size: 1.9rem;
    }
    
    .wellness-subtitle {
        font-size: 1.1rem;
    }
}

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

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

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.header-visual {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.form-hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 255, 0.5);
}

.processing-overlay {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    animation: pulse-node 2s ease-in-out infinite;
}

.neural-node:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.neural-node:nth-child(2) {
    top: 70%;
    right: 20%;
    animation-delay: 0.7s;
}

.neural-node:nth-child(3) {
    bottom: 25%;
    left: 50%;
    animation-delay: 1.4s;
}

.data-stream {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate-stream 8s linear infinite;
}

@keyframes pulse-node {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

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

.form-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

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

.smart-order-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

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

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.ai-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.insight-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    color: white;
    font-size: 1.2rem;
}

.insight-content h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.insight-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.submit-section {
    text-align: center;
}

.neural-submit-btn {
    position: relative;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.neural-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

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

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: float-particle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0px); opacity: 0.4; }
    50% { transform: translateY(-8px); opacity: 1; }
}

.privacy-notice {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 20px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .ai-insights {
        grid-template-columns: 1fr;
    }
    
    .insight-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .neural-submit-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .neural-order-form {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 25px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 1.9rem;
    }
}
