/* Voxnoos Beams Background Styles */
.section[data-w-id="bbb1681c-62a0-7375-a529-1c7bec5a4a0e"] {
  position: relative;
  overflow: hidden;
  /* 移除固定高度限制，改为自适应 */
  min-height: 80vh;        /* 自适应最小高度 */
  height: 80vh;            /* 自适应高度 */
  padding: 60px 0;         /* 通过内边距控制基础高度 */
  top:-80px;
}

#beams-background-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

#beams-background-container canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  display: block !important;
}

.hero-section {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-section-text-holder,
.hero-section-paragraph-holder,
.logo-grid-holder {
  position: relative;
  z-index: 2;
}

/* 单独为 hero-section-text-holder 添加适配样式，不影响其他元素 */
.hero-section-text-holder {
  width: 100%;
  display: flex;  
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container.no-paddings {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 移动端响应式布局重构 */
@media (max-width: 768px) {
  .section[data-w-id="bbb1681c-62a0-7375-a529-1c7bec5a4a0e"] {
    min-height: 100vh;
    height: 100vh;
    top: -70px;
    padding: 20px 0;
  }
  
  .container.no-paddings {
    padding: 20px 15px;
    height: 100%;
    gap: 20px;
  }
  
  .hero-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .hero-section-text-holder {
    flex: 1;
    padding: 20px 0;
    min-height: auto;
  }
  
  .hero-text-holder {
    margin-bottom: 15px;
  }
  
  .hero-section-sticky {
    top: 20% !important;  /* 移动端调整sticky定位 */
  }
  
  .iphone-holder {
    margin: 15px 0;
    height: 400px !important;  /* 减少高度，原来是600px */
  }
  
  .iphone-image {
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
  }
  
  .hero-section-paragraph-holder {
    padding: 15px;
    text-align: center;
  }
  
  .hero-section-paragraph-holder p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 0 20px 0;
  }
  
  .from-wra-er {
    width: 100%;
    max-width: none;
  }
  
  .from-holder {
    flex-direction: column;
    gap: 12px;
  }
  
  .text-field-form {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    background: rgba(255,255,255,0.1) !important;
  }
  
  .button.from {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    background: #007bff !important;
    color: white !important;
    border: none !important;
    cursor: pointer;
  }
  
  .logo-grid-holder {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .section[data-w-id="bbb1681c-62a0-7375-a529-1c7bec5a4a0e"] {
    padding: 15px 0;
  }
  
  .container.no-paddings {
    padding: 15px 10px;
    gap: 15px;
  }
  
  .hero-section-text-holder {
    padding: 100px 0;
  }
  
  .hero-section-sticky {
    top: 30% !important;  /* 小屏幕保持20%定位 */
  }
  
  .iphone-holder {
    height: 300px !important;  /* 小屏幕进一步减少高度 */
    top:30%;
  }

  .iphone-image1 {
    min-width: 600px;
    left: 100px;
    top: 20px;
    position: relative;
  }
  
  .hero-section-paragraph-holder {
    padding: 10px;
  }
  
  .hero-section-paragraph-holder p {
    font-size: 13px !important;
    margin: 0 0 15px 0;
  }
  
  
  .text-field-form,
  .button.from {
    font-size: 14px !important;
    padding: 12px 16px !important;
  }
}

@media (max-width: 360px) {
  .iphone-holder {
    height: 200px !important;  /* 最小屏幕最小高度 */
  }
  
  .iphone-image {
    max-width: 60%;
    max-height: 120px;
  }
  
  .hero-section-paragraph-holder p {
    font-size: 12px !important;
  }
  
  .text-field-form,
  .button.from {
    font-size: 13px !important;
    padding: 10px 14px !important;
  }
}