.product_hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jetbox_hero {
  background-image: url("../images/products/jetbox/jetbox-hero-bg.jpg");
}

.product_hero_content {
  width: 100%;
  padding: 180px 7% 80px;
  text-align: center;
  color: white;
}

.product_small {
  color: rgb(33, 211, 10);
  font-weight: 800;
  letter-spacing: 2px;
}

.product_hero_content h1 {
  font-size: clamp(44px, 6vw, 100px);
}

.product_hero_content p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 36px;
  line-height: 1.6;
}

.hero_product_image {
  display: block;
  width: min(1050px, 92%);
  margin: 55px auto 0;
  filter: drop-shadow(0 35px 55px rgba(0, 0, 0, 0.22));
}

.jetbox_info_section {
  min-height: 110vh;
  padding: 120px 7%;
  display: flex;
  align-items: center;
  gap: 70px;
  background-color: white;
}

.product_text {
  width: 52%;
}

.product_text h2 {
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.08;
}

.product_text p {
  font-size: 36px;
  line-height: 1.75;
}

.feature_list {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature_list div {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 34px;
  font-weight: 700;
}

.feature_list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.jetbox_info_image {
  width: 48%;
  display: flex;
  justify-content: center;
}

.jetbox_info_image img {
  width: 115%;
  max-height: 800px;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.18));
}

.spec_section {
  padding: 120px 7%;
}

.spec_intro {
  max-width: 950px;
  margin-bottom: 60px;
}

.spec_intro h2 {
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.1;
}

.spec_intro p {
  font-size: 22px;
  line-height: 1.7;
}

.product_table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.product_table th,
.product_table td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
  font-size: 18px;
}

.product_table th {
  background-color: rgb(33, 211, 10);
  color: white;
}

.jetbox_tracking_section {
  min-height: 105vh;
  padding: 120px 7%;
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: white;
}

.tracking_image {
  width: 50%;
}

.tracking_image img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.16));
}

.tracking_text {
  width: 50%;
}

.tracking_text h2 {
  font-size: clamp(48px, 5vw, 82px);
  line-height: 1.08;
}

.tracking_text p {
  font-size: 28px;
  line-height: 1.8;
}

.jetbox_large_section {
  min-height: 115vh;
  padding: 120px 0 0;
  text-align: center;
  background-color: white;
  overflow: hidden;
}

.jetbox_large_text {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 7%;
}

.jetbox_large_text h2 {
  font-size: clamp(48px, 5vw, 86px);
  line-height: 1.08;
}

.jetbox_large_text p {
  font-size: 30px;
  line-height: 1.8;
}

.jetbox_large_image {
  width: 100vw;
  max-width: none;
  max-height: 950px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.product_cta {
  padding: 130px 7%;
  text-align: center;
  background-color: white;
}

.product_cta h2 {
  font-size: clamp(36px, 4vw, 62px);
}

.product_cta p {
  font-size: 23px;
  line-height: 1.7;
}

.product_cta_button {
  display: inline-block;
  margin-top: 35px;
  background-color: rgb(33, 211, 10);
  color: white;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 50px;
  font-size: 32px;
  font-weight: 800;
}

.product_transition_image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .jetbox_info_section,
  .jetbox_tracking_section {
    flex-direction: column;
  }

  .product_text,
  .jetbox_info_image,
  .tracking_image,
  .tracking_text {
    width: 100%;
  }

  .jetbox_info_image img,
  .jetbox_large_image {
    width: 100%;
  }

  .feature_list {
    grid-template-columns: 1fr;
  }

  .product_table {
    display: block;
    overflow-x: auto;
  }
}