/* MODAL OVERLAY */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
/*
        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 1200px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
*/
.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 95vh;
    overflow: hidden; /* Cambiado de overflow-y: auto */
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
}

.is_pro .modal-content,
.is_premium .modal-content {
    width: 950px;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    padding-top: 1px;
    font-weight: 500;
    position: absolute;
    top: 2rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}


.modal-pricing {
    padding: 1rem 0.5rem;
    overflow-y: auto; /* Mover el scroll aquí */
    overflow-x: hidden;
    flex: 1;
    text-align: center;
}
/* ------ */
.form-group {
    margin: 0 auto 0.7rem;
}
#pricingModal .form-group {
    margin: 0 auto 0.5rem;
}
#pricingModal .form-group input {
    font-size: 15px;
}
.pricing-plans .forms {
    margin: 0.5rem auto 0;
}

.pricing-trust-plan{
    font-weight: 600;
    color: #393c43;
}
.pricing-trust-free{
    font-weight: 600;
    color: #41a19e;
}
.action-button.plan-button {
    padding: 0.75rem 0.5rem 0.75rem 1.5rem;
}
.action-button.start-free {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    height: 46px;
    min-width: 290px;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
}
.action-button.start-free:hover {
    /*background: linear-gradient(135deg, #34d058 0%, #25c990 100%);*/
    background: linear-gradient(135deg, #36bb54 0%, #29cf8d 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.action-button.start-free:hover .button-arrow {
    transform: translateX(4px);
}

.how-it-works-cta .start-free .button-arrow,
.cta-status .start-free .button-arrow {
    /*display: none;*/
}

@media (max-width: 480px) {
    .lg-es .cta-status .start-free {
        padding-left: 1rem;
    }
}
.action-button.start-free:focus,
.action-button.start-free:focus-visible{
    outline: 1px solid #20c997;
}
/* PRICING SECTION */
.pricing-section {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
    border-top: 1px solid #4a90a426;
    border-bottom: 1px solid #4a90a426;
    padding: 6rem 2rem;
    margin: 0;
    text-align: center;
    position: relative;
}
.pg_signup_paid_plan_pro .pricing-section,
.pg_signup_paid_plan_premium .pricing-section,
.pg_signin .pricing-section,
.pg_blog_index .pricing-section,
.pg_blog_article .pricing-section,
.pg_excerpts_index .pricing-section,
.pg_excerpts_article .pricing-section,
.pg_legal .pricing-section,
.pg_about .pricing-section,
.pg_install .pricing-section {
    display: none;
}
.pricing-section.highlight-animation {
  animation: pulse-highlight 2s ease-in-out;
}
@keyframes pulse-highlight {
  0%, 100% { background: #f5f5f5; }
  50% { background: rgba(76, 175, 80, 0.1); }
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-header {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(0px);
    transition: all 0.8s ease;
    position: relative;
    z-index:1;
}
.pg_pricing .pricing-header{
    margin-bottom: 2rem;
}
#pricingModal .pricing-header{
    opacity: 1;
    margin-bottom: 1.2rem;
}
.pricing-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-header.visible {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}
#pricingModal .pricing-title {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    max-width: 678px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.banner {
    border-radius: 12px;
    width: fit-content;
    min-width: 620px;
    padding: 0.5rem 0.8rem;
    color: #5a6c7d;
}
.banner.trial_14_8 {
    border: 1px solid #b8dce8;
}
.banner.trial_7_4 {
    border: 1px solid #02a5c18f;
}
.banner.trial_3_2 {
    border: 1px solid #ffc107;
}
.banner.trial_1 {
    border: 1px solid #f44336;
    color: #991b1b;
}
.banner.trial_expired {
    border: 1px solid #cbd2d9;
    max-width: 450px;
}

#pricingModal .pricing-subtitle {
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
}
#pricingModal .pricing-controls {
    padding-bottom: 0.8rem;
}
.pricing-controls-mobile-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    gap: 10px;
    width: 100%;
}
.pricing-billing-toggle {
    display: inline-flex;
    gap: 5px;
    background: #f1f5f9;
    padding: 0;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(0px);
    transition: all 0.8s ease;
    transition-delay: 0s;
}
.pricing-billing-toggle:hover {
    background: #bde4f147;
}
#pricingModal .pricing-billing-toggle{
    opacity: 1;
}

.pricing-billing-toggle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-billing-toggle.visible {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}
.pricing-trust-banner {
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 15px 20px;
  background: rgba(25, 178, 203, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(25, 178, 203, 0.15);
  box-shadow: none;
  text-align: center;
}
#pricingModal .pricing-trust-banner{
    display: none;
}
.pricing-trust-banner p {
  margin: 0;
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.6;
}

.pricing-trust-banner strong {
  color: #0b687f;
  font-weight: 600;
}

.trust-icon {
  color: #22c55e;
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
}

.pricing-billing-background {
    position: absolute;
    top: 0rem;
    bottom: 0rem;
    background: linear-gradient(135deg, #6c99bd 0%, #58aac3 100%);
    border-radius: 20px;
    transition: all 0.4s ease-out;
    box-shadow: 0 2px 4px rgba(74, 144, 164, 0.2);
    z-index: 1;
    width: 100px;
    left: 0rem;
    transform: translateX(80px);
}

.pricing-billing-option {
    border: 1px solid transparent;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    background: transparent;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    z-index: 2;
    min-width: 80px;
    justify-content: center;
}
.pricing-billing-option.active {
    color: white;
}
.pricing-billing-option:not(.active) {
    /*border: 1px dashed rgba(29, 61, 69, 0.12);
    border-radius: 20px;*/
}
.pricing-billing-option:not(.active):hover {
    color: #475569;
}
.pricing-billing-save-badge {
    margin-left: 0.3rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.3rem;
    border-radius: 6px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.pricing-billing-option.active .pricing-billing-save-badge {
    /*background: rgba(255, 255, 255, 0.2);*/
    /* background: linear-gradient(135deg, #28a745 0%, #20c997 100%); */
    background: linear-gradient(135deg, #cb834b 0%, #9a562f 100%);
    color: white;
}

.pricing-billing-option .pricing-saving{
    margin-left: 4px;
}
.pricing-billing-option.active .pricing-saving{
    visibility: visible;
    color: white;
}
.pricing-billing-option:not(.active) .pricing-billing-save-badge {
    /*background: #4a90a4;*/
    color: white;
    animation: glow-savings 2s ease-in-out infinite alternate;
}
.pricing-billing-option:not(.active) .pricing-saving{
    visibility: hidden;
    color: transparent;
}

@keyframes glow-savings {
    from { box-shadow: 0 0 10px rgba(220, 53, 69, 0.5); }
    to { box-shadow: 0 0 15px rgba(220, 53, 69, 0.8), 0 0 15px rgba(220, 53, 69, 0.4); }
}
.pricing-price-main .pricing-price-amount{
    font-family: 'DM Sans Semibold', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.pricing-price-equivalent .pricing-price-amount{
    font-family: 'DM Sans Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
    max-width: 1110px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    justify-content: center;
}
#pricingModal .pricing-plans{
    margin-top: 0;
}

.is_pro .pricing-plans,
.is_premium .pricing-plans {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 755px;
}
.is_pro .pricing-plan.pro .pricing-button-arrow,
.is_premium .pricing-plan.premium .pricing-button-arrow {
    display: none;
}

.is_premium .pricing-plans {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 0;
}

.pricing-plan {
    opacity: 0;
    transform: translateY(0px);
    transition: all 0.6s ease;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    position: relative;
    /*cursor: pointer;*/
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    padding: 1.8rem 0.8rem 1.5rem;
}
#pricingModal .pricing-plan{
    opacity: 1;
    padding: 1.4rem 0.35rem 0.7rem;
}
.pricing-plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.1rem 2rem 0.2rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.pricing-plan.pro .pricing-plan-badge {
    background: linear-gradient(90deg, #0077b6 0%, #0096c7 100%);
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.3);
    color: white;
}

/* Estilos para badge en páginas de signup (estructura con plan-summary) */
.pg_pricing .plan-summary.popular .pricing-plan-badge,
.pg_signup_paid_plan_pro .pricing-plan-badge {
    background: linear-gradient(90deg, #0077b6 0%, #0096c7 100%);
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.3);
    color: white;
}

.pricing-plan.premium .pricing-plan-badge {
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Estilos para badge Premium en páginas de signup */
.pg_pricing .plan-summary.premium .pricing-plan-badge,
.pg_signup_paid_plan_premium .pricing-plan-badge {
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Estilos del card Premium en páginas de signup */
.pg_signup_paid_plan_premium .plan-summary {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fffef9 0%, #f5f1e8 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    overflow: visible;
}

/* Estilos del card Pro en páginas de signup para coherencia */
.pg_signup_paid_plan_pro .plan-summary {
    border: 2px solid #4a90a4 !important;
    background: linear-gradient(135deg, #ffffff 0%, #ecfaff 100%);
    box-shadow: 0 12px 35px rgba(74, 144, 164, 0.15);
    top: -3px;
    overflow: visible;
}

/* Estilos del formulario en página de signup Pro para coherencia */
.pg_signup_paid_plan_pro .signup-form-container {
    border: 2px solid #4a90a4;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
    box-shadow: 0 12px 35px rgba(74, 144, 164, 0.15);
}

/* Estilos del formulario en página de signup Premium para coherencia */
.pg_signup_paid_plan_premium .signup-form-container {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fffef9 0%, #f5f1e8 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.is_start.trial_active .pricing-plan-start .pricing-plan-badge,
.is_start.trial_ending_soon .pricing-plan-start .pricing-plan-badge {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
}

.is_start.trial_expired .pricing-plan-start .pricing-plan-badge {
    background: linear-gradient(90deg, #64748b 0%, #475569 100%);
    color: white;
}

.is_start.trial_active .pricing-plan.pro.trial_14_8 .pricing-plan-badge,
.pg_signup_paid_plan_pro.trial_active .plan-summary .pricing-plan-badge {
    border: 2px solid #4a90a4 ;
    color: #0c6b7f;
    box-shadow: 0 4px 12px rgba(55, 185, 207, 0);
    background: linear-gradient(135deg, #e5f5fd 0%, #cae7f1 100%) !important;
}
.is_start.trial_active .pricing-plan.pro.trial_7_4 .pricing-plan-badge {
    border: 2px solid #4a90a4;
    color: #075667;
    box-shadow: 0 4px 12px rgba(55, 185, 207, 0.2);
    background: linear-gradient(135deg, #d0e9ed 0%, #bdecf9);
}

.is_start.trial_ending_soon .pricing-plan.pro.trial_3_2 .pricing-plan-badge,
.pg_signup_paid_plan_pro.trial_ending_soon .plan-summary.trial_3_2 .pricing-plan-badge {
    color: #0c4a6e;
    box-shadow: 0 4px 12px rgb(11 128 245 / 15%);
    background: linear-gradient(135deg, #ddf1ff 0%, #bae6fd 100%);
    border: 2px solid #0284c7;
}
.is_start.trial_ending_soon .pricing-plan.pro.trial_1 .pricing-plan-badge,
.pg_signup_paid_plan_pro.trial_ending_soon .plan-summary.trial_1 .pricing-plan-badge {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828 !important;
    border: 2px solid #ef4444 !important;
    box-shadow: 0 4px 12px rgb(239 68 68 / 25%) !important;
}
.pricing-plan-start {
    overflow: visible;
}
.pricing-plan.pro {
    border: 2px solid #4a90a4 !important;
    background: linear-gradient(135deg, #ffffff 0%, #ecfaff 100%);
    box-shadow: 0 12px 35px rgba(74, 144, 164, 0.15);
    top: -3px;
    overflow: visible;
}
.is_pro .pricing-plan.pro {
    background: linear-gradient(135deg, #f5f8f9 0%, #f5fcff 100%);
    box-shadow: 0 8px 30px rgba(0, 119, 182, 0.2);
}
.pricing-plan.premium {
    overflow: visible;
}
.pricing-plan:hover {
    /*transform: translateY(0px);*/
    /*box-shadow: 0 15px 35px rgba(74, 144, 164, 0.12);*/
    /*border-color: rgba(74, 144, 164, 0.2);*/
    /*transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(74, 144, 164, 0.2);
    transition: all 0.3s ease;*/
}
.pricing-plan.pro:hover {
   /*box-shadow: 0 12px 32px rgba(74, 144, 164, 0.5);*/
}

.pricing-plan.premium {
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #fffef9 0%, #f5f1e8 100%);
}
.is_pro .pricing-plan.premium {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3)
}
.is_premium .pricing-plan.premium {
    border: 3px solid #d4af37;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.35)
}

.is_start.trial_active .pricing-plan.pro.trial_14_8 {
    background: linear-gradient(135deg, #ffffff 0%, #dff8fd 100%) !important;
    border: 2px solid #3da8bf
}

.is_start.trial_active .pricing-plan.pro.trial_7_4 {
    background: linear-gradient(135deg, #edfcff 0%, #e1f8ff 100%)
}

.is_start.trial_ending_soon .pricing-plan.pro {
    background: linear-gradient(135deg, #ebf7ff 0%, #bae6fd 100%);
    border: 2px solid #0284c7 !important;
}

.pricing-plan.animate-in {
    opacity: 1;
    /*transform: translateY(0);*/
}
.pricing-plan.visible {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.pricing-plan:nth-child(1) { transition-delay: 0s; }
.pricing-plan:nth-child(2) { transition-delay: 0s; }
.pricing-plan:nth-child(3) { transition-delay: 0s; }

.pricing-plan-header {
    margin-bottom: 0rem;
    padding-top: 0.2rem;
    margin-left: 0.5rem;
    padding-left: 60px;
}
.pricing-plan-start .pricing-plan-header {
    background: transparent url(/static/img/brand/logo_idazery_start.png) 3px 12px no-repeat;
    background-size: 52px auto;
}
.pricing-plan.pro .pricing-plan-header {
    background: transparent url(/static/img/brand/logo_idazery_pro.png) 3px 12px no-repeat;
    background-size: 52px auto;
}
.pricing-plan.premium .pricing-plan-header {
    background: transparent url(/static/img/brand/logo_idazery_premium.png) 3px 12px no-repeat;
    background-size: 52px auto;
}
#pricingModal .pricing-plan-header {
    background-size: 45px auto;
}
.pricing-plan-name {
    color: #2c3e50;
    margin-bottom: 0.70rem;
    text-align: left;
}
#pricingModal .pricing-plan-name {
    margin-bottom: 0.3rem;
}
#pricingModal .pricing-plan-start .pricing-plan-name {
    margin-bottom: 0;
}
.is_start .pricing-plan-start .plan-button {
    background: linear-gradient(90deg, #64748b 0%, #475569 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(63, 63, 64, 0.3)
}
.is_start .pricing-plan-start .plan-button:hover {
    background: linear-gradient(90deg, #7b8da3 0%, #5e6a81 100%);
    box-shadow: 0 8px 25px rgba(85, 85, 87, 0.3)
}

.is_pro .pricing-plan-start,
.is_pro .pricing-controls-mobile-container,
.is_premium .pricing-plan-start,
.is_premium .pricing-controls-mobile-container {
    display: none;
}

.is_premium .pricing-plan.pro {
    display: none;
}
.pricing-brand{
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.1rem;
    height: 40px;
    background: linear-gradient(to bottom, #4a90a4, #2e6070);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-right: 0.4rem;
}
.pricing-plan-type{
    font-size: 1.8rem;
    font-weight: 700;
    color: #393c43;
}

.pg_signup_paid_plan_pro .pricing-plan-type,
.pg_signup_paid_plan_pro .signup-title,
.pricing-plan.pro .pricing-plan-type {
    color: #0077b6;
}

.pg_signup_paid_plan_premium .pricing-plan-type,
.pg_signup_paid_plan_premium .signup-title,
.pricing-plan.premium .pricing-plan-type {
    color: #b1922c;
}
.pricing-plan-description {
    font-size: 0.95rem;
    color: #3f3f3f;
    line-height: 1.5;
    text-align: left;
    margin-left: 5px;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 0.8rem;
}

.pg_signup_paid_plan_pro .pricing-price-equivalent,
.pg_signup_paid_plan_premium .pricing-price-equivalent{
    display: none !important;
}

#pricingModal .pricing-plan-description {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
.pricing-plan-includes {
    font-size: 0.95rem;
    font-weight: 600;
    color: #282828;
    line-height: 1.5;
    text-align: left;
    margin-left: 5px;
    padding-bottom: 0.8rem;
}
#pricingModal .pricing-plan-includes {
    padding-bottom: 0.5rem;
}
.pricing-plan-price {
    margin-bottom: 0;
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: left;
    position: relative;
}
#pricingModal .pricing-plan-price {
    min-height: 60px;
}
.pricing-plan-start .pricing-plan-price {
    display: block;
}
.pricing-price-main {
    font-size: 3.2rem;
    font-weight: 700;
    color: #393c43;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
}
.pricing-price-equivalent {
    font-size: 1.3rem;
    font-weight: 400;
    color: #059669;
    text-align: center;
    margin-top: 0.25rem;
    line-height: 1;
    position: absolute;
    top: -14px;
    left: 117px;
    opacity: 0.7;
    width: fit-content;
    white-space: nowrap;
    gap: 1px;
    display: flex !important;
    align-items: baseline;
}
.lg-es .pricing-price-equivalent {
    left: 113px;
}
#pricingModal .pricing-price-equivalent {
    top: -11px;
    left: 125px;
}
.lg-es #pricingModal .pricing-price-equivalent {
    left: 119px;
}
.pricing-price-equivalent {
    animation: fadeInRight 0.5s ease 0.3s both;
}
.pricing-price-equivalent * {
    pointer-events: none;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.pricing-price-period .yearly-period {
    margin-left: 0.2rem;
}
.pricing-price-equivalent.yearly-period {
    display: block;
}

.pricing-price-equivalent.monthly-period {
    display: none;
}
#pricingModal .pricing-price-main{
    font-size: 3rem;
    margin-bottom: 0rem;
}
.pricing-plan-start .pricing-price-main {
    color: #41a19e;
    height: 64px;
}
.lg-es .pricing-plan-start .pricing-price-main{
    font-size: 2.8rem;
}
.lg-es #pricingModal .pricing-plan-start .pricing-price-main{
    font-size: 2.6rem;
}
.pricing-plan-start .pricing-plan-name {
    margin-bottom: 0.40rem;
}
.pricing-price-main .pricing-price-currency {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: 'DM Sans Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    top: -3px;
}
#pricingModal .pricing-price-main .pricing-price-currency {
    font-size: 1.7rem;
}
.pricing-price-equivalent .pricing-price-currency {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'DM Sans Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding-right: 2px;
    position: relative;
    top: -1px;
}
#pricingModal .pricing-price-equivalent .pricing-price-currency {
    font-size: 0.9rem;
}

.pricing-price-main .pricing-price-decimal {
    font-size: 1.8rem;
    font-weight: 600;
}
#pricingModal .pricing-price-main .pricing-price-decimal {
    font-size: 1.7rem;
}
.pricing-price-equivalent .pricing-price-decimal {
    font-size: 1rem;
}
#pricingModal .pricing-price-equivalent .pricing-price-decimal {
    font-size: 1rem;
}
.pricing-price-main .pricing-price-period {
    font-size: 1rem;
    color: #64748b99;
    font-weight: 600;
    margin-left: 0.2rem;
}
#pricingModal .pricing-price-main .pricing-price-period {
    font-size: 0.9rem;
}
.pricing-price-equivalent .pricing-price-period {
    font-size: 0.8rem;
    color: #059669b3;
    margin-left: 0rem;
}
#pricingModal .pricing-price-equivalent .pricing-price-period {
    font-size: 0.7rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex: 1;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.4;
    font-weight: 400;
    padding-left: 7px;
    white-space: nowrap;
}

#pricingModal .pricing-feature {
    line-height: 1.3;
}
.lg-es #pricingModal .pricing-feature{
    font-size: 0.93rem;
}
.pricing-feature::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}

.pg_signup_paid_plan_pro .pricing-feature::before,
.pricing-plan.pro .pricing-feature::before {
    color: #0077b6;
}

.pg_signup_paid_plan_premium .pricing-feature::before,
.pricing-plan.premium .pricing-feature::before {
    color: #d4af37;
}

.pricing-cta-container {
    margin-top: auto;
}
.pricing-footer {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 600;
}
.extra-plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 8px;
    border: 1px solid #81c784;
}

.pricing-plan.pro .extra-plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 8px;
    border: 1px solid #64b5f6;
    white-space: nowrap;
}
.pricing-plan.pro.trial_1 .extra-plan-badge {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828 !important;
    border: 2px solid #ef4444 !important;
}
.premium-badge {
    margin-top: 8px;
    white-space: nowrap;
    display: inline-block;
    background: linear-gradient(135deg, #f5f1e8 0%, #ebe5d8 100%);
    color: #6b5318;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid #d4af37;
}
/*---*/
.pricing-plan .plan-button {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}
.pricing-plan .pricing-button-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

.pricing-plan .pricing-button-arrow {
    display: inline-block;
    font-size: 1.2em;
    transition: transform 0.3s ease;
    will-change: transform;
    padding-left: 1rem;
}
#pricingModal .pricing-plan .plan-button {
    padding: 0.9rem 2rem;
}
#pricingModal .pricing-plan.pro .plan-button,
#pricingModal .pricing-plan.premium .plan-button {
    padding: 0.75rem 2rem;
}
.pricing-plan-start .plan-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    padding: 0.9rem 0.5rem;
}
.pricing-plan-start .plan-button:hover,
.pricing-plan-start .plan-button:active {
    background: linear-gradient(135deg, #36bb54 0%, #29cf8d 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.pricing-plan.premium .action-button {
    padding: 0.75rem 2rem;
}

.pricing-plan.pro .action-button {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #0891b2 0%, #19b2cb 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}

.pricing-plan.pro.trial_7_4 .action-button {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}
.pricing-plan.trial_7_4 .trial-button:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4)
}

.pricing-plan.trial_3_2 .action-button,
.pricing-plan.trial_1 .action-button {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.pricing-plan.trial_3_2 .action-button:hover,
.pricing-plan.trial_1 .action-button:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}


.pricing-plan.pro .action-button {
    position: relative;
    overflow: hidden;
}
.pricing-plan.pro .action-button.button-primary-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pricing-plan .plan-button:hover .pricing-button-arrow {
    transform: translateX(4px);
}
@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}
.pricing-plan .plan-button:hover .button-arrow {
    animation: arrow-bounce 0.6s ease-in-out;
}
.pricing-plan.pro .plan-button:hover,
.pricing-plan.pro .plan-button:active {
    background: linear-gradient(135deg, #37b9cf 0%, #34aee7 50%, #19b2cb 100%);
    box-shadow: 0 8px 25px rgba(74, 144, 164, 0.4);
}

/* cta-status */

.cta-status {
    text-align: center;
    padding-top: 40px;
}

.faq-section .cta-status {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.cta-status h3 {
    font-size: 30px;
    color: #2c3e50;
    margin: 0 auto 15px;
}

.cta-status p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0 auto 25px;
    max-width: 633px;
    letter-spacing: -0.01em;
}
.cta-status-benefits {
    margin-top: 0.6rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}
.cta-status .action-button {
    width: 100%;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
    max-width: 250px;
    padding: 0.5rem 1rem 0.5rem 2rem;
}
.cta-status .start-free {
    max-width: fit-content;
}
.cta-status .plan-button {
    background: linear-gradient(135deg, #0891b2 0%, #19b2cb 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
}
.cta-status .plan-button:hover {
    background: linear-gradient(135deg, #37b9cf 0%, #34aee7 50%, #19b2cb 100%);
    box-shadow: 0 8px 25px rgba(74, 144, 164, 0.4);
}
.cta-status .plan-button:hover .button-arrow {
    transform: translateX(4px);
}
.cta-status .button-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    line-height: 1;
    transition: transform 0.3s ease;
    will-change: transform;
    padding-left: 1rem;
}

/* CTA button text / note: variantes responsive (compartido con home.css) */
.btn-text-short,
.note-mobile {
    display: none;
}

@media (max-width: 425px) {
    .btn-text-full,
    .note-full {
        display: none;
    }
    .btn-text-short,
    .note-mobile {
        display: inline;
    }
}

/* -- trial_14_8 -- */
.trial_14_8 {
    background: linear-gradient(135deg, #f0f8fb 0%, #e8f4f8 100%) !important;
}
.trial_14_8 strong {
    color: #4a9fb8;
}
/* -- trial_7_4 -- */
.trial_7_4,
.pg_blog_index .trial_3_2,
.pg_blog_index .trial_1,
.pg_excerpts_index .trial_3_2,
.pg_excerpts_index .trial_1{
    background: linear-gradient(135deg, #e5f2f5 0%, #e1f8ff 100%);
}
.trial_7_4 strong,
.pg_blog_index .trial_3_2 strong,
.pg_blog_index .trial_1 strong,
.pg_excerpts_index .trial_3_2 strong,
.pg_excerpts_index .trial_1 strong {
    color: #06b6d4 !important;
}
/* -- trial_3_2 -- */
.pricing-subtitle.banner.trial_3_2 {
    background: linear-gradient(135deg, #ebf7ff 0%, #bae6fd 100%);
    border: 1px solid #0284c7 !important;
}
.trial_3_2 strong {
    color: #075985 !important;
}
/* -- trial_1 -- */
.trial_1 {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}
.trial_1 strong {
    color: #7f1d1d;
}
/* -- trial_expired -- */
.trial_expired {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
}

/* -- trial_14_8 -- */
.cta-status.trial_14_8 {
    border: 2px solid #b8dce8;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.cta-status.trial_14_8 p {
    color: #5a6c7d;
    max-width: 500px;
}
.cta-status.trial_14_8 .action-button.plan-button {
    background: white;
    color: #4a9fb8;
    border: 2px solid #4a9fb8;
}
.cta-status.trial_14_8 .action-button.plan-button:hover {
    background: #4a9fb8;
    color: white;
    box-shadow: 0 4px 12px rgba(74, 159, 184, 0.3);
}
.cta-status.trial_14_8 .cta-status-benefits,
.pg_blog_index .cta-status.trial_3_2 .cta-status-benefits,
.pg_blog_index .cta-status.trial_1 .cta-status-benefits,
.pg_excerpts_index .cta-status.trial_3_2 .cta-status-benefits,
.pg_excerpts_index .cta-status.trial_1 .cta-status-benefits {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8895a7;
}
/* -- trial_7_4 -- */
.cta-status.trial_7_4,
.pg_blog_index .cta-status.trial_3_2,
.pg_blog_index .cta-status.trial_1,
.pg_excerpts_index .cta-status.trial_3_2,
.pg_excerpts_index .cta-status.trial_1 {
    border: 1px solid #02a5c18f !important;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.cta-status.trial_7_4 h3,
.pg_blog_index .cta-status.trial_3_2 h3,
.pg_blog_index .cta-status.trial_1 h3,
.pg_excerpts_index .cta-status.trial_3_2 h3,
.pg_excerpts_index .cta-status.trial_1 h3 {
    color: #474442;
}
.cta-status.trial_7_4 p,
.pg_blog_index .cta-status.trial_3_2 p,
.pg_blog_index .cta-status.trial_1 p,
.pg_excerpts_index .cta-status.trial_3_2 p,
.pg_excerpts_index .cta-status.trial_1 p {
    color: #5a6c7d;
    max-width: 500px;
}
.cta-status.trial_7_4 .action-button.plan-button,
.pg_blog_index .cta-status.trial_3_2 .action-button.plan-button,
.pg_blog_index .cta-status.trial_1 .action-button.plan-button,
.pg_excerpts_index .cta-status.trial_3_2 .action-button.plan-button,
.pg_excerpts_index .cta-status.trial_1 .action-button.plan-button {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}
.cta-status.trial_7_4 .action-button.plan-button:hover,
.pg_blog_index .cta-status.trial_3_2 .action-button.plan-button:hover,
.pg_blog_index .cta-status.trial_1 .action-button.plan-button:hover,
.pg_excerpts_index .cta-status.trial_3_2 .action-button.plan-button:hover,
.pg_excerpts_index .cta-status.trial_1 .action-button.plan-button:hover {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4)
}
.cta-status.trial_7_4 .cta-status-benefits,
.pg_blog_index .cta-status.trial_3_2 .cta-status-benefits,
.pg_blog_index .cta-status.trial_1 .cta-status-benefits,
.pg_excerpts_index .cta-status.trial_3_2 .cta-status-benefits,
.pg_excerpts_index .cta-status.trial_1 .cta-status-benefits {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8895a7;
}
/* -- trial_3_2 -- */
.cta-status.trial_3_2 {
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.cta-status.trial_3_2 h3 {
    color: #0c4a6e;
}
.cta-status.trial_3_2 p {
    color: #075985 !important;
    max-width: 500px;
}
.cta-status.trial_3_2 .action-button.plan-button {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}
.cta-status.trial_3_2 .action-button.plan-button:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}
.cta-status.trial_3_2 .cta-status-benefits {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #075985;
    font-weight: 600;
}
/* -- trial_1 -- */
.cta-status.trial_1 {
    border: 3px solid #f44336;
    animation: pulse-urgent 4s ease-in-out infinite;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.pg_blog_index .cta-status.trial_1,
.pg_excerpts_index .cta-status.trial_1{
    animation: none;
}
.cta-status.trial_1 h3 {
    color: #c62828;
}
.cta-status.trial_1 p {
    color: #5a6c7d;
}
.cta-status.trial_1 strong {
    color: #c62828;
    font-weight: 700;
    font-size: 1.2rem;
}
.cta-status.trial_1 .action-button.plan-button {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.5);
}
.cta-status.trial_1 .action-button.plan-button:hover {
    background: linear-gradient(135deg, #f95854 0%, #eb3b3b 100%);
    box-shadow: 0 12px 40px rgba(244, 67, 54, 0.5);
}
.cta-status.trial_1 .cta-status-benefits {
    margin-top: 10px;
    line-height: 1.6;
    color: #c62828;
    font-weight: 700;
    font-size: 1rem;
}
/* -- trial_expired -- */
.cta-status.trial_expired {
    border: 2px solid #cbd2d9;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.cta-status.trial_expired p {
    color: #5a6c7d;
    max-width: 500px;
}

/* Animaciones */
@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

@keyframes pulse-urgent {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
    }
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}


/* RESPONSIVE */
@media (max-width: 1200px) {
    .pricing-section{
        padding: 6rem 1rem;
    }
    .pg_pricing .pricing-section{
        padding-top: 4rem;
    }
}
@media (max-width: 1153px) {
    .pricing-plan-description {
        height: 50px;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
    }
}
@media (min-width: 1023px) and (max-width: 1100px) {
    .lg-es .pricing-plans{
        gap: 0.8rem;
    }
    .lg-es .pricing-plan{
        padding: 1.8rem 0.35rem 1.5rem
    }
}
@media (max-width: 1023px) {
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 2rem;
    }

    .pricing-plan.popular {
        transform: none;
    }

    .pricing-plan.popular.animate-in {
        transform: none;
    }

    .pricing-features {
        margin-bottom: 1rem;
    }
}
@media (max-width: 769px) {
    .pricing-controls-mobile-container {
        display: flex;
    }
    .pricing-section {
        padding: 4rem 1.5rem 5rem;
    }

    .pricing-title {
        font-size: 2.2rem;
    }

    .pricing-subtitle {
        font-size: 1.1rem;
        max-width: 427px;
    }
    .banner {
        min-width: 493px;
        max-width: 493px;
    }

    .pricing-plan {
        padding: 1.5rem 1.5rem 2rem;
    }
    .pricing-plan.pro {
        padding: 2rem 1.5rem;
    }

    .pricing-price-main {
        font-size: 2.8rem;
    }
    .pricing-trust-banner {
        padding: 16px 10px;
        margin-bottom: 30px;
        max-width: 500px;
    }
    .pricing-trust-banner p {
        font-size: 15px;
    }
    .pricing-plan .plan-button{
        max-width: 330px;
    }
    .pg_signup_paid_plan_pro .pricing-plan-description,
    .pg_signup_paid_plan_premium .pricing-plan-description{
        padding-bottom: 0rem;
        margin-bottom: 0.7rem;
    }
    .is_pro .pricing-plans,
    .is_premium .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}
@media (max-width: 549px) {
    .pg_pricing .banner {
        min-width: 376px;
        max-width: 376px;
    }
}
@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-plan {
        padding: 1.5rem 1rem;
    }

    .pricing-price-main {
        font-size: 2.5rem;
    }

    .pricing-billing-option {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: 70px;
    }
    .banner {
        max-width: fit-content !important;
        min-width: fit-content !important;
    }
    .cta-status {
        padding: 2rem 0.5rem !important;
    }
    .cta-status p {
        font-size: 1rem;
    }
}
@media (max-width: 425px) {
    .pricing-feature {
        white-space: normal;
    }

}
@media (min-width: 1200px) {
    .pricing-plan{
        padding: 1.8rem 1.2rem 1.5rem;
    }
    #pricingModal .pricing-plan{
        padding: 1.4rem 1.2rem 1rem;
    }
}
/* Tablet landscape optimization */
@media (min-width: 769px) and (max-width: 1023px) {
    .pricing-trust-banner {
        max-width: 700px;
    }
    .is_noplan .pricing-plans {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 700px;
        margin: 2rem auto 0;
    }
    .is_noplan .pricing-plan:last-child {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-height: 810px) {
    #pricingModal .pricing-feature {
        margin-bottom: 0.45rem;
    }
    #pricingModal .pricing-title {
        margin-bottom: 0.3rem;
    }
    #pricingModal .pricing-subtitle {
        margin-bottom: 0.4rem;
    }
    #pricingModal .pricing-header {
        margin-bottom: 1rem;
    }
    #pricingModal .pricing-footer {
        margin-top: 0.3rem;
    }
    #pricingModal .extra-plan-badge,
    #pricingModal .premium-badge {
        margin-top: 4px;
    }
}

@media (max-height: 765px) {
    #pricingModal .modal-pricing {
        padding: 0.5rem 0.5rem;
    }
    #pricingModal .pricing-feature {
        margin-bottom: 0.25rem;
    }
    #pricingModal .pricing-title {
        margin-bottom: 0rem;
    }
    #pricingModal .pricing-subtitle {
        margin-bottom: 0.2rem;
    }
    #pricingModal .pricing-header {
        margin-bottom: 0.7rem;
    }
    #pricingModal .pricing-footer {
        margin-top: 0.1rem;
    }
    #pricingModal .extra-plan-badge,
    #pricingModal .premium-badge {
        margin-top: 2px;
    }
    #pricingModal .pricing-plans .forms {
        margin: 0.1rem auto 0;
    }
}
@media (max-width: 430px) {
    .pricing-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    .pricing-controls-mobile-container {
        margin-top: 1.5rem;
    }
    .currency-selector{
        margin: 0;
    }
}