:root {
  --MRTNavy: #000033;
  --MRTGreen: #29B494;
  --LightBlue: #F4FAFC;
  --LightGreen: #E7F6F3;
  --LightPink: #F9F4F4;
  --White: #FFFFFF;
  --SuperLightGrey: #F5F5F5;
  --LightGrey: #EDEDED;
  --MediumGrey: #C1C1C1;
  --DarkGrey: #595959;
  --Black: #171717;
  --Green: #13BE00;
  --Yellow: #FDC602;
  --BurntOrange: #CF3801;
  --Red: #A90000;
  --Success: #E7F9E5;
  --Warning: #FFF9E6;
  --LightOrange: #FFE6CD;
  --Error: #F6E5E5;
  --Purple: #6A0DAD;
  --MRTGradient: linear-gradient(260deg, #BCFCF0 0%, #F8E9E9 100%);
}

#pricing-header {
  background: var(--MRTGradient);
  padding: 30px 0;
  margin-top: 75px;
  position: relative;
}
#pricing-header .left-detail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
  display: none;
}
#pricing-header .left-detail img {
  height: 100%;
}
#pricing-header .right-detail {
  position: absolute;
  bottom: -100px;
  right: 0;
  height: 100%;
  z-index: 1;
  display: none;
}
#pricing-header .right-detail img {
  height: 100%;
}
@media (min-width: 768px) {
  #pricing-header .left-detail,
  #pricing-header .right-detail {
    display: block;
  }
}
@media (min-width: 992px) {
  #pricing-header {
    padding: 60px 0;
  }
  #pricing-header.small {
    height: 350px;
  }
  #pricing-header.large {
    height: 400px;
  }
}

#pricing-floating-section {
  padding-bottom: 60px;
}
#pricing-floating-section .floating-content-card {
  z-index: 1;
  padding: 15px !important;
  background-color: white;
  border-radius: 10px;
  box-shadow: none;
}
#pricing-floating-section .floating-content-card .content-wrapper {
  padding: 1.5rem;
  border-radius: 15px;
  background-color: var(--LightPink) !important;
  display: grid;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  #pricing-floating-section .floating-content-card .content-wrapper {
    padding: 2rem;
    margin-bottom: 0;
  }
}
#pricing-floating-section .floating-content-card .content-wrapper .svg-wrapper {
  background-color: white;
  border-radius: 50%;
  padding: 20px;
  width: 85px;
  height: 85px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  #pricing-floating-section .floating-content-card .content-wrapper .svg-wrapper {
    margin-bottom: 30px;
  }
}
#pricing-floating-section .floating-content-card .content-wrapper .svg-wrapper svg {
  width: 45px;
  height: 45px;
}
@media (min-width: 992px) {
  #pricing-floating-section .floating-content-card {
    position: relative;
    padding: 30px !important;
    box-shadow: 0px 1px 8px 3px rgba(23, 23, 23, 0.2);
    z-index: 2;
  }
}
@media (min-width: 1340px) {
  #pricing-floating-section .floating-content-card {
    width: 100%;
  }
}
@media (min-width: 992px) {
  #pricing-floating-section.main .floating-content-card {
    margin-top: -200px;
  }
  #pricing-floating-section.individual .floating-content-card {
    margin-top: -75px;
  }
  #pricing-floating-section.org .floating-content-card {
    margin-top: -175px;
  }
}

.org-pricing-card {
  padding: 30px 20px !important;
}
@media (min-width: 992px) {
  .org-pricing-card {
    padding: 40px !important;
  }
}

.credit-selector-section {
  margin-bottom: 30px;
}
.credit-selector-section h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--Black);
}

.credit-selector-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.credit-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--MediumGrey);
  border-radius: 8px;
  overflow: clip;
  background: var(--White);
  width: 100%;
}
@media (min-width: 992px) {
  .credit-input-wrapper {
    width: unset;
  }
}

.credit-input {
  width: 100%;
  height: 44px;
  border: none;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--Black);
}
.credit-input::-webkit-outer-spin-button, .credit-input::-webkit-inner-spin-button {
  margin: 0;
}
.credit-input:focus-visible {
  outline: 2px solid var(--MRTNavy);
  outline-offset: -1px;
}
@media (min-width: 992px) {
  .credit-input {
    width: 80px;
  }
}

.credit-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credit-btn {
  height: 44px;
  min-width: 60px;
  padding: 0 16px;
  border: 1px solid var(--MediumGrey);
  border-radius: 8px;
  background: var(--White);
  font-size: 14px;
  font-weight: 600;
  color: var(--DarkGrey);
  cursor: pointer;
  transition: all 0.2s ease;
}
.credit-btn:hover {
  border-color: var(--MRTNavy);
  color: var(--MRTNavy);
}
.credit-btn.active {
  border-color: var(--MRTNavy);
  background: var(--MRTNavy);
  color: var(--White);
}

.pricing-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .pricing-cards-row {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-card {
  position: relative;
  display: block;
  padding: 25px;
  border: 1px solid var(--MediumGrey);
  border-radius: 12px;
  background: var(--White);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  border-color: var(--MRTNavy);
}
.pricing-card.selected {
  border-color: var(--MRTNavy);
  border-width: 2px;
  box-shadow: 0 4px 12px rgba(41, 180, 148, 0.15);
  background-color: var(--SuperLightGrey);
}
.pricing-card input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pricing-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 0;
  background: none;
  border: none;
}
.pricing-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--Black);
  margin-bottom: 4px;
}
.pricing-card .card-subtitle {
  font-size: 14px;
  color: var(--DarkGrey);
  margin-bottom: 0;
}
.pricing-card .save-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--MRTGreen);
  color: var(--MRTNavy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.card-title-section {
  flex: 1;
}

.radio-indicator {
  width: 24px;
  height: 24px;
  border: 2px solid var(--MediumGrey);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}
.pricing-card.selected .radio-indicator {
  border-color: var(--MRTGreen);
  background: var(--MRTGreen);
}
.pricing-card.selected .radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--MRTNavy);
  border-radius: 50%;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--SuperLightGrey);
}
.card-price .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--Black);
  line-height: 1;
}
.card-price .price-note {
  font-size: 14px;
  color: var(--DarkGrey);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-list li {
  position: relative;
  padding: 10px 0;
  padding-left: 28px;
  font-size: 14px;
  color: var(--Black);
  border-bottom: 1px solid var(--MediumGrey);
}
.features-list li:last-child {
  border-bottom: none;
}
.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2329b494' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.subscribe-section {
  text-align: center;
}
.subscribe-section .btn-primary {
  min-width: 280px;
}

.volume-note {
  margin-top: 15px;
  font-size: 14px;
  color: var(--DarkGrey);
  margin-bottom: 0;
}

.credit-selector-section {
  margin-bottom: 30px;
  background-color: var(--SuperLightGrey);
  border-radius: 10px;
  padding: 15px 30px;
}
.credit-selector-section .credit-selector-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.credit-selector-section .credit-selector-row .credit-btn {
  padding: 10px 35px;
  border: 1px solid var(--MediumGrey);
  border-radius: 10px;
  background: var(--White);
  font-size: 14px;
  font-weight: 600;
  color: var(--DarkGrey);
  cursor: pointer;
  transition: all 0.2s ease;
}
.credit-selector-section .credit-selector-row .credit-btn:hover, .credit-selector-section .credit-selector-row .credit-btn.active {
  border: 2px solid var(--MRTNavy);
  color: var(--MRTNavy);
  background-color: var(--SuperLightGrey);
}