/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f0f2f5;
    margin: 0;
    padding: 0;
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
}

/* ── Top Bar ── */
.top-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar .logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.top-bar .logo span { color: #818cf8; }
.top-bar .tagline {
    font-size: 12px;
    color: #94a3b8;
    margin-left: 4px;
}

/* ── Auth Bar Buttons ── */
.auth-area {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.auth-area .btn-login {
    padding: 7px 16px;
    border-radius: 8px;
    border: 1px solid #475569;
    background: transparent;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.auth-area .btn-signup {
    padding: 7px 16px;
    border-radius: 8px;
    border: none;
    background: #6366f1;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.user-area {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    display: none;
}
.user-area .usage-info {
    color: #94a3b8;
    font-size: 13px;
}
.user-area .dashboard-link {
    color: #818cf8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.user-area .username-display {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
}
.user-area .btn-logout {
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid #475569;
    background: transparent;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

/* ── Auth Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    color: #64748b;
}
.modal-title {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}
.form-group {
    margin-bottom: 14px;
}
.form-group:last-of-type {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 5px;
}
.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}
.form-input:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129,140,248,0.15);
}
.auth-error {
    color: #dc2626;
    font-size: 13px;
    margin-bottom: 12px;
    display: none;
}
.btn-auth-submit {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
}
.btn-auth-submit:hover {
    opacity: 0.95;
}
.auth-switch {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: #64748b;
}

/* ── Container ── */
.container {
    max-width: 820px;
    margin: 32px auto;
    padding: 0 20px;
}

/* ── Search Card ── */
.search-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    margin-bottom: 28px;
}
.search-card h1 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.search-card .muted {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}
.search-row {
    display: flex;
    gap: 10px;
}
.search-row input[type="text"] {
    flex: 1;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    font-size: 15px;
    font-family: inherit;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.search-row input[type="text"]:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129,140,248,0.15);
    background: #fff;
}
.search-row button {
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
}
.search-row button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}
.search-row button:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── Messages ── */
.success {
    color: #059669;
    margin-top: 14px;
    font-weight: 500;
    font-size: 14px;
}
.error {
    color: #dc2626;
    margin-top: 14px;
    font-weight: 500;
    font-size: 14px;
}
#message {
    margin-top: 12px;
    font-size: 14px;
    color: #64748b;
}

/* ── Product Header ── */
.product-header {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.product-header .ph-image {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}
.product-header .ph-info { flex: 1; min-width: 0; }
.product-header .ph-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.product-header .product-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
}
.product-header .summary-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 8px 0 0;
}

/* ── AI Score Ring ── */
.ai-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.ai-score svg {
    width: 64px;
    height: 64px;
}
.ai-score .score-track { fill: none; stroke: #e2e8f0; stroke-width: 6; }
.ai-score .score-fill { fill: none; stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 0.8s ease; }
.ai-score .score-text {
    font-size: 16px;
    font-weight: 800;
    fill: #0f172a;
}
.ai-score .score-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ── Tags Row ── */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.smart-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* ── Section Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}
.section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* ── Cards ── */
.card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.card-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.2px;
}
.card p, .card div { font-size: 14px; line-height: 1.7; color: #475569; }

/* ── Card Variants ── */
.card--analysis .card-icon { background: #ede9fe; color: #7c3aed; }
.card--audience .card-icon { background: #fce7f3; color: #db2777; }
.card--benefits .card-icon { background: #d1fae5; color: #059669; }
.card--selling .card-icon { background: #fef3c7; color: #d97706; }
.card--usecases .card-icon { background: #e0f2fe; color: #0284c7; }
.card--performance .card-icon { background: #fef9c3; color: #a16207; }
.card--specs .card-icon { background: #f1f5f9; color: #475569; }
.card--description .card-icon { background: #f3f4f6; color: #374151; }
.card--seo .card-icon { background: #dcfce7; color: #16a34a; }

/* ── Lists inside cards ── */
.card ul {
    margin: 0;
    padding-left: 18px;
}
.card ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ── Detail chips (performance, specs) ── */
.detail-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.detail-chip {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: #334155;
    min-width: 120px;
}
.detail-chip .chip-label {
    font-weight: 700;
    color: #64748b;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 3px;
}

/* ── Tag list (use cases, occasions) ── */
.tag-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tag-list li {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

/* ── Fragrance box ── */
.fragrance-box { background: #fffbeb; border: 1px solid #fde68a; }
.fragrance-box .card-icon { background: #fef3c7; }
.fragrance-box h4 { color: #92400e; }
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin: 12px 0;
}
.note-card {
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 14px;
}
.note-card .note-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #92400e;
    margin-bottom: 4px;
}
.note-card .note-value {
    font-size: 13px;
    color: #1e293b;
}
.scent-family-value {
    font-size: 15px;
    font-weight: 600;
    color: #78350f;
}

/* ── Description ── */
.description-html {
    font-size: 14px;
    line-height: 1.75;
    color: #374151;
}
.description-html ul {
    padding-left: 20px;
    margin: 10px 0;
}
.description-html li { margin-bottom: 6px; }

/* ── PayPal Button ── */
#paypal-button-container {
    max-width: 400px;
    margin: 24px auto;
}

/* ── Pricing Section ── */
.pricing-section {
    max-width: 860px;
    margin: 48px auto 32px;
    padding: 0 20px;
}
.pricing-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0 0 6px;
}
.pricing-section-sub {
    text-align: center;
    font-size: 15px;
    color: #64748b;
    margin: 0 0 32px;
    line-height: 1.6;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.pricing-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s, transform 0.15s;
    position: relative;
}
.pricing-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pricing-card.pricing-pro {
    border-color: #6366f1;
    box-shadow: 0 2px 12px rgba(99,102,241,0.12), 0 4px 20px rgba(0,0,0,0.04);
}
.pricing-card.pricing-pro:hover {
    box-shadow: 0 4px 24px rgba(99,102,241,0.18), 0 6px 28px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.pricing-popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-plan-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.pricing-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}
.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 8px 0 4px;
    letter-spacing: -0.5px;
}
.pricing-price span {
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
}
.pricing-price-note {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 20px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    margin-bottom: 12px;
    line-height: 1.4;
}
.pricing-features li .pf-icon {
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1.4;
}
.pricing-features li .pf-icon.check { color: #22c55e; }
.pricing-features li .pf-icon.x { color: #cbd5e1; }
.pricing-cta {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
}
.pricing-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-cta:active { transform: translateY(0); }
.pricing-cta-free {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}
.pricing-cta-pro {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
}
.pricing-trust {
    text-align: center;
    padding: 20px 0 0;
}
.pricing-trust p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0 0 6px;
    line-height: 1.5;
}
.pricing-trust p strong {
    color: #64748b;
}
.pricing-pro-active-msg {
    text-align: center;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 32px auto 0;
    max-width: 520px;
}
.pricing-pro-active-msg .pam-icon { font-size: 28px; margin-bottom: 8px; }
.pricing-pro-active-msg .pam-title {
    font-size: 16px;
    font-weight: 700;
    color: #166534;
    margin: 0 0 4px;
}
.pricing-pro-active-msg .pam-text {
    font-size: 14px;
    color: #15803d;
    margin: 0;
    line-height: 1.5;
}

/* ── Pricing State Message Banner ── */
.pricing-state-msg {
    text-align: center;
    border-radius: 12px;
    padding: 16px 24px;
    margin: 0 auto 24px;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.6;
}
.pricing-state-msg .psm-text {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}
.pricing-state-msg .psm-benefit {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}
.pricing-state-msg .psm-urgency {
    display: block;
    font-size: 12px;
    opacity: 0.85;
}
.psm-free { background: #f8fafc; color: #475569; border: 1px solid #e2e8f0; }
.psm-cancelled { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.psm-suspended { background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; }
.psm-expired { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
/* PayPal in pricing */
.pricing-paypal-wrap {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 12px;
}

@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-section-title { font-size: 22px; }
    .pricing-card { padding: 24px 20px 20px; }
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .top-bar {
        flex-wrap: wrap;
        padding: 12px 16px;
    }
    .product-header { flex-direction: column; padding: 20px; }
    .product-header .ph-image { width: 72px; height: 72px; font-size: 32px; }
    .search-row { flex-direction: column; }
    .search-row button { width: 100%; }
    .card { padding: 18px 20px; }
    .container { padding: 0 12px; }
    .modal-box { padding: 24px; }
}

/* ── Status Pages (Success / Cancel) ── */
.status-page {
    max-width: 520px;
    margin: 80px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 48px 40px;
    text-align: center;
}
.status-icon {
    font-size: 64px;
    margin-bottom: 16px;
}
.status-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}
.status-message {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 32px;
}
.status-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 10px;
    border: none;
    background: #6366f1;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s;
}
.status-btn:hover { background: #4f46e5; }
.status-btn-outline {
    background: transparent;
    color: #6366f1;
    border: 1.5px solid #c7d2fe;
}
.status-btn-outline:hover { background: #f5f3ff; color: #4f46e5; }
.status-next-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.status-next-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 4px;
}
.status-reassurance {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

/* ── CTA Pulse / Glow Animation ── */
@keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
.cta-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

/* ── Paywall Modal ── */
.paywall-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.paywall-box {
    background: #fff; border-radius: 16px; padding: 36px 32px;
    max-width: 440px; width: 100%; text-align: center;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.paywall-close {
    position: absolute; top: 12px; right: 16px;
    border: none; background: none; font-size: 24px;
    cursor: pointer; color: #94a3b8;
}
.paywall-close:hover { color: #475569; }
.paywall-icon { font-size: 40px; margin-bottom: 12px; }
.paywall-title {
    font-size: 20px; font-weight: 700; color: #0f172a;
    margin: 0 0 8px;
}
.paywall-text {
    font-size: 14px; color: #64748b; line-height: 1.6;
    margin: 0 0 16px;
}
.paywall-features {
    list-style: none; padding: 0; margin: 0 0 20px;
    text-align: left; max-width: 280px; margin-left: auto; margin-right: auto;
}
.paywall-features li {
    font-size: 14px; color: #334155; padding: 4px 0;
}
.paywall-cta {
    display: inline-block; padding: 13px 32px;
    border-radius: 10px; border: none;
    font-size: 15px; font-weight: 700;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff; cursor: pointer; text-decoration: none;
    font-family: inherit; transition: transform 0.1s;
}
.paywall-cta:hover { transform: translateY(-1px); opacity: 0.95; }
.paywall-micro {
    font-size: 12px; color: #94a3b8; margin: 12px 0 0;
}

/* ── Sticky Mobile CTA ── */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid #e2e8f0;
    padding: 10px 16px; z-index: 900;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    justify-content: center;
}
.sticky-cta-btn {
    display: block; width: 100%; max-width: 440px;
    padding: 13px 20px; border-radius: 10px;
    font-size: 15px; font-weight: 700;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff; text-align: center; text-decoration: none;
    font-family: inherit;
}
.sticky-cta-btn:hover { opacity: 0.95; }
/* Only show on small screens */
@media (min-width: 641px) {
    .sticky-cta { display: none !important; }
}

/* ── Usage Pressure Colors ── */
.psm-pressure-warn { color: #d97706; font-weight: 600; }
.psm-pressure-critical { color: #dc2626; font-weight: 700; }

/* ── Loss Aversion Feature List ── */
.psm-lost-features {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; margin: 10px 0 6px;
}
.psm-lost-title {
    font-size: 13px; font-weight: 700; margin-bottom: 2px;
}
.psm-lost-item {
    font-size: 13px; opacity: 0.9;
}

/* ── Dashboard: Loss Aversion Block ── */
.billing-lost-features {
    padding: 0 28px 16px; font-size: 13px;
}
.billing-lost-title {
    font-weight: 700; margin-bottom: 6px; color: inherit;
}
.billing-lost-item {
    display: flex; align-items: center; gap: 6px; margin-bottom: 3px;
}
.billing-lost-x { color: #dc2626; font-weight: 700; flex-shrink: 0; }

/* ── Dashboard: CTA pulse for billing card ── */
.btn-billing.cta-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

/* ── Usage Progress Bar ── */
.usage-progress-wrap {
    margin-top: 10px;
    text-align: center;
}
.usage-progress-bar {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 0 auto 6px;
    overflow: hidden;
}
.usage-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: #6366f1;
    transition: width 0.4s ease;
}
.usage-progress-fill.progress-warn {
    background: #f59e0b;
}
.usage-progress-fill.progress-critical {
    background: #dc2626;
}
.usage-progress-label {
    font-size: 12px;
    color: inherit;
    opacity: 0.8;
}

/* ── Social Proof ── */
.pricing-social-proof {
    font-size: 14px !important;
    font-weight: 600;
    color: #475569 !important;
    margin-bottom: 10px !important;
}
