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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 68, 0.85) 0%, rgba(52, 73, 123, 0.75) 50%, rgba(26, 35, 68, 0.85) 100%);
    z-index: 1;
}

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

.hero-text-wrapper {
    max-width: 700px;
    color: white;
    padding: 40px 0;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

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

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-image-container {
        min-height: 500px;
    }
    
    .hero-background-image {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .hero-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }
    
    .hero-text-wrapper {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 450px;
    }
    
    .hero-image-container {
        min-height: 450px;
    }
    
    .hero-background-image {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

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

.quantum-content-wrapper {
padding-right: 30px;
}

.quantum-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(0, 255, 255, 0.1);
border: 1px solid rgba(0, 255, 255, 0.3);
padding: 8px 16px;
border-radius: 25px;
font-size: 14px;
color: #00ffff;
margin-bottom: 20px;
font-weight: 500;
}

.quantum-badge i {
font-size: 16px;
}

.quantum-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 24px;
background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
background-size: 300% 300%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: quantumGradient 4s ease-in-out infinite;
}

@keyframes quantumGradient {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}

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

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

.quantum-feature-item {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 24px;
padding: 20px;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
border-left: 4px solid #00ffff;
transition: all 0.3s ease;
}

.quantum-feature-item:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateX(5px);
}

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

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

.quantum-feature-content h4 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 8px;
color: white;
}

.quantum-feature-content p {
font-size: 0.95rem;
color: #b0b0b0;
margin: 0;
line-height: 1.5;
}

.quantum-cta-button {
background: linear-gradient(45deg, #ff00ff, #8000ff);
color: white;
border: none;
padding: 16px 32px;
font-size: 1.1rem;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

.quantum-cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(255, 0, 255, 0.4);
}

.quantum-image-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.quantum-main-image {
width: 100%;
max-width: 500px;
height: auto;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
transition: all 0.5s ease;
}

.quantum-main-image:hover {
transform: scale(1.05);
box-shadow: 0 25px 80px rgba(0, 255, 255, 0.3);
}

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

.particle {
position: absolute;
width: 6px;
height: 6px;
background: #00ffff;
border-radius: 50%;
opacity: 0.7;
animation: quantumFloat 6s ease-in-out infinite;
}

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

.particle-2 {
top: 60%;
left: 80%;
animation-delay: 1.5s;
background: #ff00ff;
}

.particle-3 {
top: 80%;
left: 25%;
animation-delay: 3s;
background: #ffff00;
}

.particle-4 {
top: 30%;
left: 75%;
animation-delay: 4.5s;
}

.particle-5 {
top: 10%;
left: 60%;
animation-delay: 2s;
background: #ff00ff;
}

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

@media (max-width: 991px) {
.quantum-content-wrapper {
padding-right: 0;
text-align: center;
}

.quantum-title {
font-size: 2.5rem;
}

.quantum-feature-item {
text-align: left;
}
}

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

.quantum-title {
font-size: 2rem;
}

.quantum-feature-item {
flex-direction: column;
text-align: center;
gap: 12px;
}

.quantum-feature-icon {
align-self: center;
}
}

/* Block 3 */
.neural-interface-ecosystem {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.neural-header-section {
    text-align: center;
    margin-bottom: 80px;
}

.neural-title-wrapper {
    margin-bottom: 50px;
}

.neural-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #ff00ff, #ffff00);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.neural-subtitle {
    font-size: 1.3rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.neural-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.neural-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 10px;
}

.neural-stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neural-interface-showcase {
    position: relative;
    margin-bottom: 60px;
}

.neural-showcase-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

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

.neural-pulse {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #00d4ff;
    animation: neuralPulse 2s ease-in-out infinite;
}

.neural-pulse-1 {
    top: 20%;
    left: 30%;
    width: 20px;
    height: 20px;
}

.neural-pulse-2 {
    top: 60%;
    right: 25%;
    width: 15px;
    height: 15px;
    animation-delay: 0.7s;
}

.neural-pulse-3 {
    bottom: 25%;
    left: 20%;
    width: 25px;
    height: 25px;
    animation-delay: 1.4s;
}

@keyframes neuralPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

.neural-data-streams {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.neural-stream {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.neural-stream-line {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    animation: streamFlow 1.5s ease-in-out infinite;
}

.neural-stream-alpha .neural-stream-line {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
}

.neural-stream-beta .neural-stream-line {
    background: linear-gradient(90deg, #4834d4, #686de0);
    animation-delay: 0.5s;
}

.neural-stream-gamma .neural-stream-line {
    background: linear-gradient(90deg, #00d2d3, #54a0ff);
    animation-delay: 1s;
}

.neural-stream-label {
    font-size: 0.8rem;
    color: #fff;
    white-space: nowrap;
}

@keyframes streamFlow {
    0% { transform: scaleX(0.5); opacity: 0.7; }
    50% { transform: scaleX(1.2); opacity: 1; }
    100% { transform: scaleX(0.5); opacity: 0.7; }
}

.neural-capabilities-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.neural-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #00d4ff;
}

.neural-capability-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.neural-capability-item {
    display: flex;
    gap: 15px;
}

.neural-capability-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #ff00ff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.neural-capability-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.neural-capability-content p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 12px;
    line-height: 1.4;
}

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

.neural-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    border-radius: 3px;
    transition: width 1s ease-out;
    animation: progressGlow 2s ease-in-out infinite;
}

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

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

.neural-progress-fill[data-progress="76"] {
    width: 76%;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
    100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
}

.neural-connect-button {
    width: 100%;
    background: linear-gradient(45deg, #ff00ff, #00d4ff);
    border: none;
    border-radius: 15px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.neural-connect-button:hover {
    transform: translateY(-2px);
}

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

.neural-button-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.2); }
}

.neural-applications-section {
    margin-top: 80px;
}

.neural-applications-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.neural-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

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

.neural-app-content {
    padding: 25px;
}

.neural-app-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #00d4ff;
}

.neural-app-content p {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .neural-main-title {
        font-size: 2.5rem;
    }
    
    .neural-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .neural-capabilities-panel {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .neural-applications-grid {
        grid-template-columns: 1fr;
    }
}

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

.order-form-section::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"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="70" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="80" r="0.8" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

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

.order-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 20px;
    font-size: 32px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

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

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

.order-form-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i {
    color: #667eea;
}

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

.form-input::placeholder {
    color: #888;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

.system-preferences {
    margin-bottom: 40px;
}

.preferences-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

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

.preference-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.preference-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.preference-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: white;
}

.preference-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.preference-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.preference-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.preference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.preference-radio:checked + .preference-overlay + .preference-card,
.preference-card:has(.preference-radio:checked) {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.submit-button {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

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

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

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 50px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover .button-glow {
    opacity: 0.7;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.security-notice i {
    color: #4caf50;
}

.benefits-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.benefits-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.benefit-content h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

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

    .order-form-wrapper {
        padding: 30px 20px;
    }

    .order-form-title {
        font-size: 2rem;
    }

    .form-grid {
        gap: 20px;
    }

    .preferences-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefits-panel {
        margin-top: 30px;
        padding: 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .benefit-image {
        align-self: center;
    }
}
