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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(102, 126, 234, 0.9) 50%, rgba(25, 25, 25, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}

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

.hero-description {
  font-size: 1.25rem;
  color: #f8f9fa;
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: #ffffff;
  background: linear-gradient(45deg, #764ba2, #667eea);
}

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

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

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

/* Block 2 */
.quantum-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0f0f23 100%);
    color: #ffffff;
    overflow: hidden;
}

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

.quantum-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00d4ff, #b300ff);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.quantum-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #00d4ff, #b300ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

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

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: #00d4ff;
    margin-top: 5px;
    flex-shrink: 0;
}

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

.feature-text p {
    font-size: 1rem;
    color: #a7a7a7;
    margin: 0;
    line-height: 1.6;
}

.quantum-cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #b300ff);
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.quantum-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    color: #ffffff;
}

.quantum-visual {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 20px;
    height: 600px;
}

.quantum-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.quantum-stats {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #c7c7c7;
    line-height: 1.3;
}

.quantum-tech-grid {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

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

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

@media (max-width: 992px) {
    .quantum-solutions {
        padding: 60px 0;
    }
    
    .quantum-title {
        font-size: 2.5rem;
    }
    
    .quantum-visual {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 200px 100px;
        height: auto;
    }
    
    .quantum-main-img {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .quantum-stats {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        flex-direction: row;
    }
    
    .quantum-tech-grid {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .quantum-title {
        font-size: 2rem;
    }
    
    .quantum-description {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .quantum-stats {
        flex-direction: column;
        gap: 20px;
    }
}

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

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

    .innovation-tag {
      display: inline-block;
      background: linear-gradient(45deg, #00d4ff, #7b68ee);
      color: white;
      padding: 8px 24px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

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

    .section-subtitle {
      font-size: 1.2rem;
      color: #b8c5d6;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .neural-showcase {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    }

    .neural-main-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .neural-overlay-stats {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .neural-stat {
      display: flex;
      align-items: center;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid rgba(0, 212, 255, 0.3);
    }

    .stat-icon {
      margin-right: 12px;
      color: #00d4ff;
      font-size: 18px;
    }

    .stat-value {
      display: block;
      font-weight: 700;
      font-size: 16px;
      color: white;
    }

    .stat-desc {
      font-size: 12px;
      color: #b8c5d6;
    }

    .neural-content {
      padding-left: 40px;
    }

    .neural-heading {
      font-size: 2.4rem;
      font-weight: 600;
      color: white;
      margin-bottom: 20px;
    }

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

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

    .capability-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .capability-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(45deg, #00d4ff, #7b68ee);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

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

    .capability-info h5 {
      font-size: 1.2rem;
      font-weight: 600;
      color: white;
      margin-bottom: 8px;
    }

    .capability-info p {
      color: #b8c5d6;
      margin: 0;
      line-height: 1.5;
    }

    .neural-tech-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      height: 100%;
    }

    .neural-tech-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(0, 212, 255, 0.15);
      border-color: rgba(0, 212, 255, 0.3);
    }

    .tech-card-image {
      height: 200px;
      overflow: hidden;
    }

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

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

    .tech-card-content {
      padding: 30px;
    }

    .tech-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: white;
      margin-bottom: 15px;
    }

    .tech-description {
      color: #b8c5d6;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .tech-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .spec-item {
      background: rgba(0, 212, 255, 0.1);
      color: #00d4ff;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
    }

    .neural-cta-section {
      background: rgba(255, 255, 255, 0.05);
      padding: 60px 40px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-title {
      font-size: 2.2rem;
      font-weight: 600;
      color: white;
      margin-bottom: 15px;
    }

    .cta-description {
      font-size: 1.1rem;
      color: #b8c5d6;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .neural-cta-button {
      display: inline-block;
      background: linear-gradient(45deg, #00d4ff, #7b68ee);
      color: white;
      padding: 16px 40px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }

    .neural-cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
      color: white;
    }

    @media (max-width: 991px) {
      .neural-content {
        padding-left: 0;
        margin-top: 50px;
      }

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

      .neural-heading {
        font-size: 2rem;
      }

      .neural-overlay-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
      }
    }

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

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

      .neural-cta-section {
        padding: 40px 20px;
      }

      .cta-title {
        font-size: 1.8rem;
      }
    }

/* Block 4 */
.order-form-section {
    padding: 80px 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.order-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

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

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

.premium-order-form {
    margin-bottom: 40px;
}

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

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-group:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.input-wrapper {
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.form-input {
    width: 100%;
    padding: 24px 0 8px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #2d3748;
    background: transparent;
}

.form-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #a0aec0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    top: 12px;
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
}

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

.input-group:focus-within .input-highlight {
    transform: scaleX(1);
}

.input-icon {
    padding: 0 20px;
    color: #a0aec0;
    transition: color 0.3s ease;
}

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

.service-selection {
    margin-bottom: 40px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

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

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

.service-option {
    position: relative;
}

.service-option input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.service-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4a5568;
}

.service-label:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.service-option input:checked + .service-label {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
}

.service-icon {
    font-size: 24px;
    margin-right: 12px;
}

.priority-indicator {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(72, 187, 120, 0.3);
}

.priority-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
    flex-shrink: 0;
}

.priority-text h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.priority-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

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

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

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

.btn-icon {
    margin-left: 12px;
    transition: transform 0.3s ease;
}

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

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

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

.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 particle-float {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .order-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .priority-indicator {
        flex-direction: column;
        text-align: center;
    }
    
    .priority-icon {
        margin: 0 0 12px 0;
    }
    
    .trust-indicators {
        gap: 20px;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}
