.pp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 32px;
    flex-wrap: wrap;
}
.pp-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}
.pp-step--active { color: #0070B9; font-weight: 600; }
.pp-step__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    font-weight: 700;
    font-size: 12px;
}
.pp-step--active .pp-step__num { background: #0070B9; color: #fff; }
.pp-step__arrow { color: #d1d5db; }

.pp-duration-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.pp-duration-tab {
    border: 1px solid #DEDFE4;
    background: #F0F0F2;
    color: #374151;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all .15s;
}
.pp-duration-tab:hover { border-color: #0070B9; }
.pp-duration-tab--active {
    background: #0070B9;
    border-color: #0070B9;
    color: #fff;
}

.pp-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.pp-plan-card {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px 18px 18px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    background: #fff;
    height: 100%;
}
.pp-plan-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.06); }
.pp-plan-card--selected {
    border-color: #0070B9;
    box-shadow: 0 0 0 2px rgba(0, 112, 185, 0.15);
}
.pp-plan-card input[type="radio"] { margin-bottom: 8px; }
.pp-plan-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.pp-plan-card__badge--best { background: #28A745; color: #fff; }
.pp-plan-card__badge--popular { background: #0070B9; color: #fff; }
.pp-plan-card__badge--low { background: #F0F0F2; color: #374151; border: 1px solid #DEDFE4; }
.pp-plan-card__price {
    font-size: 2rem;
    font-weight: 700;
    color: #28A745;
    margin: 8px 0;
}
.pp-plan-card__total { color: #6b7280; font-size: 14px; }

.pp-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    background: #ededed;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #374151;
}
.pp-trust-strip i.fa-lock { color: #28A745; }

.pp-bundle {
    border: 1px solid #0070B9;
    border-radius: 8px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #ededed 100%);
    margin-bottom: 24px;
}
.pp-bundle__title { color: #0070B9; font-weight: 700; margin-bottom: 6px; }
.pp-bundle__savings { color: #28A745; font-weight: 700; font-size: 1.1rem; }

.pp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    z-index: 1000;
}
.pp-sticky-cta .btn { width: 100%; max-width: 480px; margin: 0 auto; display: block; }

.pp-duration-panel { display: none; }
.pp-duration-panel--active { display: block; }

@media (min-width: 768px) {
    .pp-sticky-cta,
    .pp-sticky-cta--visible {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .pp-sticky-cta--visible { display: block; }
    body.pp-has-sticky { padding-bottom: 72px; }
}
