/* Pricing Box Styles - Professional UI/UX */
.pricing-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;           /* ~10% tighter between rows */
    width: 100%;
    margin: 16px 0 20px 0; /* tighter to subtitle above, slightly compact bottom */
    padding: 0;
}

/* refine price row alignment */
.pricing-box .pricing-amount {
    display: inline-flex;
    align-items: baseline;
    justify-content: center; /* or flex-start if you want them slightly left */
    gap: 6px;
    text-align: left;        /* don't center inside the row */
    letter-spacing: normal !important;
}

/* make all amounts occupy the same column + tabular digits */
.pricing-box .price-main {
    font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: #ffffff;

    min-width: 5.5ch;                 /* keeps $60, $200, $1000 visually aligned */
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;   /* fallback tabular numbers */
}

/* keep units smaller + visually secondary */
.pricing-box .price-unit {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-box .pricing-amount:hover .price-main,
.pricing-box .pricing-amount:hover .price-unit {
    color: #ffffff;
}

/* Enhanced spacing between pricing and features */
#i1kewg-6-2,
#i1kewg-6-2-5 {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#i1kewg-6-2 .pricing-box,
#i1kewg-6-2-5 .pricing-box {
    margin-bottom: 32px;
}

#irysbl,
#irysbl-3 {
    margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-box {
        gap: 14px;              /* ~10% tighter than desktop breakpoint */
        margin: 18px 0 16px 0;  /* reduce space above first price on tablet */
    }
    
    .pricing-box .price-main {
        font-size: 28px;
        letter-spacing: -0.05em;
    }

    .pricing-box .price-unit {
        font-size: 15px;
    }
    
    #i1kewg-6-2 .pricing-box,
    #i1kewg-6-2-5 .pricing-box {
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .pricing-box {
        gap: 14px;
        margin: 18px 0 16px 0;
    }
    
    .pricing-box .price-main {
        font-size: 24px;
        letter-spacing: -0.04em;
    }

    .pricing-box .price-unit {
        font-size: 14px;
    }
    
    #i1kewg-6-2 .pricing-box,
    #i1kewg-6-2-5 .pricing-box {
        margin-bottom: 24px;
    }
}

/* Pro plan "Most popular" badge */
.plan-label-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.plan-title-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.plan-title-row #ispyh-2-2-5-3-2-2-6 {
    display: inline-block;
    transform: translateY(1px); /* tiny optical tweak so text aligns with pill */
}

