.promo-hero {
  position: relative;
  width: 100%;
  height: 690px;
  overflow: hidden;
  background: #111;
}

.promo-hero-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-hero-top-bar {
  position: absolute;
  top: 40px;
  left: 90px;
  right: 90px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-hero-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.promo-hero-model-name {
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.promo-hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 90px 80px 90px;
}

.promo-hero-btn {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s, box-shadow 0.5s;
  position: relative;
}
.promo-hero-btn::before, .promo-hero-btn::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  transition: all 0.5s;
  z-index: 0;
  pointer-events: none;
}
.promo-hero-btn::before {
  width: 3rem;
  height: 3rem;
  right: 0.25rem;
  top: 0.25rem;
  background: #f5c500;
  filter: blur(14px);
  opacity: 0;
}
.promo-hero-btn::after {
  width: 5rem;
  height: 5rem;
  right: 2rem;
  top: 0.5rem;
  background: #ffe066;
  filter: blur(18px);
  opacity: 0;
}
.promo-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 197, 0, 0.4);
}
.promo-hero-btn:hover::before {
  opacity: 0.4;
  right: 3rem;
  top: auto;
  bottom: -1.5rem;
  filter: blur(22px);
  box-shadow: 20px 20px 20px 30px rgba(245, 197, 0, 0.12);
}
.promo-hero-btn:hover::after {
  opacity: 0.3;
  right: -2rem;
}

.promo-hero-btn-text {
  background: #f5c500;
  color: #111;
  font-weight: 700;
  font-size: 2rem;
  padding: 0.75rem 1.3rem;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.promo-hero-btn-text::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.3);
  transition: width 0.5s ease;
  z-index: -1;
}
.promo-hero-btn:hover .promo-hero-btn-text::before {
  width: 100%;
}

.promo-hero-btn-icon {
  background: #000000;
  color: #ffffff;
  padding: 0 1.1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.promo-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.promo-hero-tagline {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.promo-hero-price {
  color: #fff;
  font-size: 7.8rem;
  font-weight: 900;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  line-height: 1;
}
.promo-hero-price span {
  font-size: 1.4rem;
  font-weight: 400;
  margin-left: 0.2rem;
}

.promo-show-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #111;
}

.promo-show-hero-image {
  position: absolute;
  inset: 0;
}
.promo-show-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-show-hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 120px;
}

.promo-show-card {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #f5c500;
  border-radius: 4px;
  padding: 2.4rem 2.2rem;
  width: 300px;
  color: #fff;
}

.promo-show-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f5c500;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.promo-show-model {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.promo-show-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.promo-show-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
}

.promo-show-price-sub {
  font-size: 1.1rem;
  font-weight: 400;
}

.promo-show-divider {
  width: 40px;
  height: 2px;
  background: #f5c500;
  margin-bottom: 1rem;
}

.promo-show-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.promo-show-features li {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.promo-show-features li i {
  color: #f5c500;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spec-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #f5c500;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.5s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.spec-card::before, .spec-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s, right 0.5s, bottom 0.5s, top 0.5s, filter 0.5s;
  pointer-events: none;
  z-index: 0;
}
.spec-card::before {
  width: 3rem;
  height: 3rem;
  right: 0.5rem;
  top: 0.5rem;
  background: #f5c500;
  filter: blur(14px);
}
.spec-card::after {
  width: 5rem;
  height: 5rem;
  right: 2rem;
  top: 0.25rem;
  background: #ffe066;
  filter: blur(20px);
}
.spec-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 0, 0.25);
}
.spec-card:hover::before {
  opacity: 0.35;
  right: 2.5rem;
  top: auto;
  bottom: -0.5rem;
  filter: blur(18px);
  box-shadow: 10px 10px 20px 16px rgba(245, 197, 0, 0.08);
}
.spec-card:hover::after {
  opacity: 0.25;
  right: -0.5rem;
}

.spec-icon {
  font-size: 1.6rem;
  color: #f5c500;
  flex-shrink: 0;
  width: 1.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.spec-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 1;
}

.spec-main {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}
.spec-main strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
}

.spec-label {
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 1024px) {
  .promo-hero {
    height: 520px;
  }
  .promo-hero-top-bar {
    top: 30px;
    left: 50px;
    right: 50px;
  }
  .promo-hero-model-name {
    font-size: 2.8rem;
  }
  .promo-hero-logo {
    height: 36px;
  }
  .promo-hero-overlay {
    padding: 0 50px 60px 50px;
  }
  .promo-hero-btn-text {
    font-size: 1.4rem;
  }
  .promo-hero-price {
    font-size: 5rem;
  }
  .promo-hero-tagline {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .promo-hero {
    height: 480px;
  }
  .promo-hero-top-bar {
    top: 20px;
    left: 20px;
    right: 20px;
  }
  .promo-hero-model-name {
    font-size: 1.8rem;
  }
  .promo-hero-logo {
    height: 28px;
  }
  .promo-hero-overlay {
    padding: 0 20px 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
  }
  .promo-hero-btn-text {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .promo-hero-btn-icon {
    padding: 0.6rem 0.8rem;
  }
  .promo-hero-price {
    font-size: 3rem;
  }
  .promo-hero-price span {
    font-size: 1rem;
  }
  .promo-hero-tagline {
    font-size: 1.3rem;
    text-align: left;
  }
  .promo-show-hero {
    height: auto;
    min-height: 480px;
  }
  .promo-show-hero-overlay {
    justify-content: center;
    padding: 1.2rem 1rem;
    align-items: flex-end;
    padding-bottom: 1.5rem;
  }
  .promo-show-card {
    width: 100%;
    padding: 1.2rem 1.2rem;
  }
  .promo-show-badge {
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
  }
  .promo-show-model {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
  }
  .promo-show-subtitle {
    font-size: 0.78rem;
    margin-bottom: 0.5rem;
  }
  .promo-show-price {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
  .promo-show-price-sub {
    font-size: 0.9rem;
  }
  .promo-show-divider {
    margin-bottom: 0.6rem;
  }
  .promo-show-features li {
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
  }
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
}
