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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.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.75) 50%, rgba(118, 75, 162, 0.85) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTitleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
    color: #1a1a2e;
    background: linear-gradient(135deg, #ffed4e 0%, #fff2a3 100%);
}

.hero-cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-cta-btn i {
    font-size: 1.2rem;
    animation: headsetPulse 2s ease-in-out infinite;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-banner {
        min-height: 450px;
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
}

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

.innovation-showcase::before {
    content: '';
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    z-index: 1;
}

.innovation-showcase::after {
    content: '';
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 30%;
    left: 5%;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 3;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: #b8b8d1;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.8rem;
    color: #ffd700;
    min-width: 50px;
}

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

.feature-content p {
    font-size: 0.95rem;
    color: #b8b8d1;
    margin: 0;
    line-height: 1.4;
}

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

.tech-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tech-overlay {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    overflow: hidden;
}

.hologram-effect {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.1) 50%, transparent 70%);
    animation: hologramScan 3s ease-in-out infinite;
}

@keyframes hologramScan {
    0% { transform: translateX(-100%) skewX(-10deg); }
    50% { transform: translateX(100%) skewX(-10deg); }
    100% { transform: translateX(-100%) skewX(-10deg); }
}

.stats-container {
    margin-top: 80px;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

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

@media (max-width: 768px) {
    .innovation-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .stats-container {
        margin-top: 50px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
}

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

.neural-experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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.2) 0%, transparent 50%);
}

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

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    color: #b8b9ff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.neural-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.neural-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.neural-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    transition: all 0.6s ease;
}

.neural-card:hover::before {
    left: 100%;
}

.neural-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.neural-card.primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.neural-card.secondary {
    background: linear-gradient(135deg, rgba(255, 119, 198, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
}

.neural-card.tertiary {
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
}

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

.neural-icon i {
    font-size: 1.5rem;
    color: white;
}

.neural-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.neural-content p {
    color: #b8b9ff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.neural-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.neural-features li {
    color: #b8b9ff;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.neural-features li::before {
    content: '→';
    color: #667eea;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.progress-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.progress-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    animation: progressFill 2s ease-in-out;
}

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

.progress-fill[data-progress="95"] { width: 95%; }
.progress-fill[data-progress="88"] { width: 88%; }

.quantum-metrics {
    display: flex;
    gap: 30px;
}

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

.metric-value {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.metric-label {
    color: #b8b9ff;
    font-size: 0.8rem;
    text-align: center;
}

.neural-visualization {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

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

.wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.4);
    animation: waveExpand 3s infinite;
}

.wave-1 {
    top: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.wave-2 {
    top: 60%;
    right: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 1s;
}

.wave-3 {
    bottom: 25%;
    left: 30%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
}

@keyframes waveExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.neural-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.neural-pulse {
    width: 20px;
    height: 20px;
    background: #667eea;
    border-radius: 50%;
    animation: neuralPulse 2s infinite;
}

@keyframes neuralPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.experience-showcase {
    margin-top: 60px;
}

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

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

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

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.experience-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.experience-overlay i {
    color: white;
    font-size: 1.5rem;
}

.experience-content {
    padding: 25px;
}

.experience-content h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience-content p {
    color: #b8b9ff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .neural-grid {
        margin-bottom: 40px;
    }
    
    .quantum-metrics {
        justify-content: center;
    }
    
    .neural-visualization {
        margin-top: 40px;
    }
    
    .neural-interface-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .neural-experiences {
        padding: 60px 0;
    }
    
    .neural-card {
        padding: 20px;
    }
    
    .quantum-metrics {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

.form-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    z-index: 1;
}

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

.form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(102, 126, 234, 0.03), transparent 30%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

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

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

.quantum-particle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.quantum-particle::before,
.quantum-particle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

.quantum-particle::before {
    top: -10px;
    left: 30px;
}

.quantum-particle::after {
    bottom: -10px;
    right: 30px;
    animation-delay: -2s;
}

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

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

.form-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.quantum-form {
    position: relative;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

.input-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.experience-selector {
    margin-bottom: 50px;
}

.selector-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

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

.option-card {
    position: relative;
}

.option-card input[type="radio"] {
    display: none;
}

.option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.option-label:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.option-card input[type="radio"]:checked + .option-label {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.option-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.option-card input[type="radio"]:checked + .option-label .option-icon {
    color: #ffd700;
    transform: scale(1.2);
}

.option-content h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

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

.submit-btn {
    width: 100%;
    padding: 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.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: #ffd700;
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

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

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

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

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

.security-badge {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.security-badge i {
    color: #ffd700;
    font-size: 1.2rem;
}

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

    .form-wrapper {
        padding: 40px 25px;
        border-radius: 20px;
    }

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

    .form-subtitle {
        font-size: 1rem;
    }

    .experience-options {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        font-size: 1.1rem;
        padding: 20px;
    }

    .security-badge {
        flex-direction: column;
        gap: 5px;
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid .form-group:last-child {
        grid-column: span 2;
    }
}
