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

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.7) 100%);
  z-index: 2;
}

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

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

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

.hero-cta-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
  background: linear-gradient(45deg, #218838, #1cc88a);
  color: white;
}

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

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

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* Block 2 */
.features-showcase {
      padding: 100px 0;
      background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
      overflow: hidden;
    }

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

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

    .section-subtitle {
      font-size: 1.3rem;
      color: #64748b;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
      margin-bottom: 80px;
    }

    .feature-card {
      background: white;
      border-radius: 24px;
      padding: 40px 32px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid transparent;
      position: relative;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 24px;
      padding: 2px;
      background: transparent;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: exclude;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      transition: all 0.4s ease;
    }

    .feature-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    }

    .feature-card.primary::before {
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    }

    .feature-card.secondary::before {
      background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    }

    .feature-card.tertiary::before {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .feature-card.quaternary::before {
      background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    }

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

    .feature-icon {
      margin-bottom: 28px;
      display: flex;
      justify-content: center;
    }

    .feature-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .feature-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 16px;
      text-align: center;
    }

    .feature-description {
      font-size: 1.1rem;
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 24px;
      text-align: center;
    }

    .feature-stats {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .stat-item {
      color: #4f46e5;
      background: #eef2ff;
      padding: 8px 16px;
      border-radius: 20px;
    }

    .stat-divider {
      color: #cbd5e1;
      font-weight: normal;
    }

    .showcase-footer {
      display: flex;
      justify-content: center;
    }

    .innovation-badge {
      display: flex;
      align-items: center;
      gap: 20px;
      background: white;
      padding: 24px 32px;
      border-radius: 20px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      border: 2px solid #fbbf24;
    }

    .badge-image {
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .badge-content {
      display: flex;
      flex-direction: column;
    }

    .badge-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 4px;
    }

    .badge-subtitle {
      font-size: 0.95rem;
      color: #64748b;
    }

    @media (max-width: 768px) {
      .features-showcase {
        padding: 60px 0;
      }

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

      .section-subtitle {
        font-size: 1.1rem;
      }

      .features-grid {
        gap: 24px;
        margin-bottom: 60px;
      }

      .feature-card {
        padding: 32px 24px;
      }

      .innovation-badge {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }

      .feature-stats {
        flex-wrap: wrap;
      }
    }

/* Block 3 */
.quantum-wellness-hub {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #e8f4fd 100%);
  position: relative;
  overflow: hidden;
}

.quantum-wellness-hub::before {
  content: '';
  background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

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

.hub-header {
  margin-bottom: 80px;
}

.header-content {
  padding-right: 2rem;
}

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

.hub-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hub-description {
  font-size: 1.2rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.metrics-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.visual-showcase {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.element-card {
  background: white;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  animation: float 6s ease-in-out infinite;
}

.element-card.neuro {
  position: absolute;
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.element-card.bio {
  position: absolute;
  bottom: 50px;
  left: -30px;
  animation-delay: 2s;
}

.element-card.molecular {
  position: absolute;
  top: 50%;
  right: -40px;
  animation-delay: 4s;
}

.element-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.element-card span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
}

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

.quantum-modules {
  margin-bottom: 80px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.module-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.module-header {
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  text-align: center;
}

.module-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.module-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.module-content {
  padding: 2rem;
}

.module-description {
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #4a5568;
}

.feature-item i {
  color: #667eea;
  font-size: 1rem;
  width: 20px;
}

.module-footer {
  padding: 0 2rem 2rem;
}

.module-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.module-btn.primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.module-btn.secondary {
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: white;
}

.module-btn.tertiary {
  background: linear-gradient(45deg, #43e97b, #38f9d7);
  color: white;
}

.module-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.research-validation {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.validation-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.validation-subtitle {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 2.5rem;
}

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

.institution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 15px;
  background: #f8f9ff;
  transition: all 0.3s ease;
}

.institution-item:hover {
  transform: translateY(-5px);
  background: #f0f4ff;
}

.institution-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.institution-item:hover .institution-logo {
  filter: grayscale(0%);
}

.institution-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
}

@media (max-width: 768px) {
  .quantum-wellness-hub {
    padding: 80px 0;
  }

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

  .hub-description {
    font-size: 1.1rem;
  }

  .metrics-row {
    justify-content: center;
    gap: 1.5rem;
  }

  .visual-showcase {
    height: 300px;
    margin-top: 2rem;
  }

  .showcase-main-image {
    height: 250px;
  }

  .element-card {
    min-width: 100px;
    padding: 12px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .institutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .research-validation {
    padding: 2rem;
  }
}

/* Block 4 */
.premium-order-form {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.premium-order-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 206, 84, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.form-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
}

.consultation-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.visual-badges {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.badge-item img {
  width: 24px;
  height: 24px;
}

.form-container {
  padding: 60px 50px;
}

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

.premium-tag {
  display: inline-block;
  background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.form-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
}

.premium-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 18px;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

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

.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.consultation-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  border-left: 4px solid #667eea;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 15px;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-icon {
  font-size: 20px;
  color: #667eea;
  width: 24px;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-title {
  font-weight: 600;
  color: #2c3e50;
  font-size: 15px;
}

.detail-description {
  color: #6c757d;
  font-size: 14px;
}

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

.submit-btn {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

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

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

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6c757d;
  font-size: 14px;
}

.security-note i {
  color: #28a745;
}

.testimonial-strip {
  background: linear-gradient(45deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial-content {
  display: flex;
  gap: 40px;
  animation: testimonialScroll 30s linear infinite;
}

@keyframes testimonialScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.testimonial-item {
  min-width: 400px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-text p {
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #ffd700;
  font-size: 14px;
}

@media (max-width: 991px) {
  .form-visual {
    min-height: 400px;
  }

  .form-container {
    padding: 40px 30px;
  }

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

  .visual-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .testimonial-item {
    min-width: 300px;
  }
}

@media (max-width: 576px) {
  .premium-order-form {
    padding: 40px 0;
  }

  .form-container {
    padding: 30px 20px;
  }

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

  .testimonial-item {
    flex-direction: column;
    text-align: center;
    min-width: 280px;
  }
}
