/* ═════════════════════════════════════════════════════════════════
   CHECKOUT PAGE SHARED STYLES
   ═════════════════════════════════════════════════════════════════ */

/* ── Full Page Loader ── */
.co-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.co-page-loader.active {
    display: flex;
}

.co-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

.co-loader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.co-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #00c2cb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.co-loader-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ── Toast Notification ── */
.co-toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 400px;
    width: 90%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.co-toast {
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
    animation: slideIn 0.3s ease-out forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    width: 100%;
}

.co-toast.success {
    border-color: rgba(0, 200, 100, 0.3);
    background: rgba(0, 200, 100, 0.08);
}

.co-toast.error {
    border-color: rgba(255, 100, 100, 0.3);
    background: rgba(255, 100, 100, 0.08);
}

.co-toast.warning {
    border-color: rgba(255, 180, 0, 0.3);
    background: rgba(255, 180, 0, 0.08);
}

.co-toast.info {
    border-color: rgba(0, 194, 203, 0.3);
    background: rgba(0, 194, 203, 0.08);
}

.co-toast-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.co-toast.success .co-toast-icon {
    color: #00c864;
}

.co-toast.error .co-toast-icon {
    color: #ff6464;
}

.co-toast.warning .co-toast-icon {
    color: #ffb400;
}

.co-toast.info .co-toast-icon {
    color: #00c2cb;
}

.co-toast-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    flex: 1;
}

.co-toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.2s;
}

.co-toast-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

.co-toast.removing {
    animation: slideOut 0.3s ease-out forwards !important;
}

.page {
    display: block !important;
    animation: none;
}

/* ── Layout ── */
.co-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.co-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    padding: 32px 0 80px;
}

/* ── Section Card ── */
.co-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
}

.co-card-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.co-card-title span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 194, 203, .15);
    border: 1px solid rgba(0, 194, 203, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #00c2cb;
    font-weight: 800;
}

/* ── Billing Toggle ── */
.billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 3px;
    gap: 3px;
    margin-bottom: 28px;
}

.billing-btn {
    padding: 7px 20px;
    border-radius: 9px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, .4);
    font-family: var(--font);
    transition: all .2s;
}

.billing-btn.active {
    background: #00c2cb;
    color: #070d1f;
}

/* ── Plan Cards ── */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 8px;
}

.plan-card {
    border: 1.5px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    background: rgba(255, 255, 255, .02);
}

.plan-card:hover {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
}

.plan-card.selected {
    border-color: #00c2cb;
    background: rgba(0, 194, 203, .06);
}

.plan-card.featured {
    border-color: rgba(0, 194, 203, .4);
}

.plan-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00c2cb, #6c63ff);
    color: #070d1f;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .05em;
}

.plan-name {
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 4px;
}

.plan-tier {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.plan-price sub {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    vertical-align: bottom;
    margin-left: 1px;
}

.plan-price .currency {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    margin-right: 1px;
}

.plan-meta {
    font-size: .68rem;
    color: rgba(255, 255, 255, .28);
    margin-top: 3px;
    margin-bottom: 12px;
}

.plan-stats {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.plan-stat {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 5px 3px;
    text-align: center;
}

.plan-stat-val {
    font-size: 12px;
    font-weight: 800;
}

.plan-stat-lbl {
    font-size: 8px;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 1px;
}

.plan-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

.plan-stat-value {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.plan-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    display: inline-block;
    margin-bottom: 8px;
    transition: all .2s;
    position: relative;
}

.plan-card.selected .plan-radio {
    border-color: #00c2cb;
    background: #00c2cb;
}

.plan-card.selected .plan-radio::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #070d1f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ── Modules / Addons grid ── */
.mod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mod-item {
    border: 1.5px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .02);
    position: relative;
}

.mod-item:hover {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .04);
}

.mod-item.selected {
    border-color: #00c2cb;
    background: rgba(0, 194, 203, .06);
}

.mod-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mod-info {
    flex: 1;
    min-width: 0;
}

.mod-name {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

.mod-price {
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
}

.mod-check {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, .15);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.mod-item.selected .mod-check {
    background: #00c2cb;
    border-color: #00c2cb;
}

.mod-item.selected .mod-check::after {
    content: '✓';
    font-size: 10px;
    color: #070d1f;
    font-weight: 800;
}

/* Included (Locked) Module - Cannot be unchecked */
.mod-item.included-locked {
    border-color: #6c63ff;
    background: rgba(108, 99, 255, 0.08);
}

.mod-item.included-locked .mod-check {
    background: #6c63ff;
    border-color: #6c63ff;
}

.mod-item.included-locked .mod-check::after {
    content: '✓';
    font-size: 10px;
    color: #fff;
    font-weight: 800;
}

.mod-item.included-locked::after {
    content: 'Included';
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 0.65rem;
    background: #6c63ff;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* ── Module Category Pills ── */
.mod-cat-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .4);
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font);
}

.mod-cat-pill:hover {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
}

.mod-cat-pill.on {
    background: #00c2cb;
    color: #070d1f;
    border-color: #00c2cb;
}

/* ── Configurator ── */
.config-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.config-row:last-child {
    border-bottom: none;
}

.config-label {
    font-size: .85rem;
    font-weight: 600;
}

.config-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

.config-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    font-family: var(--font);
}

.step-btn:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .25);
}

.step-val {
    font-size: 1rem;
    font-weight: 800;
    min-width: 28px;
    text-align: center;
}

/* ── Promo Code ── */
.promo-wrap {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    font-family: var(--font);
    font-size: .85rem;
    outline: none;
    transition: border .2s;
}

.promo-input:focus {
    border-color: rgba(0, 194, 203, .5);
}

.promo-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.promo-btn {
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(0, 194, 203, .12);
    border: 1px solid rgba(0, 194, 203, .25);
    color: #00c2cb;
    font-weight: 700;
    font-size: .82rem;
    cursor: pointer;
    font-family: var(--font);
    transition: all .2s;
    white-space: nowrap;
}

.promo-btn:hover {
    background: rgba(0, 194, 203, .2);
}

.promo-success {
    font-size: .78rem;
    color: #4ade80;
    margin-top: 6px;
    display: none;
}

/* ── Order Summary (sticky right) ── */
.summary-card {
    background: var(--navy-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.summary-plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 194, 203, .1);
    border: 1px solid rgba(0, 194, 203, .22);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 700;
    color: #00c2cb;
    margin-bottom: 16px;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: .82rem;
}

.summary-row-label {
    color: rgba(255, 255, 255, .5);
}

.summary-row-val {
    font-weight: 700;
    color: #fff;
}

.summary-addons {
    background: rgba(255, 255, 255, .03);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-addon-row {
    display: flex;
    justify-content: space-between;
    font-size: .76rem;
    color: rgba(255, 255, 255, .45);
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 16px 0;
}

.summary-discount {
    display: flex;
    justify-content: space-between;
    font-size: .82rem;
    color: #4ade80;
    display: none;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.summary-total-label {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
}

.summary-total-price {
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: #fff;
}

.summary-total-price .sar {
    font-size: .9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    margin-right: 2px;
}

.summary-total-price .per {
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 500;
}

.summary-vat {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 4px;
    text-align: right;
}

.btn-checkout {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    background: #00c2cb;
    border: none;
    color: #070d1f;
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    letter-spacing: .01em;
}

.btn-checkout:hover {
    background: #33d4dc;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 194, 203, .35);
}

.btn-checkout:active {
    transform: none;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 12px;
}

.trial-note {
    text-align: center;
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    margin-top: 8px;
}

/* ── Registration Form ── */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-grid.full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .05em;
}

.form-input {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 11px 14px;
    color: #fff;
    font-family: var(--font);
    font-size: .85rem;
    outline: none;
    transition: border .2s;
    width: 100%;
}

.form-input:focus {
    border-color: rgba(0, 194, 203, .5);
    background: rgba(0, 194, 203, .03);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, .2);
}

/* ── Error Messages ── */
.text-danger,
.error-message {
    font-size: .75rem;
    font-weight: 600;
    color: #ff6464;
    margin-top: 4px;
    display: block;
    letter-spacing: .02em;
}

.error-message {
    color: #ff7575;
}

.form-input.has-error {
    border-color: rgba(255, 100, 100, .4);
    background: rgba(255, 100, 100, .04);
}

.form-input.has-error:focus {
    border-color: rgba(255, 100, 100, .5);
}

.form-select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 11px 14px;
    color: rgba(255, 255, 255, .6);
    font-family: var(--font);
    font-size: .85rem;
    outline: none;
    transition: border .2s;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color-scheme: dark;
}

.form-select:focus {
    border-color: rgba(0, 194, 203, .5);
    background-color: rgba(0, 194, 203, .03);
}

/* Style for select options */
.form-select option {
    background-color: #1a1a2e;
    color: rgba(255, 255, 255, .8);
    padding: 8px 12px;
}

.form-select option:hover {
    background-color: rgba(0, 194, 203, .2);
    background-image: linear-gradient(rgba(0, 194, 203, .2), rgba(0, 194, 203, .2));
}

.form-select option:checked {
    background: linear-gradient(rgba(0, 194, 203, .3), rgba(0, 194, 203, .3));
    background-color: #1a1a2e;
    color: #00c2cb;
    font-weight: 500;
}

/* ── Payment Methods ── */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.pm-btn {
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all .2s;
    background: rgba(255, 255, 255, .02);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pm-btn:hover {
    border-color: rgba(255, 255, 255, .18);
}

.pm-btn.active {
    border-color: #00c2cb;
    background: rgba(0, 194, 203, .06);
}

.pm-logo {
    width: 36px;
    height: 22px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .03em;
    color: rgba(255, 255, 255, .5);
    flex-shrink: 0;
}

.pm-logo.stripe {
    background: #635bff;
    color: #fff;
}

.pm-logo.tamara {
    background: #3b2462;
    color: #fff;
}

.pm-logo.myfatoorah {
    background: #007a3d;
    color: #fff;
}

.pm-logo.tabby {
    background: #3dbcb8;
    color: #fff;
}

.pm-info {
    flex: 1;
}

.pm-name {
    font-size: .8rem;
    font-weight: 700;
}

.pm-sub {
    font-size: .67rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 1px;
}

.pm-radio {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .15);
    flex-shrink: 0;
    transition: all .2s;
}

.pm-btn.active .pm-radio {
    border-color: #00c2cb;
    background: #00c2cb;
}

/* ── Steps header ── */
.steps-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .3);
}

.step-item.active {
    color: #fff;
}

.step-item.done {
    color: #00c2cb;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-item.active .step-num {
    border-color: #00c2cb;
    background: rgba(0, 194, 203, .15);
    color: #00c2cb;
}

.step-item.done .step-num {
    border-color: #00c2cb;
    background: #00c2cb;
    color: #070d1f;
}

.step-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 0 10px;
    min-width: 20px;
}

.step-line.done {
    background: #00c2cb;
}

/* ── Checkout panels ── */
.checkout-panel {
    display: none;
}

.checkout-panel.active {
    display: block;
}

/* ── Included badge ── */
.inc-tag {
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    background: rgba(74, 222, 128, .12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, .2);
    white-space: nowrap;
}

/* ── Page header ── */
.co-page-header {
    padding: 120px max(24px, calc((100% - 1200px) / 2)) 0;
    position: relative;
}

.co-page-header .grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.co-header-inner {
    position: relative;
    z-index: 1;
    padding-bottom: 32px;
}

.co-breadcrumb {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.co-breadcrumb a {
    color: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: color .2s;
}

.co-breadcrumb a:hover {
    color: #00c2cb;
}

.co-breadcrumb .sep {
    opacity: .4;
}

/* ── Helper Classes ── */
.hero-orb-faded {
    opacity: 0.4;
}

.co-header-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.co-header-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
}

.co-breadcrumb-current {
    color: rgba(255, 255, 255, 0.6);
}

.co-plan-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.co-save-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.co-plan-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 36px;
}

.co-enterprise-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: -0.02em;
}

.co-plan-radio-selected {
    border-color: #00c2cb;
    background: #00c2cb;
}

.co-plan-radio-filled {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #070d1f;
    margin: auto;
    margin-top: 3px;
}

.co-included-box {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.co-included-title {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.co-included-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.co-optional-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: rgba(0, 194, 203, 0.08);
    border: 1.5px solid #00c2cb;
    border-radius: 20px;
    padding: 5px 14px;
    color: #00c2cb;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 10px;
    transition: all 0.2s ease;
}

.co-mod-filter-wrapper {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.co-config-info-box {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(108, 99, 255, 0.07);
    border: 1px solid rgba(108, 99, 255, 0.15);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.co-config-info-link {
    color: #6c63ff;
    cursor: pointer;
    font-weight: 600;
}

.co-form-margin-bottom {
    margin-bottom: 12px;
}

.co-form-full-margin {
    margin-bottom: 12px;
}

.co-form-margin-last {
    margin-bottom: 0;
}

.co-price-unit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    min-width: 60px;
    text-align: right;
}

.co-price-unit-label {
    font-size: 0.65rem;
    margin-top: 1px;
}

.co-optional-field {
    opacity: 0.4;
}

.co-stripe-fields {
    margin-top: 16px;
}

.co-other-pm-message {
    display: none;
    margin-top: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.co-summary-modules-wrap {
    display: none;
}

.co-summary-modules-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 6px;
}

.co-summary-extras-wrap {
    display: none;
}

.co-summary-billing-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 4px;
    text-align: right;
}

.co-summary-total-wrapper {
    margin-top: 10px;
}

.co-discount-val-success {
    color: #4ade80;
}

.co-trust-logos-wrapper {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.co-trusted-title {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.co-logos-container {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.co-logo-badge {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
}

.co-logo-stripe {
    background: rgba(99, 91, 255, 0.15);
    color: rgba(99, 91, 255, 0.8);
}

.co-logo-tamara {
    background: rgba(59, 36, 98, 0.3);
    color: rgba(180, 140, 255, 0.8);
}

.co-logo-myfatoorah {
    background: rgba(0, 122, 61, 0.2);
    color: rgba(0, 194, 100, 0.8);
}

.co-logo-tabby {
    background: rgba(61, 188, 184, 0.12);
    color: rgba(61, 188, 184, 0.8);
}

.co-zatca-note {
    margin-top: 14px;
    padding: 10px 12px;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.12);
    border-radius: 10px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.co-zatca-check {
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 1px;
}

.co-optional-text {
    opacity: 0.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .co-layout {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .mod-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}
