:root {
  --color-FFFFFF: #ffffff;
  --color-000000: #000000;
  --color-009DFF: #009dff;
  --color-999999: #999999;
  --color-121212: #121212;
  --color-EBEBEB: #ebebeb;
  --bg-gray: #f8f9fa;
  --border-color: #e9ecef;
  --text-main: #1a2b3c;
  --text-muted: #999;
  --accent-blue: #007bff;

  --font-14: clamp(12px, 0.78vw, 14px);
  --font-16: clamp(13px, 0.89vw, 16px);
  --font-20: clamp(14px, 1.11vw, 20px);
  --font-22: clamp(15px, 1.22vw, 22px);
  --font-24: clamp(16px, 1.33vw, 24px);
  --font-32: clamp(17px, 1.78vw, 32px);
  --font-58: clamp(28px, 3.22vw, 58px);
}

.ligpower-uav-main {
  background-color: #ffffff;
}


.ligpower-uav-main h1 {
  font-size: var(--font-58);
  line-height: 1.2;
}

.ligpower-uav-main a {
  color: var(--color-FFFFFF);
}

.ligpower-uav-main .backgroundPicture {
  width: 100%;
  background-color: #000100;
  overflow: hidden;
}

.ligpower-uav-main .backgroundPicture img {
  width: 100%;
}

.ligpower-uav-main .uav-section {
  background-size: cover;
  line-height: normal;
  position: relative;
  display: flex;
  justify-content: center;
}

.ligpower-uav-main .container {
  position: absolute;
  z-index: 4;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 1440px;
}

.ligpower-uav-main .ligpower-uav-alink,
.ligpower-uav-main .ligpower-uav-one-btn,
.ligpower-uav-main .ligpower-uav-two-btn {
  background-color: var(--color-009DFF);
  color: var(--color-FFFFFF);
  font-size: var(--font-16);
  padding: clamp(4px, 0.5vw, 8px) clamp(15px, 2.5vw, 45px);
  border-radius: clamp(2.67px, 0.44vw, 8px);
  margin-top: clamp(13.33px, 2.22vw, 40px);
  display: flex;
  gap: clamp(4px, 0.67vw, 12px);
  width: fit-content;
  cursor: pointer;
  align-items: center;
}

.ligpower-uav-main .ligpower-uav-one-btn,
.ligpower-uav-main .ligpower-uav-two-btn {
  font-size: var(--font-22);
}

.ligpower-uav-main .ligpower-uav-alink {
  float: right;
}

.ligpower-uav-main .ligpower-uav-one-btnwhite {
  color: var(--color-FFFFFF);
  border: 1px solid var(--color-FFFFFF);
  background-color: unset;
}

.hero-section h1 {
  color: var(--color-FFFFFF);
  font-weight: bold;
}

.hero-section .ligpower-uav-content {
  font-size: var(--font-20);
  color: var(--color-FFFFFF);
  margin-top: clamp(10px, 1.67vw, 30px);
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(40px, 6vw, 120px);
}

.tmotor-logo{
  margin-bottom: clamp(20px, 2vw, 40px);
}

.hero-section .hero-tips-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(10px, 1.67vw, 30px);
  width: fit-content;
  row-gap: clamp(6.67px, 1.11vw, 20px);
  column-gap: clamp(10px, 1.67vw, 30px);
}

.hero-section .hero-tips-box .hero-tips-item {
  display: flex;
  gap: clamp(4px, 0.67vw, 12px);
  color: var(--color-FFFFFF);
  font-size: var(--font-16);
}

.filter-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  /* 为自定义箭头做准备 */
}

.filter-label {
  color: #999;
  font-size: var(--font-14);
  margin-bottom: clamp(2.67px, 0.83vw, 8px);
  font-weight: 500;
}

/* 核心美化 select 框 */
.filter-select {
  padding: clamp(4px, 1.17vw, 12px) clamp(5px, 1.5vw, 15px);
  border-radius: clamp(2.67px, 0.67vw, 8px);
  border: clamp(0.33px, 0.06vw, 1px) solid #eee;
  background-color: #f9f9f9;
  color: var(--color-121212);
  font-size: var(--font-14);
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  /* 隐藏原生箭头 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 自定义箭头图标 - 使用 svg 背景图 */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(5px, 1.5vw, 15px) center;
}

/* 悬停效果 */
.filter-select:hover {
  background-color: #f1f1f1;
  border-color: #ddd;
}

/* 聚焦效果 */
.filter-select:focus {
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 0 clamp(1px, 0.22vw, 3px) rgba(0, 123, 255, 0.1);
}

/* 部分浏览器支持对 option 的简单样式修改 */
.filter-select option {
  background-color: #fff;
  color: var(--color-121212);
  padding: clamp(3.33px, 1.11vw, 10px);
}

/* 默认隐藏所有 select 组 */
.multi-rotor-select,
.vtol-select,
.fixed-select {
  display: none;
  flex-wrap: wrap;
  gap: clamp(3px, 0.5vw, 9px);
  width: 100%;
}

.vtol-select-bottom {
  display: flex;
  flex-direction: row;
  gap: clamp(3px, 0.5vw, 9px);
  width: 100%;
  margin-top: clamp(13.33px, 2.17vw, 40px);
}

.vtol-select-top {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.83vw, 54px);
  width: 100%;
  color: var(--color-009DFF);
}

.vtol-select-top .lift-btn,
.vtol-select-top .pusher-btn,
.vtol-select-top .complete-btn {
  padding: clamp(3px, 0.5vw, 9px) clamp(10px, 1.5vw, 30px);
  font-size: var(--font-16);
  border: clamp(0.33px, 0.06vw, 1px) solid #00000000;
  border-radius: clamp(2.67px, 0.67vw, 8px);
  cursor: pointer;
}

.vtol-select-top .lift-btn,
.vtol-select-top .pusher-btn {
  border: clamp(0.33px, 0.06vw, 1px) solid var(--color-009DFF);
}

.vtol-select-top .complete-btn {
  background-color: var(--color-000000);
  color: var(--color-FFFFFF);
}

.lift-btn.active {
  color: var(--color-FFFFFF);
  background-color: var(--color-009DFF);
}


.vtol-select-top .active {
  color: #fff;
  background-color: var(--color-009DFF);
  font-weight: bold;
}

.vtol-select-bottom .lift-select,
.vtol-select-bottom .pusher-select {
  display: flex;
  flex-direction: row;
  gap: clamp(3px, 0.5vw, 9px);
  width: 100%;
}

/* 容器基础样式 */
.find-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  background-color: #fff;
  text-align: center;
  color: var(--color-121212);
}

.find-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.find-section .container form {
  width: 100%;
}


/* 标题与副标题 */
.find-section .prop-title {
  font-size: var(--font-58);
  font-weight: bold;
  margin-bottom: clamp(5px, 1.67vw, 15px);
  color: #000;
}

.find-section .prop-subtitle {
  font-size: var(--font-22);
  color: var(--color-999999);
  margin-bottom: clamp(13.33px, 4.44vw, 40px);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.find-section .motor_match {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3px, 0.5vw, 9px);
}

.find-section .motor_match img {
  width: 100%;
}

.find-section input[type="radio"] {
  display: none;
}

.find-section .checkbox-bottom {
  color: var(--color-121212);
  font-weight: bold;
  padding: clamp(8px, 0.8vw, 16px) 0;
  font-size: var(--font-22);
}

.find-section .checkbox-bottom span {
  margin-left: 5px;
}

.find-section .multi.activity,
.find-section .vtol.activity,
.find-section .fixed.activity {
  border: 2px solid var(--color-009DFF);
}

.find-section .checkbox-cat.activity .checkbox-bottom {
  background-color: var(--color-009DFF);
  color: var(--color-FFFFFF);
  padding: clamp(8px, 0.8vw, 16px) 0;
}

/* 当 li 被选中时的样式 */
.motor_vtol li.activity {
  background-color: var(--color-009DFF);
  color: var(--color-FFFFFF) !important;
}



.find-section .checkbox-cat {
  cursor: pointer;
}

.find-section .motor_vtol {
  display: flex;
  justify-content: space-evenly;
  margin-top: clamp(18px, 1.67vw, 30px);
}

.find-section .motor_vtol .lift,
.find-section .motor_vtol .pusher {
  border: 1px solid var(--color-009DFF);
  border-radius: 4px;
  color: var(--color-009DFF);
  font-size: var(--font-16);
  padding: clamp(8px, 0.5vw, 5px) clamp(4px, 1.5vw, 30px);
  cursor: pointer;
}

.find-section .motor_vtol .complete {
  border-radius: 4px;
  background-color: var(--color-121212);
  color: var(--color-FFFFFF);
  font-size: var(--font-16);
  padding: clamp(4px, 0.5vw, 5px) clamp(10px, 1.5vw, 30px);
  cursor: pointer;
  display: flex;
  align-items: center;
}


/* 隐藏所有 select 的默认外观 */
.select_wap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 10px;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: var(--font-14);
  color: #050B20;
  cursor: pointer;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 10px auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23050B20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  /* 距离右侧 15px，居中 */
  background-size: 12px auto;
}

/* 悬停与聚焦状态 */
.select_wap select:hover {
  background-color: #f0f2f5;
  border-color: #e0e4e8;
}

.select_wap select:focus {
  outline: none;
}

.select_wap .tab_multi {
  display: flex;
  flex-direction: row;
  gap: clamp(3px, 0.5vw, 9px);
  margin-top: 15px;
}

.select_wap .select_group {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.select_wap .select_group label {
  font-size: var(--font-14);
  color: #818181;
  margin-bottom: 5px;
  margin-left: 16px;
}

/* 针对不同 Tab 组的间距优化 */

.select_wap .tab_lift,
.select_wap .tab_pusher,
.select_wap .tab_fixed {
  display: flex;
  flex-direction: row;
  gap: clamp(3px, 0.5vw, 9px);
  margin-top: 15px;
}

.btn-container,
#view-more-container {
  padding: 10px;
}

.submit-btn,
#view-more-btn {
  background-color: var(--color-009DFF);
  color: var(--color-FFFFFF);
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: var(--font-16);
}

.find-product-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(3px, 0.5vw, 9px);
  width: 100%;
  margin-top: clamp(10px, 1.67vw, 30px);
  padding-bottom: clamp(6.67px, 1.39vw, 20px);
}

.find-product-item {
  display: flex;
  /* 让子项也成为 flex 容器 */
  flex-direction: column;
  /* 内容纵向排列 */
  height: auto;
  /* 移除固定的 height: auto 覆盖 */
}

.find-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: clamp(4px, 1.33vw, 12px);
  gap: clamp(6.67px, 1.39vw, 20px);
  padding: clamp(6.67px, 1.39vw, 20px);
}

.find-product img:nth-child(1) {
  width: 100%;
}




.find-product .find-param {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.find-product-title {
  font-size: var(--font-20);
  text-align: left;
  color: var(--color-121212);
}

.find-product-link {
  cursor: pointer;
}

.find-param-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: var(--color-999999);
  font-size: var(--font-16);
}

.find-param-list p {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.5vw, 9px);
}

.find-param-list span {
  white-space: nowrap;
}

.find-param-list img {
  max-height: 16px;
  min-width: 16px;
}

.find-btn {
  display: flex;
  width: 100%;
  flex-direction: row;
  text-align: center;
  justify-content: space-around;
}

.find-btn .find-detail,
.find-btn .find-contact {
  padding: clamp(4.33px, 0.78vw, 13px) clamp(4.33px, 0.78vw, 13px);
  font-size: var(--font-14);
  border-radius: clamp(16.67px, 5.22vw, 50px);
  cursor: pointer;
}

.find-btn .find-detail {
  border: clamp(0.33px, 0.06vw, 1px) solid var(--color-121212);
  color: var(--color-121212);
  padding: clamp(4.33px, 0.78vw, 13px) clamp(9.33px, 1.94vw, 28px);
}

#view-more-btn {
  display: none;
}

.find-btn .find-contact {
  border: clamp(0.33px, 0.06vw, 1px) solid var(--color-009DFF);
  background-color: var(--color-009DFF);
  color: var(--color-FFFFFF);
  padding: clamp(4.33px, 0.78vw, 13px) clamp(13.33px, 2.78vw, 40px);
}


/* 容器基础样式 */
.complete-section {
  background-color: #fff;
  text-align: center;
  color: var(--color-121212);
  background-color: #f5f5f5;
  padding-top: clamp(40px, 6.58vw, 100px);
}

.complete-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 标题与副标题 */
.complete-section .prop-title {
  font-size: var(--font-58);
  font-weight: bold;
  margin-bottom: clamp(5px, 1.67vw, 15px);
  color: #000;
}

.complete-section .prop-subtitle {
  font-size: var(--font-22);
  color: var(--color-009DFF);
  margin-bottom: clamp(13.33px, 4.44vw, 40px);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* 选项卡样式 */
.complete-section .prop-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 3.33vw, 30px);
  position: relative;
}

.complete-section .tab-item {
  padding: clamp(4px, 1.22vw, 12px) clamp(13.33px, 4.44vw, 40px);
  font-size: var(--font-18);
  font-weight: bold;
}

.complete-section .tab-item.individual {
  background-color: #ffb86c;
  color: #000;
  border-radius: clamp(8.33px, 2.78vw, 25px) 0 0 clamp(8.33px, 2.78vw, 25px);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  padding-right: clamp(16.67px, 5.56vw, 50px);
}

.complete-section .tab-item.complete {
  background-color: var(--color-009DFF);
  color: #fff;
  border-radius: 0 clamp(8.33px, 2.78vw, 25px) clamp(8.33px, 2.78vw, 25px) 0;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  padding-left: clamp(16.67px, 5.56vw, 50px);
  position: relative;
}

/* 卡片布局 */

.complete-section .prop-cards {
  display: flex;
  gap: clamp(6.67px, 1.39vw, 20px);
  margin-bottom: clamp(13.33px, 4.44vw, 40px);
}

.complete-section .prop-card {
  flex: 1;
  border: clamp(0.33px, 0.06vw, 1px) solid #f0f0f0;
  border-radius: clamp(1.33px, 0.33vw, 4px);
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.complete-section .card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete-section .card-image img {
  object-fit: contain;
  width: 100%;
}

.complete-section .card-content {
  padding: clamp(8.33px, 1.67vw, 25px)
}

.complete-section .card-best-for {
  font-size: var(--font-16);
  margin-bottom: clamp(8.33px, 1.67vw, 25px);
  color: var(--color-121212);
}

/* 列表图标样式 */
.complete-section .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.complete-section .card-list li {
  font-size: var(--font-16);
  margin-bottom: clamp(4px, 0.83vw, 12px);
  display: flex;
  align-items: center;
}

.complete-section .card-list li::before {
  content: '';
  min-width: clamp(12px, 1.56vw, 18px);
  min-height: clamp(12px, 1.56vw, 18px);
  margin-right: clamp(3.33px, 1.11vw, 10px);
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}



.complete-section .card-list li.check::before {
  /* 蓝色打钩图标 */
  background-image: url("../images/check.svg");
}

.complete-section .card-list li.cross::before {
  /* 橙色叉号图标 */
  background-image: url("../images/out.svg");
}

/* 按钮 */
.complete-section .prop-button {
  display: inline-block;
  background-color: var(--color-009DFF);
  color: var(--color-FFFFFF);
  padding: clamp(4px, 0.78vw, 12px);
  border-radius: clamp(1.67px, 0.56vw, 5px);
  text-decoration: none;
}

.complete-section .prop-button:hover {
  background-color: #0080cc;
}


.major-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  background-color: #f5f5f5;
  text-align: center;
}

.major-section .container {
  position: relative;
}

.major-section .major-title {
  font-size: var(--font-58);
  font-weight: bold;
  margin-bottom: clamp(30px, 2.5vw, 40px);
  color: var(--color-121212);
}

/* Tabs 样式 */
.major-section .major-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6.67vw, 120px);
  margin-bottom: clamp(13.33px, 2.5vw, 40px);
}

.major-section .tab-item {
  padding-bottom: clamp(3.33px, 1.11vw, 10px);
  cursor: pointer;
  font-size: var(--font-18);
  color: var(--color-121212);
  position: relative;
  transition: color 0.3s;
}

.major-section .tab-item.active {
  color: var(--color-009DFF);
  font-weight: bold;
}

.major-section .tab-item.active::after {
  content: '';
  position: absolute;
  bottom: clamp(-0.67px, -0.22vw, -2px);
  left: 0;
  bottom: -2px;
  width: 100%;
  height: clamp(2px, 0.22vw, 3px);
  background-color: var(--color-009DFF);
}

.major-section .major-content-wrapper {
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  position: relative;
  transition: height 0.4s ease;
  /* 如果内容高度不一，增加高度过渡 */
}

.major-section .major-content {
  grid-area: 1 / 1 / 2 / 2;
  /* 所有内容重叠在第一行第一列 */
  padding: clamp(16.67px, 5.56vw, 50px);

  /* 初始隐藏状态：透明度0 + 向下位移 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(clamp(5px, 1.67vw, 15px));
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;

  pointer-events: none;
  /* 隐藏时不响应鼠标 */
}

.major-section .major-content.active {
  /* 显示状态 */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}

/* 优化文字出现的节奏感 */
.major-section .major-content.active .content-right {
  animation: fadeInRight 0.6s ease forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(clamp(6.67px, 2.22vw, 20px));
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 之前提供的其他样式保持不变，确保 .content-flex 是布局核心 */
.major-section .content-flex {
  display: flex;
  align-items: flex-start;
  gap: clamp(13.33px, 4.44vw, 40px);
}

.major-section .content-left {
  flex: 0.8;
}

.major-section .content-left img {
  width: 100%;
  height: auto;
  display: block;
}

.major-section .content-right {
  flex: 1;
  position: relative;
}

.major-section .series-name {
  font-size: var(--font-32);
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-121212);
  text-align: left;
  text-transform: uppercase;
}

.major-section .series-tagline {
  font-size: var(--font-20);
  color: #666;
  margin-bottom: clamp(20px, 4vw, 30px);
  text-align: left;
}

.major-section .info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: clamp(20px, 4vw, 30px);
  width: 100%;
}

/* 单行列表项 */
.major-section .list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-20);
  color: #333;
}

.major-section .list-item::before {
  content: "";
  min-width: 15px;
  min-height: 15px;
  background-image: url("../images/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.major-section .app-tags {
  font-size: var(--font-20);
  color: #888;
  text-align: left;
  width: 100%;
}

.major-section .ligpower-uav-alink a:hover {
  opacity: 0.9;
}

.major-section .ligpower-uav-alink img {
  margin-left: 10px;
  filter: brightness(0) invert(1);
}


/* Choose Section 样式复刻 */
.choose-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  padding-bottom: clamp(40px, 6.58vw, 100px);
  text-align: center;
  background-color: #f5f5f5;
}

.choose-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.choose-section .choose-title {
  font-size: var(--font-58);
  font-weight: bold;
  color: var(--color-121212);
  margin-bottom: clamp(10px, 3.33vw, 30px);
}

.choose-section .choose-features {
  display: flex;
  justify-content: center;
  gap: clamp(13.33px, 4.44vw, 40px);
}

.choose-section .feature-item {
  display: flex;
  align-items: center;
  font-size: var(--font-22);
  color: var(--color-121212);
}

.choose-section .check-icon {
  width: clamp(8px, 2.11vw, 24px);
  height: clamp(8px, 2.11vw, 24px);
  background-color: #e6f7ff;
  border-radius: 50%;
  margin-right: clamp(3.33px, 1.11vw, 10px);
  position: relative;
}

/* 绘制小钩子 */
.choose-section .check-icon::after {
  content: '';
  position: absolute;
  left: clamp(2.67px, 0.67vw, 8px);
  top: clamp(1.67px, 0.56vw, 5px);
  width: clamp(2px, 0.56vw, 6px);
  height: clamp(3.33px, 1.11vw, 10px);
  border: solid var(--color-009DFF);
  border-width: 0 clamp(0.67px, 0.22vw, 2px) clamp(0.67px, 0.22vw, 2px) 0;
  transform: rotate(45deg);
}

.choose-section .guarantee-btn {
  display: inline-block;
  background-color: var(--color-009DFF);
  color: #fff;
  padding: clamp(5px, 1.67vw, 15px) clamp(13.33px, 4.44vw, 40px);
  border-radius: clamp(2px, 0.67vw, 6px);
  text-decoration: none;
  font-size: var(--font-18);
  font-weight: 500;
  transition: background 0.3s;
}



/* 容器及基础排版 */
.real-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  padding-bottom: clamp(40px, 6.58vw, 100px);
}

.real-section .container {
  position: relative;
}

.real-section .real-title {
  font-size: var(--font-58);
  font-weight: bold;
  margin-bottom: clamp(5px, 1.67vw, 15px);
  text-align: center;
  color: var(--color-121212);
}

.real-section .real-subtitle {
  font-size: var(--font-22);
  color: var(--color-121212);
  text-align: center;
  margin-top: clamp(10px, 1.67vw, 30px);
}

/* 网格布局 */
.real-section .real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6.67px, 1.39vw, 20px);
  margin-top: clamp(33.33px, 5.83vw, 100px);

}

/* 卡片样式 */
.real-section .real-card {
  background: #050B20;
  /* 深色背景 */
  border-radius: clamp(3.33px, 1.22vw, 10px);
  overflow: hidden;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.real-section .real-img-placeholder {
  width: 100%;
}

.real-section .real-img-placeholder img {
  width: 100%;
  object-fit: contain;
}

.real-section .real-card-body {
  padding: clamp(4px, 1.11vw, 12px) clamp(8.33px, 1.39vw, 25px) clamp(8.33px, 1.39vw, 25px) clamp(8.33px, 1.39vw, 25px);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.real-section .real-card-name {
  color: #fff;
  font-size: var(--font-20);
  font-weight: bold;
  padding-bottom: clamp(6px, 1.11vw, 18px);
  border-bottom: clamp(0.33px, 0.06vw, 1px) solid rgba(255, 255, 255, 0.1);
}

.real-section .real-specs {
  list-style: none;
  padding: 0;
  margin: clamp(6px, 1.11vw, 18px) 0;
  border-bottom: clamp(0.33px, 0.06vw, 1px) solid rgba(255, 255, 255, 0.1);
  flex-grow: 1;
}

.real-section .real-specs img {
  max-width: clamp(6px, 1.56vw, 18px);
  margin-right: clamp(6px, 1.11vw, 18px);
}

.real-section .real-specs li {
  color: var(--color-FFFFFF);
  font-size: var(--font-14);
  margin-bottom: clamp(6px, 1.11vw, 18px);
  display: flex;
  align-items: center;
}


/* 内部按钮 */
.real-section .real-card-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
}


.real-section .real-link-consult {
  color: #fff;
  font-size: var(--font-16);
  text-decoration: none;
  padding: clamp(2.67px, 0.67vw, 8px) clamp(5px, 1.5vw, 15px);
  border-radius: clamp(1.67px, 0.56vw, 5px);
  background-color: #1e2437;
  width: 100%;
  text-align: center;
}


.real-section .real-link-consult:hover {
  background: var(--color-009DFF);
}

/* 底部区域 */
.real-section .real-bottom-callout {
  padding-top: clamp(40px, 6.58vw, 100px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.real-section .real-bottom-title {
  font-size: var(--font-58);
  font-weight: bold;
  color: var(--color-121212);
}

.real-section .real-bottom-text {
  font-size: var(--font-22);
  color: var(--color-121212);
  margin-top: clamp(10px, 1.67vw, 30px);
  line-height: 1.5;
}

.real-section .real-btn-blue {
  display: inline-block;
  background-color: var(--color-009DFF);
  color: #fff;
  padding: clamp(4.67px, 0.78vw, 14px) clamp(10px, 1.67vw, 30px);
  border-radius: clamp(2px, 0.67vw, 6px);
  font-weight: 700;
  text-decoration: none;
  font-size: var(--font-16);
  margin-top: clamp(10px, 1.67vw, 30px);
}

/* 容器及基础文字 */
.customers-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  padding-bottom: clamp(40px, 6.58vw, 100px);
  text-align: center;
  background-color: #f5f5f5;
}

.customers-section .container {
  position: relative;
  max-width: 1200px;
}

.customers-section .customers-section-title {
  font-size: var(--font-58);
  font-weight: bold;
  margin-bottom: clamp(5px, 1.39vw, 15px);
  color: var(--color-121212);
}

.customers-section .customers-section-subtitle {
  font-size: var(--font-22);
  color: var(--color-121212);
  margin-bottom: clamp(10px, 2.78vw, 30px);
}

/* 视频部分样式 */
.customers-section .customers-section-video-wrapper {
  width: 100%;
  margin-top: clamp(35px, 5.83vw, 70px);
  margin-bottom: clamp(35px, 5.83vw, 70px);
  display: flex;
  justify-content: center;
}

.customers-section .customers-section-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  background: #222 url('your-building-image.jpg') center/cover;
  border-radius: clamp(1.33px, 0.22vw, 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.customers-section .customers-section-play-btn {
  width: clamp(23.33px, 5.56vw, 70px);
  height: clamp(23.33px, 5.56vw, 70px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.customers-section .customers-section-play-btn:hover {
  transform: scale(1.1);
}

.customers-section .customers-section-play-btn svg {
  fill: #3478f6;
  /* 播放箭头颜色 */
  margin-left: clamp(1.33px, 0.22vw, 4px);
}

/* Tab 切换头部 */
.customers-section .customers-section-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.customers-section .customers-section-tab {
  padding: clamp(2px, 0.56vw, 6px) clamp(8px, 1.2vw, 12px);
  font-size: var(--font-24);
  color: #999;
  cursor: pointer;
  border-radius: clamp(1.33px, 0.22vw, 4px);
  transition: all 0.2s;
}

.customers-section .customers-section-tab.active {
  background: var(--color-121212);
  color: #fff;
  font-weight: bold;
}

/* Tab 内容区域 */
.customers-section .customers-section-content-container {
  background-color: var(--color-FFFFFF);
  padding: clamp(23.33px, 5.56vw, 70px) clamp(11.67px, 2.78vw, 35px);
  margin-top: clamp(11.67px, 2.78vw, 35px);

}

.customers-section .customers-section-content-card {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(10px, 2.78vw, 30px);
}

.customers-section .customers-section-content-card.active {
  display: flex;

}

.customers-section .customers-section-feature {
  flex: 1;
}

.customers-section .customers-section-icon {
  width: clamp(20px, 5.56vw, 60px);
  height: clamp(20px, 5.56vw, 60px);
  background: #e8e8e8;
  border-radius: 50%;
  margin: 0 auto clamp(6.67px, 1.39vw, 20px);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customers-section .customers-section-icon img {
  width: 50%;
  max-width: 40px;
  min-width: 20px;
}

.customers-section .customers-section-feature p {
  font-size: var(--font-20);
  color: #666;
  line-height: 1.5;
}



/* Choose Section 样式复刻 */
.reliable-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  padding-bottom: clamp(40px, 6.58vw, 100px);
  text-align: center;
  background-color: var(--color-FFFFFF);
}

.reliable-section .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reliable-section .reliable-title {
  font-size: var(--font-58);
  font-weight: bold;
  color: var(--color-121212);
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(40px, 6.67vw, 120px);
  background-color: var(--color-FFFFFF);
}

.faq-section .faq-main {
  max-width: clamp(400px, 66.67vw, 1200px);
  width: 100%;
  pointer-events: auto;
  box-sizing: border-box;
}

.faq-section h2 {
  color: var(--color-000000);
  font-size: var(--font-58);
}

.faq-section .faq-content {
  color: #666;
  margin-top: clamp(3.33px, 0.56vw, 10px);
  font-size: var(--font-22);
}

.faq_container {
  margin-top: clamp(40px, 6.58vw, 100px);
  border-radius: clamp(2px, 0.56vw, 6px);
}

.faq_item {
  border-bottom: clamp(0.33px, 0.06vw, 1px) solid #e0e0e0;
  padding: var(--font-32) 0 var(--font-32) 0;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  align-items: flex-start;
  color: #18181a;
  text-align: left;
  font-size: var(--font-24);
  background-color: rgba(0, 0, 0, 0);
  padding-right: clamp(2.67px, 0.56vw, 8px);
}

.faq_icon {
  width: clamp(16px, 1.33vw, 16px);
  height: clamp(16px, 1.33vw, 16px);
  min-width: clamp(16px, 1.33vw, 16px);
  min-height: clamp(16px, 1.33vw, 16px);
  flex-shrink: 0;
  stroke: var(--color-121212);
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
  display: block;
}

.faq_answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  margin-top: 0;
}

.faq_answer_inner {
  font-size: var(--font-16);
  color: #777;
  line-height: 1.6;
  padding-top: clamp(3.33px, 0.56vw, 10px);
  width: 100%;
  text-align: left;
}

.faq_answer p,
.faq_answer li {
  line-height: 2.5;
}

.faq_item.active .faq_icon {
  transform: rotate(180deg);
}

.faq_answer_inner .faq_answer_title {
  font-size: var(--font-20);
  color: #666;
}

.faq_answer_ul_num li {
  list-style: inside;
  list-style-type: decimal;
}

.faq_answer_ul_circle li {
  list-style: inside;
  list-style-type: disc;
}

.faq_answer_ul_nullcircle li {
  list-style: inside;
  list-style-type: circle;
  text-indent: 6px;
}

.faq_answer_ul_indent_circle li {
  list-style: inside;
  list-style-type: disc;
  text-indent: 6px;
}



/* 容器基础设置 */
.tailored-section {
  padding-top: clamp(40px, 6.58vw, 100px);
  padding-bottom: clamp(40px, 6.58vw, 100px);
  background-image: url("../images/tailored-section-bg.jpg");
}

.tailored-section .container {
  position: relative;
}

.tailored-section .container {
  margin: 0 auto;
  padding: 0 clamp(5px, 0.56vw, 15px);
}

.tailored-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(13.33px, 3.47vw, 40px);
}

/* 左侧样式 */
.tailored-section .left-content {
  flex: 1;
}

.tailored-section .left-content .left-content-title {
  font-size: var(--font-32);
  font-weight: 800;
  margin-bottom: clamp(6.67px, 1.39vw, 20px);
  line-height: 1.2;
  color: var(--color-FFFFFF);
}



.tailored-section .left-content p {
  font-size: var(--font-16);
  line-height: 1.5;
  color: var(--color-FFFFFF);
  margin-bottom: clamp(10px, 2.78vw, 30px);
}

.tailored-section .button-group {
  display: flex;
  gap: clamp(5px, 1.39vw, 15px);
}

.tailored-section .btn-secondary {
  border: clamp(0.33px, 0.06vw, 1px) solid #ddd;
  color: #444;
  padding: clamp(4px, 1.11vw, 12px) clamp(8.33px, 2.08vw, 25px);
  border-radius: clamp(2px, 0.56vw, 6px);
  text-decoration: none;
  font-size: var(--font-14);
  transition: background 0.3s;
}

/* 右侧网格样式 */
.tailored-section .right-stats {
  flex: 1;
}

.tailored-section .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

/* 模拟图片中的分割线 */
.tailored-section .stats-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: clamp(0.33px, 0.06vw, 1px);
  background: #eee;
}

.tailored-section .stats-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: clamp(0.33px, 0.06vw, 1px);
  background: #eee;
}

.tailored-section .stat-item {
  padding: clamp(10px, 2.78vw, 30px);
  display: flex;
  align-items: center;
  gap: clamp(5px, 1.39vw, 15px);
}



.tailored-section .stat-number {
  display: block;
  font-size: var(--font-24);
  font-weight: bold;
  color: var(--color-FFFFFF)
}

.tailored-section .stat-label {
  font-size: var(--font-14);
  font-weight: bold;
  margin: 0;
  color: var(--color-FFFFFF)
}


#hubspot-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hubspot-popup-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}

.hubspot-popup-content {
  position: relative;
  min-width: 350px;
  background: #fff;
  max-width: clamp(200px, 33.33vw, 600px);
  width: 90vw;
  min-height: clamp(200px, 55.56vw, 600px);
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  padding: var(--font-24) clamp(6.67px, 1.39vw, 20px);
  box-shadow: 0 0 clamp(6.67px, 1.39vw, 20px) rgba(0, 0, 0, 0.3);
  border-radius: clamp(2.67px, 0.56vw, 8px);
  box-sizing: border-box;
}

.hubspot-popup-close {
  position: absolute;
  top: clamp(3.33px, 0.56vw, 10px);
  right: clamp(5.33px, 1.11vw, 15px);
  font-size: var(--font-24);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}

#hubspot-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-16);
  color: #555;
  background: rgba(255, 255, 255, 0.85);
  z-index: 10;
}

.spinner {
  width: clamp(13.33px, 2.22vw, 40px);
  height: clamp(13.33px, 2.22vw, 40px);
  border: clamp(1.33px, 0.22vw, 4px) solid #ccc;
  border-top-color: #0099ff;
  /* 旋转色 */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.no-data-tips {
  max-width: 600px;
  margin-top: clamp(10px, 2.78vw, 30px);
  display: none;
}

.no-data-tips .no-data-tips-text1 {
  color: #666666;
  font-size: var(--font-20);
  margin-bottom: clamp(6px, 0.8vw, 10px);
}

.no-data-tips .no-data-tips-text2 {
  color: var(--color-999999);
  font-size: var(--font-16);
  margin-bottom: clamp(6px, 0.8vw, 10px);
}

.no-data-tips .no-data-tips-text3 {
  color: var(--color-009DFF);
  font-size: var(--font-16);
  cursor: pointer;
}


.btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 响应式：PC端按钮并排 */
@media (min-width: 480px) {
  .modal-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.video_placeholder {
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background-color: #ccc;

}

.video_placeholder video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.mobile-text {
  display: none;
}

.pc-text {
  display: block;
}


.br-web {
  display: block;
}

.br-mobile {
  display: none;
}

@media (max-width: 1440px) {

  .uav-section .container,
  .faq-section {
    padding-left: 3%;
    padding-right: 3%;
  }

  .hero-section .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(30px, 5vw, 60px);
  }
}

@media (max-width: 1000px) {

  .find-product-box {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .find-product img {
    max-width: 120px;
  } */
}


@media (max-width: 940px) {

  .uav-section .container,
  .faq-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .find-section .motor_vtol {
    justify-content: space-between;
  }

  .real-section .real-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq_item {
    padding: 16px 0;
  }

  .ligpower-uav-main .backgroundPicture img {
    width: 120%;
    margin-left: -10%;
  }
}

@media screen and (max-width: 768px) {



  .mobile-text {
    display: block;
  }

  .pc-text {
    display: none;
  }

  .find-btn .find-product-link {
    display: none;
  }

  :root {
    --font-14: clamp(14px, 0.78vw, 14px);
    --font-16: clamp(14px, 0.89vw, 16px);
    --font-20: clamp(15px, 1.11vw, 20px);
    --font-22: clamp(16px, 1.22vw, 22px);
    --font-24: clamp(18px, 1.33vw, 24px);
    --font-32: clamp(22px, 1.78vw, 32px);
    --font-58: clamp(28px, 3.22vw, 58px);
  }

  .ligpower-uav-main .ligpower-uav-alink,
  .ligpower-uav-main .ligpower-uav-one-btn,
  .ligpower-uav-main .ligpower-uav-two-btn {
    padding: clamp(10px, 1.33vw, 16px) clamp(16px, 1.33vw, 24px);
    font-size: var(--font-16);
  }

  .tailored-section .button-group {
    display: flex;
    justify-content: center;
  }

  .tailored-section .ligpower-uav-alink,
  .tailored-section .ligpower-uav-one-btn,
  .tailored-section .ligpower-uav-two-btn {
    padding: clamp(10px, 1.33vw, 16px) clamp(6px, 1.33vw, 24px) !important;
  }

  .select_wap .tab_multi,
  .select_wap .tab_lift,
  .select_wap .tab_pusher,
  .select_wap .tab_fixed {
    flex-direction: column;
  }

  .find-section .motor_match img {
    display: none;
  }

  .br-web {
    display: none;
  }

  .br-mobile {
    display: block;
  }

  .hero-section .backgroundPicture {
    max-height: 70vh;
  }

  .ligpower-uav-main .backgroundPicture img {
    width: 100%;
    margin-left: 0;
    max-height: 70vh;
    object-fit: cover;
    object-position: center;
  }

  .ligpower-uav-one-btn img {
    display: none;
  }

  .ligpower-uav-main .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: clamp(30px, 5vw, 60px);
  }

  .ligpower-uav-main .container .text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-section .hero-tips-box {
    position: absolute;
    bottom: 10%;
    grid-template-columns: repeat(2, 1fr);

  }

  .hero-section .hero-tips-box .hero-tips-text {
    font-size: clamp(12px, 1.4vw, 14px);
  }

  .hero-section .hero-tips-box .hero-tips-item {
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-section .hero-tips-box {
    margin-top: unset;
    gap: clamp(12px, 1.67vw, 30px);
    width: 90%;
  }

  .complete-section .prop-subtitle {
    color: #666666;
  }

  .complete-section .prop-cards {
    background-color: var(--color-FFFFFF);
  }

  .complete-section .card-best-for {
    min-height: 80px;
  }

  .complete-section .tab-item {
    padding: unset
  }

  .complete-section .prop-tabs {
    justify-content: unset;
    align-items: unset;
    width: 100%;
  }

  .complete-section .tab-item.individual,
  .complete-section .tab-item.complete {
    background-color: unset;
    color: #000;
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .complete-section .tab-item.individual::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: #ff9900;
  }

  .complete-section .tab-item.complete::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background-color: var(--color-009DFF);
  }

  .major-section .content-flex {
    flex-direction: column;
    align-items: center;
    background-color: var(--color-FFFFFF);
  }



  .major-section .major-content {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: unset;
  }

  .major-section .major-content-wrapper {
    background-color: unset;
    margin-top: clamp(20px, 4vw, 30px);
  }

  .major-section .major-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }

  .major-section .major-tabs,
  .major-section .info-grid {
    margin-bottom: unset;
  }

  .major-section .major-content-wrapper .content-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(20px, 5.56vw, 50px) clamp(30px, 5.56vw, 50px) clamp(20px, 5.56vw, 50px);
  }

  .major-section .info-grid {
    flex-direction: column;
    text-align: center;
  }

  .major-section .ligpower-uav-one-btn {
    position: relative;
  }

  .major-section .major-content.active .content-right {
    text-align: left;
  }

  .choose-section {
    padding-top: unset;
  }

  .choose-section .ligpower-uav-two-btn {
    background-color: unset !important;
    color: var(--color-009DFF) !important;
  }

  .choose-section .choose-features {
    flex-direction: column;
  }

  .choose-section .check-icon {
    width: 24px;
    height: 24px;
  }

  .choose-section .check-icon::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    left: 8px;
    top: 4px;
  }

  .real-section .real-grid {
    display: flex;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-top: 30px;
    gap: 15px;
    width: 100%;
  }

  .real-section .real-link-consult {
    padding: clamp(10px, 1.33vw, 16px) clamp(16px, 1.33vw, 24px);
  }

  .real-section .real-specs {
    margin: clamp(10px, 1.11vw, 18px) 0;
  }

  .real-section .real-card-name {
    padding-bottom: clamp(10px, 1.11vw, 18px);
    text-align: left;
  }

  .real-section .real-specs li {
    text-align: left;
  }

  .real-section .real-card {
    flex: 0 0 85%;
    max-width: 320px;
  }

  .real-section .real-grid::-webkit-scrollbar {
    display: none;
  }



  .real-section .real-card-body {
    padding: 12px 8px;
    min-height: 210px;
  }

  .real-section .real-card-footer {
    justify-content: space-between;
  }

  .real-section .real-specs img {
    max-width: 16px;
    max-height: 16px;
  }

  .customers-section .customers-section-tab.active {
    background: var(--color-009DFF);
  }

  .customers-section .customers-section-tab {
    padding: clamp(8px, 2vw, 16px) clamp(8px, 1.2vw, 12px);
    font-size: var(--font-18);
    border-radius: 5px;
  }

  .customers-section .customers-section-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .customers-section .customers-section-content-card.active {
    display: flex;
    flex-direction: column;
    padding: 0 5%;
  }

  .customers-section .customers-section-tab {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .reliable-section {
    display: none !important;
  }

  .faq-section {
    padding: 10% 5%;
    background-color: #f5f5f5;
  }

  .faq_container {
    margin-top: unset;
  }

  .faq_title {
    font-size: 1.5rem;
  }

  .faq_question {
    font-size: 1rem;
  }

  .faq_answer {
    font-size: 0.95rem;
  }

  .tailored-section {
    padding-top: clamp(80px, 6.58vw, 100px);
    padding-bottom: clamp(80px, 6.58vw, 100px);
  }

  .tailored-section .stat-number {
    font-size: var(--font-32);
  }

  .tailored-section .stat-item {
    margin: clamp(15px, 4vw, 30px);
  }

  .tailored-section .content-wrapper {
    flex-direction: column;
    gap: clamp(60px, 10vw, 80px);
  }

  .tailored-section .stat-item {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .ligpower-uav-main .container {
    padding-top: 60px;
  }

  .hero-section .backgroundPicture {
    max-height: unset;
  }

  .ligpower-uav-main .backgroundPicture img {
    max-height: unset;
    object-fit: cover;
    object-position: center;
  }

  .hubspot-popup-content {
    width: 95dvw;
    max-height: 95vh;
    padding: clamp(6.67px, 2.22vw, 20px) clamp(5.33px, 1.67vw, 16px);
    border-radius: clamp(1.33px, 0.33vw, 4px);
  }

  .hubspot-popup-close {
    font-size: clamp(9.33px, 3.67vw, 28px);
    top: clamp(2.67px, 0.67vw, 8px);
    right: clamp(4px, 1.67vw, 12px);
  }
}

@media (hover: none) and (pointer: coarse) {
  .product-section .product-photo-wrapper:hover .product-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .product-section .product-photo-wrapper:hover .product-photo {
    filter: none !important;
    opacity: 1;
  }
}