/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 140px var(--page-padding);
  background: var(--color-white);
}

.pricing-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.pricing-header {
  text-align: center;
  position: relative;
  max-width: 720px;
}

.pricing-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.57;
  color: var(--color-orange);
}

.pricing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 20px;
}

.pricing-title-accent {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.pricing-title-accent::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 110%;
  max-width: 200px;
  height: 18px;
  background: url('../assets/images/pricing-title-underline.svg') center bottom/contain no-repeat;
  pointer-events: none;
}

.pricing-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 60px 80px;
  background: #F08946;
  border-radius: 48px;
  overflow: hidden;
  width: 100%;
  max-width: 1160px;
}

.pricing-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  border: none;
  box-shadow: 0 12px 40px rgba(241, 117, 53, 0.35);
}

.pricing-badge-icon {
  width: 36px;
  height: 36px;
}

.pricing-badge-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.36;
  color: var(--color-orange);
}

.pricing-product-image {
  width: 520px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 0;
  color: var(--color-white);
}

.pricing-product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-product-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.36;
  color: var(--color-white);
}

.pricing-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-current {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 1.2;
  color: var(--color-white);
}

.pricing-original {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: line-through;
  align-self: flex-end;
  padding-bottom: 12px;
}

.pricing-promo-note {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.8);
}

.btn-get-jumpo {
  padding: 18px 32px;
  background: #FFE38C;
  border: none;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.36;
  color: var(--color-black);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}

.btn-get-jumpo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-benefit-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.pricing-benefit-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
  .pricing-card {
    gap: 60px;
    padding: 40px 60px;
  }
}

@media (max-width: 1024px) {
  .pricing-card {
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
  }

  .pricing-product-image {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px var(--page-padding);
  }
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 50px 24px 40px;
  }

  .pricing-badge {
    padding: 8px 20px 8px 16px;
  }

  .pricing-badge-icon {
    width: 32px;
    height: 32px;
  }

  .pricing-badge-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px var(--page-padding);
  }
}

@media (max-width: 360px) {
  .pricing-card {
    padding: 40px 16px 30px;
  }
}

