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

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

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(108, 117, 125, 0.9) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -100vh;
}

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

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

.hero-cta-btn {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.6);
    background: linear-gradient(45deg, #0b5ed7, #5a0dcf);
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Block 2 */
.quantum-mobile-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.quantum-mobile-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.quantum-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.quantum-feature-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    backdrop-filter: blur(10px);
}

.quantum-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.quantum-feature-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.quantum-feature-content {
    padding: 2rem;
}

.quantum-icon-wrapper {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.quantum-hologram-icon {
    position: relative;
}

.quantum-hologram-icon i {
    position: absolute;
    color: white;
    font-size: 1rem;
    animation: quantum-float 3s ease-in-out infinite;
}

.quantum-hologram-icon i:nth-child(1) {
    top: -5px;
    left: -5px;
    animation-delay: 0s;
}

.quantum-hologram-icon i:nth-child(2) {
    top: 0;
    left: 0;
    animation-delay: 1s;
}

.quantum-hologram-icon i:nth-child(3) {
    top: 5px;
    left: 5px;
    animation-delay: 2s;
}

@keyframes quantum-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(180deg); opacity: 1; }
}

.quantum-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.quantum-feature-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quantum-feature-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quantum-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.quantum-stat i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .quantum-section-title {
        font-size: 2rem;
    }
    
    .quantum-section-subtitle {
        font-size: 1rem;
    }
    
    .quantum-feature-content {
        padding: 1.5rem;
    }
    
    .quantum-feature-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quantum-stat {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .quantum-mobile-features {
        padding: 3rem 0;
    }
    
    .quantum-feature-image {
        height: 180px;
    }
}

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

.neural-ecosystem-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.neural-ecosystem-showcase > .container {
    position: relative;
    z-index: 2;
}

.neural-ecosystem-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f8f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.neural-content-block {
    padding: 2rem 0;
}

.neural-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.neural-content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.neural-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.neural-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.neural-action-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.neural-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.neural-visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.neural-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.neural-node-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.neural-node-3 {
    bottom: 15%;
    left: 30%;
    animation-delay: 2s;
}

.neural-connection {
    position: absolute;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    height: 3px;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.neural-connection-1 {
    top: 35%;
    left: 20%;
    width: 120px;
    transform: rotate(45deg);
}

.neural-connection-2 {
    top: 50%;
    right: 25%;
    width: 100px;
    transform: rotate(-30deg);
}

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

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

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

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

.neural-experience-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.neural-exp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ffeaa7, #fab1a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.neural-exp-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.neural-exp-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.neural-exp-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.neural-exp-stats span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.neural-future-preview {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.neural-future-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.neural-future-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.neural-future-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.neural-future-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.neural-future-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.neural-future-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.neural-future-btn.primary {
    background: linear-gradient(45deg, #00b894, #00a085);
    color: white;
}

.neural-future-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.neural-future-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .neural-ecosystem-title {
        font-size: 2rem;
    }
    
    .neural-content-title {
        font-size: 1.8rem;
    }
    
    .neural-metrics {
        gap: 1rem;
    }
    
    .neural-experience-grid {
        grid-template-columns: 1fr;
    }
    
    .neural-future-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .neural-future-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Block 4 */
.quantum-order-form {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.quantum-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    animation: quantum-float 20s linear infinite;
}

@keyframes quantum-float {
    0% { transform: translateX(-60px) translateY(-60px); }
    100% { transform: translateX(60px) translateY(60px); }
}

.quantum-form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.quantum-form-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.quantum-form-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quantum-form-visual {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.quantum-form-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.quantum-pulse-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
}

.quantum-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: quantum-pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.quantum-pulse-ring:nth-child(2) {
    animation-delay: 0.7s;
}

.quantum-pulse-ring:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes quantum-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.quantum-form-container {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.quantum-contact-form {
    position: relative;
}

.quantum-form-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.quantum-input-group {
    position: relative;
}

.quantum-form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.quantum-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.quantum-input-icon {
    position: absolute;
    left: 1rem;
    color: #667eea;
    font-size: 1.1rem;
    z-index: 3;
    transition: all 0.3s ease;
}

.quantum-form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    z-index: 2;
}

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

.quantum-form-input:focus + .quantum-input-underline {
    width: 100%;
}

.quantum-form-input:focus ~ .quantum-input-icon {
    color: #667eea;
    transform: scale(1.1);
}

.quantum-input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 0 0 12px 12px;
    z-index: 1;
}

.quantum-validation-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.quantum-form-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quantum-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
}

.quantum-feature-item i {
    font-size: 1.1rem;
}

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

.quantum-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

.quantum-btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quantum-submit-btn.loading .quantum-btn-text,
.quantum-submit-btn.loading .quantum-btn-icon {
    opacity: 0;
}

.quantum-submit-btn.loading .quantum-btn-loader {
    opacity: 1;
}

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

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

.quantum-btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.quantum-form-disclaimer {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 1rem;
    line-height: 1.5;
}

.quantum-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.quantum-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.quantum-trust-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease;
}

.quantum-trust-item:hover .quantum-trust-badge {
    transform: scale(1.1);
}

.quantum-trust-item span {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .quantum-order-form {
        padding: 3rem 0;
    }
    
    .quantum-form-title {
        font-size: 2.2rem;
    }
    
    .quantum-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .quantum-form-features {
        gap: 1rem;
    }
    
    .quantum-feature-item {
        font-size: 0.8rem;
    }
    
    .quantum-submit-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .quantum-trust-indicators {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .quantum-form-title {
        font-size: 1.8rem;
    }
    
    .quantum-form-subtitle {
        font-size: 1rem;
    }
    
    .quantum-form-image {
        width: 120px;
        height: 120px;
    }
    
    .quantum-pulse-overlay {
        width: 150px;
        height: 150px;
    }
}
