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

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

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.85) 0%, rgba(15, 32, 58, 0.75) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    position: absolute;
}

.hero-content {
    z-index: 3;
    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

.hero-cta-button:active {
    transform: translateY(-1px);
}

.hero-cta-button i {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
    transform: translateX(4px);
}

@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;
        padding: 0 20px;
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.quantum-memory-innovation {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.quantum-memory-innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23667eea" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23764ba2" opacity="0.1"/><circle cx="60" cy="70" r="1" fill="%23667eea" opacity="0.1"/><circle cx="30" cy="80" r="1.2" fill="%23764ba2" opacity="0.1"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

.innovation-content {
    position: relative;
    z-index: 2;
}

.innovation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.innovation-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.innovation-description {
    font-size: 1.2rem;
    color: #5a5a7a;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15);
}

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

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

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 1rem;
    color: #5a5a7a;
    margin: 0;
    line-height: 1.6;
}

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

.innovation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

.innovation-visual {
    position: relative;
}

.innovation-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.innovation-stats {
    position: absolute;
    bottom: -40px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #5a5a7a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .quantum-memory-innovation {
        padding: 80px 0;
    }
    
    .innovation-title {
        font-size: 2.2rem;
    }
    
    .innovation-description {
        font-size: 1.1rem;
    }
    
    .innovation-stats {
        flex-direction: column;
        gap: 20px;
        position: static;
        margin-top: 24px;
    }
    
    .innovation-image {
        height: 320px;
    }
}

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

.neural-performance-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
}

.ecosystem-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.ecosystem-label {
    display: inline-block;
    background: linear-gradient(90deg, #8a2be2, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ecosystem-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.ecosystem-grid {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

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

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.horizontal-card .card-visual {
    width: 40%;
    float: left;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ecosystem-card:hover .card-image {
    transform: scale(1.1);
}

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

.ecosystem-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: white;
}

.card-content {
    padding: 30px;
}

.horizontal-card .card-content {
    width: 60%;
    float: right;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

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

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

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00bfff;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.ecosystem-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.ecosystem-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8a2be2 0%, #00bfff 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.ecosystem-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .ecosystem-title {
        font-size: 2.5rem;
    }
    
    .ecosystem-subtitle {
        font-size: 1.125rem;
    }
    
    .horizontal-card .card-visual,
    .horizontal-card .card-content {
        width: 100%;
        float: none;
    }
    
    .horizontal-card .card-visual {
        height: 200px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

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

.order-form-section::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.15) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.form-icon i {
    font-size: 32px;
    color: white;
}

.form-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

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

.order-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.quantum-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantum-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.quantum-input::placeholder {
    color: transparent;
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.quantum-input:focus + .floating-label,
.quantum-input:not(:placeholder-shown) + .floating-label {
    top: -12px;
    left: 16px;
    font-size: 12px;
    color: #667eea;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    padding: 0 8px;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    transition: color 0.3s ease;
}

.input-group:focus-within .input-icon {
    color: #667eea;
}

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

.quantum-input:focus + .floating-label + .input-border {
    width: 100%;
}

.performance-selector {
    margin-bottom: 40px;
}

.selector-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.performance-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.option-card {
    position: relative;
}

.option-radio {
    display: none;
}

.option-label {
    display: block;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.option-radio:checked + .option-label {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.option-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
}

.option-icon {
    color: #667eea;
    font-size: 24px;
}

.option-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.popular-badge {
    position: absolute;
    top: -25px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.submit-button {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

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

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

.button-arrow {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.submit-button:hover .button-arrow {
    transform: translateX(5px);
}

.button-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

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

.particle:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

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

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

.form-security {
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-badge i {
    color: #10ac84;
    font-size: 16px;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .order-form-container {
        padding: 30px 20px;
    }
    
    .performance-options {
        grid-template-columns: 1fr;
    }
    
    .option-label {
        padding: 20px 15px;
    }
    
    .submit-button {
        padding: 18px 30px;
        font-size: 1rem;
    }
}
