/* Shared shop / My Account service cards + purchase modals */
:root {
    --sp-surface: #ffffff;
    --sp-foreground: #09090b;
    --sp-muted: #71717a;
    --sp-muted-bg: #f4f4f5;
    --sp-border: #e4e4e7;
    --sp-primary: #2563eb;
    --sp-primary-hover: #1d4ed8;
    --sp-success: #16a34a;
    --sp-success-soft: #f0fdf4;
    --sp-warning-soft: #fffbeb;
    --sp-radius: 12px;
    --sp-radius-lg: 16px;
    --sp-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --sp-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --sp-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.sp-service-card {
    position: relative;
    overflow: hidden;
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 210px;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: var(--sp-shadow);
}

.sp-service-card.tone-blue { background: linear-gradient(165deg, #dbeafe 0%, #eff6ff 50%, #fff 100%); }
.sp-service-card.tone-green { background: linear-gradient(165deg, #dcfce7 0%, #f0fdf4 50%, #fff 100%); }
.sp-service-card.tone-amber { background: linear-gradient(165deg, #fef3c7 0%, #fffbeb 50%, #fff 100%); }
.sp-service-card.tone-sky { background: linear-gradient(165deg, #e0f2fe 0%, #f0f9ff 50%, #fff 100%); }
.sp-service-card.tone-rose { background: linear-gradient(165deg, #ffe4e6 0%, #fff1f2 50%, #fff 100%); }
.sp-service-card.tone-violet { background: linear-gradient(165deg, #ede9fe 0%, #f5f3ff 50%, #fff 100%); }

.sp-service-card.is-active {
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.25), var(--sp-shadow-md);
}

.sp-service-card:hover {
    box-shadow: var(--sp-shadow-md);
    transform: translateY(-3px);
}

.sp-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.sp-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.18);
}

.sp-service-card.tone-blue .sp-service-icon { background: #2563eb; }
.sp-service-card.tone-green .sp-service-icon { background: #16a34a; }
.sp-service-card.tone-amber .sp-service-icon { background: #d97706; }
.sp-service-card.tone-sky .sp-service-icon { background: #0284c7; }
.sp-service-card.tone-rose .sp-service-icon { background: #e11d48; }
.sp-service-card.tone-violet .sp-service-icon { background: #7c3aed; }

.sp-service-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.status-badge.active {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #86efac;
}

.status-badge.inactive {
    background: rgba(255,255,255,0.7);
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.plan-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.plan-item {
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255,255,255,0.7);
    color: #64748b;
}

.plan-item.free { border-color: #d4d4d8; background: #fafafa; color: #52525b; }
.plan-item.silver { border-color: #cbd5e1; background: #f1f5f9; color: #475569; }
.plan-item.gold { border-color: #fde047; background: #fefce8; color: #a16207; }
.plan-item.platinum { border-color: #c4b5fd; background: #f5f3ff; color: #6d28d9; }
.plan-item.monthly { border-color: #93c5fd; background: #eff6ff; color: #1d4ed8; }
.plan-item.annual { border-color: #6ee7b7; background: #ecfdf5; color: #047857; }

.plan-item.active {
    border-color: var(--sp-success) !important;
    background: var(--sp-success-soft) !important;
    color: var(--sp-success) !important;
}

.sp-service-card-footer {
    margin-top: auto;
    padding-top: 4px;
}

.sp-inbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.sp-inbox-card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}

.sp-inbox-card:hover,
.sp-inbox-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    color: inherit;
}

.sp-inbox-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-inbox-card__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.sp-inbox-card__title {
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
}

.sp-inbox-card__hint {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.sp-inbox-card__chevron {
    color: #94a3b8;
    flex-shrink: 0;
}

.sp-inbox-card:hover .sp-inbox-card__chevron {
    color: #16a34a;
}

.action-btn.select-plan,
button.action-btn.select-plan {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: #0f172a;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}

.action-btn.select-plan:hover {
    background: #1e293b;
    transform: translateY(-1px);
    color: #fff !important;
}

a.action-btn:not(.select-plan) {
    display: inline-flex;
    color: #7c3aed;
    font-weight: 700;
    text-decoration: underline;
    background: none;
    padding: 4px 0;
}

.sp-watch-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6d28d9;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.sp-watch-link:hover {
    opacity: 1;
    text-decoration: underline;
    color: #5b21b6;
}

.sp-service-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.sp-service-card-meta .sp-watch-link {
    margin-top: 0;
}

.sp-learn-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: color 0.15s;
}

.sp-learn-link:hover {
    color: #0f172a;
    text-decoration: underline;
}

.sp-learn-link i {
    font-size: 0.72rem;
}

.sp-skeleton {
    background: linear-gradient(90deg, #f4f4f5 25%, #e4e4e7 50%, #f4f4f5 75%);
    background-size: 200% 100%;
    animation: spShimmer 1.4s infinite;
    border-radius: var(--sp-radius-lg);
    min-height: 220px;
}

@keyframes spShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
    .sp-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 0.25rem;
    }

    .sp-service-card {
        padding: 16px;
        min-height: auto;
        gap: 10px;
        border-radius: 16px;
    }

    .sp-service-card:hover {
        transform: none;
    }

    .sp-service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .sp-service-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .status-badge {
        font-size: 0.625rem;
        padding: 4px 8px;
    }

    .plan-comparison {
        gap: 6px;
    }

    .plan-item {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .action-btn.select-plan,
    button.action-btn.select-plan {
        min-height: 48px;
        padding: 14px 16px;
        font-size: 1rem;
        -webkit-tap-highlight-color: transparent;
    }

    a.action-btn:not(.select-plan) {
        min-height: 44px;
        align-items: center;
        font-size: 1rem;
    }

    .sp-skeleton {
        min-height: 180px;
    }

    .modal {
        padding: 0;
        align-items: flex-end;
    }

    #pricing-modal .modal-content {
        padding: 20px 16px 24px;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }

    .purchase-modal-content {
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
    }

    .purchase-modal-content .modal-body {
        padding: 14px 16px 16px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 16px 0;
    }

    .plan-card {
        padding: 22px 18px 72px;
    }

    .select-plan-btn {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        min-height: 48px;
    }

    .success-modal {
        margin: 16px;
        padding: 32px 24px;
        max-width: calc(100% - 32px);
    }

    .fallback-actions {
        flex-direction: column;
    }

    .fallback-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
}

@media (max-width: 768px) {
    body.services-page .solutions-section {
        padding-bottom: 48px;
    }

    body.services-page section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

@media (hover: none) {
    .sp-service-card:hover,
    .mc-shop-card:hover {
        transform: none;
    }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

#pricing-modal .modal-content {
    max-width: 960px;
    width: 100%;
    background: var(--sp-surface);
    border-radius: var(--sp-radius-lg);
    padding: 32px;
    position: relative;
    box-shadow: var(--sp-shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.75rem;
    color: var(--sp-muted);
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    z-index: 10;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.plan-card {
    background: var(--sp-surface);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius-lg);
    padding: 28px 24px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card.active {
    border-color: var(--sp-success);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.plan-card.silver { border-color: #cbd5e1; background: linear-gradient(180deg, #f8fafc 0%, #fff 40%); }
.plan-card.gold { border-color: #fde047; background: linear-gradient(180deg, #fefce8 0%, #fff 40%); }
.plan-card.platinum { border-color: #c4b5fd; background: linear-gradient(180deg, #f5f3ff 0%, #fff 40%); }

.active-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--sp-success);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.plan-price .price-main {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.plan-features {
    list-style: none;
    margin: 20px 0;
    flex: 1;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--sp-muted);
    margin-bottom: 8px;
}

.plan-features li .fa-check { color: var(--sp-success); margin-top: 3px; }
.plan-features li .fa-times { color: #ef4444; margin-top: 3px; }

.select-plan-btn {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: var(--sp-primary);
    color: #fff;
}

.select-plan-btn:disabled {
    background: var(--sp-muted-bg);
    color: var(--sp-muted);
    cursor: default;
}

#close-pricing-modal {
    display: block;
    margin: 8px auto 0;
}

.success-modal {
    max-width: 420px;
    padding: 40px 32px;
    border-radius: var(--sp-radius-lg);
    position: relative;
    background: var(--sp-surface);
}

.success-icon {
    font-size: 3rem;
    color: var(--sp-success);
    margin-bottom: 16px;
}

.purchase-modal-content {
    max-width: 480px;
    width: 100%;
    padding: 0;
    border-radius: var(--sp-radius-lg);
    overflow: hidden;
    background: var(--sp-surface);
    box-shadow: var(--sp-shadow-lg);
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 640px);
}

.purchase-modal-content .modal-header {
    background: #0f172a;
    color: #fff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.purchase-modal-content .modal-header h2 {
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 800;
    margin: 0 !important;
    letter-spacing: -0.02em;
}

.purchase-modal-content .close {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    background: transparent;
    border: none;
    opacity: 0.8;
    padding: 0 2px;
}

.purchase-modal-content .close:hover {
    opacity: 1;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.purchase-modal-content .modal-body {
    padding: 16px 20px 18px;
    overflow: visible;
    max-height: none;
}

.purchase-summary {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
    border: none;
}

.summary-header,
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--sp-primary);
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--sp-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: inherit;
}

.chk-cancel {
    display: block;
    width: 100%;
    margin-top: 6px;
    border: none;
    background: none;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    padding: 6px;
}

.chk-cancel:hover {
    color: #475569;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sp-success-soft);
    color: var(--sp-success);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.fallback-payment {
    display: none;
    background: var(--sp-warning-soft);
    border: 1px solid #fde68a;
    border-radius: var(--sp-radius);
    padding: 24px;
    text-align: center;
    margin-top: 16px;
}

.fallback-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.form-actions {
    padding-top: 20px;
    border-top: 1px solid var(--sp-border);
    text-align: center;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ─── Pricing modal (plan picker) ─────────────────────────────── */
#pricing-modal .modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px 28px;
    max-width: 860px;
    width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(15,23,42,0.18);
}

.pm-close {
    position: absolute;
    top: 16px; right: 18px;
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 36px; height: 36px;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
    z-index: 2;
}
.pm-close:hover { background: #e2e8f0; color: #0f172a; }

.pm-header { text-align: center; margin-bottom: 28px; }
.pm-kicker {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: #2563eb; margin: 0 0 6px;
}
.pm-title { font-size: 1.6rem; font-weight: 800; color: #0f172a; margin: 0 0 6px; letter-spacing: -0.02em; }
.pm-sub { font-size: 0.875rem; color: #64748b; margin: 0; }

.pm-plans-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}
.pm-plans-1col { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
.pm-plans-2col { grid-template-columns: repeat(2, 1fr); }
.pm-plans-3col { grid-template-columns: repeat(3, 1fr); }

.pm-plan-card {
    position: relative;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 20px 20px;
    display: flex; flex-direction: column; gap: 14px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pm-plan-card:hover { border-color: #93c5fd; box-shadow: 0 8px 24px rgba(37,99,235,0.08); }
.pm-plan-card.pm-best { border-color: #2563eb; background: linear-gradient(165deg, #eff6ff, #fff); }
.pm-plan-card.pm-current { border-color: #16a34a; background: linear-gradient(165deg, #f0fdf4, #fff); }

.pm-best-badge, .pm-current-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 3px 14px; border-radius: 999px;
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    white-space: nowrap;
}
.pm-best-badge { background: #2563eb; color: #fff; }
.pm-current-badge { background: #16a34a; color: #fff; }

.pm-plan-top { display: flex; align-items: flex-start; gap: 12px; }
.pm-plan-emoji { font-size: 1.6rem; line-height: 1; }
.pm-plan-name { font-size: 1.05rem; font-weight: 800; color: #0f172a; }
.pm-plan-tagline { font-size: 0.78rem; color: #64748b; margin-top: 2px; }

.pm-price-row { display: flex; align-items: baseline; gap: 4px; }
.pm-price-amount { font-size: 2rem; font-weight: 900; color: #0f172a; letter-spacing: -0.03em; }
.pm-price-period { font-size: 0.875rem; color: #64748b; }
.pm-price-free { font-size: 1.6rem; font-weight: 900; color: #16a34a; }

.pm-features {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1;
}
.pm-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: #374151; }
.pm-features li i { color: #16a34a; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.pm-features li.pm-not { color: #9ca3af; }
.pm-features li.pm-not i { color: #d1d5db; }

.pm-select-btn {
    width: 100%; padding: 13px 16px; border-radius: 12px;
    font-size: 0.95rem; font-weight: 700; font-family: inherit;
    cursor: pointer; border: 2px solid #0f172a;
    background: #fff; color: #0f172a;
    transition: background 0.15s, color 0.15s, transform 0.12s;
    margin-top: auto;
}
.pm-select-btn:hover:not(:disabled) { background: #0f172a; color: #fff; transform: translateY(-1px); }
.pm-select-btn:disabled { opacity: 0.55; cursor: default; border-color: #16a34a; color: #16a34a; }
.pm-select-btn--highlight { background: #2563eb; color: #fff; border-color: #2563eb; }
.pm-select-btn--highlight:hover:not(:disabled) { background: #1d4ed8; border-color: #1d4ed8; }

.pm-guarantee {
    text-align: center; font-size: 0.78rem; color: #94a3b8; margin: 0;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pm-guarantee i { color: #16a34a; }

@media (max-width: 680px) {
    .pm-plans-2col, .pm-plans-3col { grid-template-columns: 1fr; }
    #pricing-modal .modal-content { padding: 28px 16px 24px; border-radius: 20px; }
    .pm-title { font-size: 1.35rem; }
}

/* ─── Purchase / checkout modal ────────────────────────────────── */
.chk-hero {
    display: flex; align-items: center; gap: 12px;
    background: #0f172a;
    border-radius: 12px; padding: 12px 14px; margin-bottom: 10px; color: #fff;
}
.chk-hero-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.12); display: flex; align-items: center;
    justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: #fff;
}
.chk-hero-text { flex: 1; min-width: 0; }
.chk-service-name { font-size: 0.95rem; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.chk-plan-badge {
    display: inline-block; margin-top: 3px;
    padding: 1px 8px; border-radius: 999px;
    background: rgba(255,255,255,0.16); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase; color: #fff;
}
.chk-price-block { text-align: right; flex-shrink: 0; color: #fff; }
.chk-price { font-size: 1.4rem; font-weight: 900; display: block; letter-spacing: -0.03em; color: #fff; }
.chk-period { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

.chk-features {
    list-style: none; margin: 0; padding: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px;
}
.chk-features li { display: flex; align-items: flex-start; gap: 6px; font-size: 0.8rem; color: #475569; line-height: 1.35; }
.chk-features li i { color: #16a34a; margin-top: 2px; flex-shrink: 0; font-size: 0.7rem; }

.chk-pay-btn {
    width: 100%; padding: 13px; border-radius: 12px;
    font-size: 0.95rem; font-weight: 800; font-family: inherit;
    cursor: pointer; border: none;
    background: #16a34a;
    color: #fff;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 6px 16px rgba(22,163,74,0.28);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-bottom: 6px;
}
.chk-pay-btn:hover { transform: translateY(-1px); background: #15803d; }
.chk-pay-btn:disabled { opacity: 0.65; transform: none; cursor: not-allowed; }

.chk-stripe-note {
    text-align: center; font-size: 0.72rem; color: #94a3b8; margin: 0;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.chk-stripe-note i { color: #6772e5; }

@media (max-width: 540px) {
    .chk-features { grid-template-columns: 1fr; }
    .chk-hero { padding: 12px; }
}
