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

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

.hero-bg-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(13, 110, 253, 0.85) 0%, rgba(26, 26, 46, 0.9) 100%);
    z-index: 2;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

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

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

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

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

.hero-btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.consultation-form {
    padding: 1rem 0;
}

.consultation-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.consultation-form .form-control,
.consultation-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-weight: 700;
    color: #333;
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-banner {
        min-height: 80vh;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Block 2 */
.quantum-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #2d2d5f 100%);
    position: relative;
    overflow: hidden;
}

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

.features-badge {
    display: inline-block;
    background: linear-gradient(45deg, #40e0ff, #ff40e0);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #40e0ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.features-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(64, 224, 255, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.1), rgba(255, 64, 224, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(64, 224, 255, 0.3);
    box-shadow: 0 30px 80px rgba(64, 224, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.2), rgba(255, 64, 224, 0.2));
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

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

.feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-metrics {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #40e0ff;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(64, 224, 255, 0.1), rgba(255, 64, 224, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #40e0ff, #ff40e0);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(64, 224, 255, 0.4);
    filter: brightness(1.1);
}

.features-cta-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: brightness(1.1);
}

@media (max-width: 1200px) {
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .quantum-features {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features-cta-wrapper {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Block 3 */
.neuro-evolution {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #2e1a3a 100%);
    position: relative;
    overflow: hidden;
}

.neuro-evolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.section-header {
    margin-bottom: 60px;
}

.evolution-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.evolution-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.evolution-showcase {
    position: relative;
}

.showcase-primary {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
}

.neural-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid #a855f7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: neuralPulse 2s infinite;
}

@keyframes neuralPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.grid-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.05);
}

.evolution-content {
    padding: 40px;
}

.content-block {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.block-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.block-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.block-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.block-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #a855f7;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.block-progress {
    margin-top: 20px;
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9333ea 0%, #ec4899 100%);
    border-radius: 4px;
    width: 94%;
    animation: progressFill 3s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 94%; }
}

.progress-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.evolution-metric {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.1);
    transition: transform 0.3s ease;
}

.evolution-metric:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.3);
}

.metric-visual img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.metric-title {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.metric-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.evolution-finale {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 60px;
}

.finale-background {
    position: relative;
}

.finale-bg-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.finale-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.8) 0%, rgba(147, 51, 234, 0.6) 50%, rgba(236, 72, 153, 0.8) 100%);
}

.finale-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    z-index: 3;
}

.finale-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.finale-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.finale-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.finale-btn-primary,
.finale-btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.finale-btn-primary {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    color: white;
}

.finale-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.4);
}

.finale-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.finale-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .evolution-title {
        font-size: 2.5rem;
    }
    
    .evolution-subtitle {
        font-size: 1.1rem;
    }
    
    .evolution-content {
        padding: 20px 0;
        margin-top: 40px;
    }
    
    .block-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .finale-title {
        font-size: 2rem;
    }
    
    .finale-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .finale-btn-primary,
    .finale-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

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

.order-form-2025::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.form-wrapper {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

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

.header-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0d6efd 0%, #ff0096 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: quantumPulse 3s ease-in-out infinite;
}

.header-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

@keyframes quantumPulse {
    0%, 100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 20px rgba(13, 110, 253, 0.5); }
    50% { transform: scale(1.1) rotate(180deg); box-shadow: 0 0 40px rgba(255, 0, 150, 0.7); }
}

.form-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0d6efd 0%, #ff0096 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.form-container {
    position: relative;
}

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

.input-wrapper {
    position: relative;
}

.quantum-input {
    width: 100%;
    padding: 20px 0 8px 0;
    font-size: 1.1rem;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.quantum-input:focus,
.quantum-input:valid {
    border-bottom-color: transparent;
}

.quantum-input:focus + .quantum-label,
.quantum-input:valid + .quantum-label {
    transform: translateY(-30px) scale(0.8);
    color: #0d6efd;
}

.quantum-label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.quantum-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0d6efd 0%, #ff0096 100%);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.quantum-input:focus ~ .quantum-underline {
    width: 100%;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.5);
}

.neural-particles {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(-50%);
}

.neural-particles::before,
.neural-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #0d6efd;
    border-radius: 50%;
    animation: neuralFloat 2s ease-in-out infinite;
}

.neural-particles::before {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.neural-particles::after {
    top: 8px;
    left: 8px;
    animation-delay: 0.5s;
    background: #ff0096;
}

.quantum-input:focus ~ .neural-particles {
    opacity: 1;
}

@keyframes neuralFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.5); }
}

.form-actions {
    margin-top: 60px;
    text-align: center;
}

.quantum-submit-btn {
    position: relative;
    background: linear-gradient(135deg, #0d6efd 0%, #ff0096 100%);
    border: none;
    color: #ffffff;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 280px;
}

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

.btn-text {
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.btn-energy {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transition: all 0.6s ease;
}

.quantum-submit-btn:hover .btn-energy {
    left: 100%;
}

.quantum-submit-btn i {
    margin-left: 8px;
    font-size: 1.2rem;
    animation: energyPulse 1.5s ease-in-out infinite;
}

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

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 12px 20px;
    background: rgba(0, 255, 127, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.security-badge img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.security-text {
    color: #00ff7f;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-form-2025 {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .quantum-submit-btn {
        min-width: 100%;
        padding: 16px 30px;
    }
    
    .input-group-quantum {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .quantum-input {
        font-size: 1rem;
        padding: 16px 0 6px 0;
    }
    
    .quantum-label {
        font-size: 1rem;
        top: 16px;
    }
}
