
/* Block 1 */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

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

.hero-content {
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff9800);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    padding: 2rem 0;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotateY(5deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-content {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner {
        background-attachment: scroll;
    }
    
    .hero-content,
    .hero-image {
        animation: none;
    }
    
    .hero-image img:hover {
        transform: none;
    }
    
    .btn-hero-primary:hover,
    .btn-hero-secondary:hover {
        transform: none;
    }
}

/* Block 2 */
.browser-ecosystem {
  padding: 120px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

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

.ecosystem-header {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ecosystem-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ecosystem-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 80px auto;
  max-width: 1400px;
  padding: 0 2rem;
}

.ecosystem-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ecosystem-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

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

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s 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(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.overlay-icon {
  font-size: 3rem;
  color: #ffffff;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.ecosystem-card:hover .overlay-icon {
  transform: scale(1);
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.card-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-primary {
  border-top: 4px solid #667eea;
}

.card-secondary {
  border-top: 4px solid #764ba2;
}

.card-accent {
  border-top: 4px solid #f093fb;
}

.card-highlight {
  border-top: 4px solid #4facfe;
}

.ecosystem-stats {
  margin-top: 60px;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .browser-ecosystem {
    padding: 80px 0;
  }
  
  .ecosystem-title {
    font-size: 2.5rem;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 60px auto;
    padding: 0 1rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .ecosystem-stats {
    padding: 2rem 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

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

.quantum-browsing::before {
    content: '';
    background: radial-gradient(circle at 30% 20%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.2) 0%, transparent 50%);
    inset: 0;
    z-index: 1;
}

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

.quantum-content {
    color: white;
}

.quantum-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #8a2be2, #00bfff);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-badge i {
    animation: quantum-spin 3s linear infinite;
}

.quantum-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #00bfff, #8a2be2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: quantum-gradient 4s ease-in-out infinite;
}

.quantum-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.quantum-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #8a2be2, #00bfff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
}

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

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.quantum-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.metric-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00bfff;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantum-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.quantum-sphere {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 2;
}

.sphere-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #00bfff 0%, #8a2be2 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px #00bfff;
    animation: quantum-pulse 2s ease-in-out infinite;
}

.sphere-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.ring-1 {
    width: 150px;
    height: 150px;
    border-color: #8a2be2;
    animation: quantum-rotate 10s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: #00bfff;
    animation: quantum-rotate 15s linear infinite reverse;
}

.ring-3 {
    width: 290px;
    height: 290px;
    border-color: #ffffff;
    border-style: dashed;
    animation: quantum-rotate 20s linear infinite;
}

.quantum-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00bfff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00bfff;
}

.particle-1 { top: 20%; left: 30%; animation: quantum-float 3s ease-in-out infinite; }
.particle-2 { top: 60%; right: 25%; animation: quantum-float 2.5s ease-in-out infinite 0.5s; }
.particle-3 { bottom: 30%; left: 20%; animation: quantum-float 3.5s ease-in-out infinite 1s; }
.particle-4 { top: 40%; right: 40%; animation: quantum-float 2.8s ease-in-out infinite 1.5s; }
.particle-5 { bottom: 50%; right: 15%; animation: quantum-float 3.2s ease-in-out infinite 2s; }
.particle-6 { top: 75%; left: 45%; animation: quantum-float 2.3s ease-in-out infinite 0.8s; }

.quantum-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.7;
    z-index: 1;
}

.quantum-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.data-stream {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #00bfff, transparent);
    animation: quantum-stream 2s linear infinite;
}

.stream-1 {
    height: 100px;
    left: 25%;
    animation-delay: 0s;
}

.stream-2 {
    height: 80px;
    left: 60%;
    animation-delay: 0.7s;
}

.stream-3 {
    height: 120px;
    left: 80%;
    animation-delay: 1.4s;
}

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

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

@keyframes quantum-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px #00bfff; }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 60px #8a2be2; }
}

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

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

@keyframes quantum-stream {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

@media (max-width: 991.98px) {
    .quantum-browsing {
        padding: 80px 0;
    }
    
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quantum-visual {
        min-height: 400px;
        margin-bottom: 40px;
    }
    
    .quantum-sphere {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .quantum-title {
        font-size: 2rem;
    }
    
    .quantum-features {
        margin-bottom: 30px;
    }
    
    .quantum-feature {
        margin-bottom: 20px;
    }
    
    .quantum-sphere {
        width: 200px;
        height: 200px;
    }
    
    .sphere-core {
        width: 60px;
        height: 60px;
    }
    
    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 170px; height: 170px; }
    .ring-3 { width: 200px; height: 200px; }
}

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), 
              radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(120, 200, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.order-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

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

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

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

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

.input-wrapper {
  flex: 1;
  position: relative;
}

.form-input {
  width: 100%;
  height: 60px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 60px 10px 20px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: white;
}

.form-input:focus + .input-label,
.form-input:not(:placeholder-shown) + .input-label {
  transform: translateY(-32px) scale(0.85);
  color: #667eea;
}

.input-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 8px;
  color: #a0aec0;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  pointer-events: none;
}

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

.form-input:focus ~ .input-highlight {
  width: 100%;
}

.input-icon {
  position: absolute;
  right: 20px;
  color: #cbd5e0;
  font-size: 18px;
  transition: all 0.3s ease;
}

.form-input:focus + .input-label + .input-highlight + .input-icon {
  color: #667eea;
}

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
}

.feature-item i {
  color: #48bb78;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

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

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

.btn-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

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

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

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

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #718096;
  background: rgba(72, 187, 120, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(72, 187, 120, 0.2);
}

.security-badge i {
  color: #48bb78;
}

.form-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.float-element {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

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

.element-2 {
  top: 60%;
  left: 70%;
  animation-delay: 1.5s;
}

.element-3 {
  top: 80%;
  left: 30%;
  animation-delay: 3s;
}

.element-4 {
  top: 40%;
  left: 80%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 80px 0;
  }
  
  .order-form-wrapper {
    padding: 40px 20px;
    margin: 0 15px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .form-image {
    display: none;
  }
  
  .feature-list {
    align-items: center;
  }
}
