/* ===== IMPACT MT summer PAYMENT OPTIONS COMPONENT ===== */
/* Follows @PERFORMANCE_CHECKLIST.md requirements */
/* Performance optimized with proper animations and responsive design */

/* ===== PAYMENT OPTIONS SECTION ===== */
.payment-options {
  background: #2ccabd4a ;
  overflow: hidden;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-options__header {
  text-align: center;
}
.payment-options__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.payment-options__title {
  font-family: var(--font-ui, Termina, sans-serif) !important;
  font-size: 33px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ica-green-deep, #1E312F);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.payment-options__description {
  font-family: var(--font-body, sans-serif);
  font-size: 21px;
  line-height: 1.6;
  color: var(--ica-green-deep, #1E312F);
  margin: 0 auto;
  max-width: 800px;
}

.payment-options__container {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  width: 100%;
}

.payment-options__plan {
  padding: 0.5rem;
  text-align: center;
}

.payment-options__plan-title {
  font-family: var(--font-ui, Termina, sans-serif) !important;
  font-size: 21px;
  font-weight: 600 !important;
  color: var(--ica-green-deep, #1E312F) !important;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #FFFFFF7A 50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.payment-options__plan-description {
  font-family: var(--font-heading, "ivypresto-display", sans-serif) !important;
  font-size: 35px;
  font-weight: 300 !important;
  color: var(--ica-green-deep, #1E312F);
  margin: 0;
  line-height: 1.4;
}

.payment-options__cta {
  text-align: center;
  padding: 2rem 1rem;
}
/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 768px) {
  .payment-options__container {
    max-width: 700px;
  }
  
  .payment-options__plan {
    padding: 1.25rem;
  }
  
  .payment-options__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }
  
  .payment-options__plan-title {
    font-size: 1.1rem;
  }
  
  .payment-options__plan-description {
    font-size: 30px;
  }
}

/* Mobile Large */
@media (max-width: 480px) {
  .payment-options__header {
    margin-bottom: 2rem;
  }
  
  .payment-options__title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin-bottom: 1rem;
  }
  
  .payment-options__description {
    font-size: 1rem;
    margin-bottom: 0;
  }
  
  .payment-options__container {
    max-width: 100%;
  }
  
  .payment-options__plan {
    padding: 1rem;
  }
  
  .payment-options__plan-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
}

/* Mobile Small */
@media (max-width: 360px) {
  .payment-options__plan {
    padding: 0.875rem;
  }
  
  .payment-options__plan-title {
    font-size: 0.9rem;
  }

}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .payment-options__plan {
    transition: none;
  }
}

/* ===== ACCESSIBILITY ===== */

/* Ensure proper focus management */
.payment-options__plan:focus {
  outline: 2px solid var(--ica-lavender);
  outline-offset: 4px;
}

/* Screen reader support */
.payment-options[aria-hidden="true"] {
  display: none;
}

