/**
 * Pricing page — extracted + refreshed
 */

.pricing-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 1.25rem;
    box-sizing: border-box;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pricing-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.pricing-header-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.highlight-text {
    color: #ffe066;
    font-weight: 700;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.packages-section {
    margin-bottom: 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.package-card {
    background: white;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.package-card.featured {
    border-color: #667eea;
    transform: scale(1.03);
    padding-top: 44px;
}

.package-color-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 15px 15px 0 0;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-badge i {
    font-size: 0.85em;
}

.package-header {
    text-align: center;
    margin-bottom: 10px;
}

.package-header h3 {
    margin-bottom: 4px;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
}

.package-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.package-coins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.coin-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.coin-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--current-primary);
}

.package-price {
    margin-bottom: 12px;
    position: relative;
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.price-amount {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    display: block;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-per-analysis {
    font-size: 0.9em;
    color: #666;
    display: block;
    margin-top: 5px;
}

.package-badge-text {
    margin: 8px 0 12px;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.package-best-for {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    border-left: 3px solid #667eea;
}

.package-best-for strong {
    color: #333;
    font-weight: 600;
}

.savings-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.package-card.featured .savings-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.feature-item.highlight {
    background: transparent;
    border-radius: 0;
    padding: 10px 0 10px 8px;
    margin: 0;
}

.package-features {
    margin: 12px 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #333;
    font-size: 0.95em;
}

.feature-section-heading {
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
    text-align: center;
    font-size: 0.95rem;
}

.package-features ul.marketing li:not(.feature-highlight) {
    justify-content: center;
    text-align: center;
}

.package-features ul.marketing .feature-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
    align-items: center;
}

.feature-secondary-text {
    color: #6b7280;
    font-size: 0.85rem;
}

.feature-transparency {
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(17, 24, 39, 0.04);
    border: 1px dashed rgba(17, 24, 39, 0.15);
    font-size: 0.82rem;
    color: #374151;
    text-align: center;
}

.feature-transparency.feature-transparency-subtle {
    background: transparent;
    border-style: solid;
    border-color: rgba(17, 24, 39, 0.10);
}

.feature-transparency .transparency-sep {
    margin: 0 6px;
    opacity: 0.6;
}

.package-value-anchor {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.10), rgba(139, 92, 246, 0.10));
    border: 1px solid rgba(59, 130, 246, 0.20);
    color: #111827;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.package-value-anchor.subtle {
    background: rgba(17, 24, 39, 0.04);
    border-color: rgba(17, 24, 39, 0.10);
    font-weight: 500;
    font-size: 0.88rem;
}

.package-features i {
    color: #28a745;
    font-size: 1em;
}

/* Master Chain AI Feature Highlight */
.feature-highlight.master-chain-feature {
    padding: 0;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.feature-highlight-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    position: relative;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
}

.feature-description {
    font-size: 0.85rem;
    color: #6b7280;
    display: block;
}

.feature-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    flex-shrink: 0;
}

body.dark-mode .feature-highlight.master-chain-feature {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(102, 126, 234, 0.4);
}

body.dark-mode .feature-title {
    color: #f3f3f3;
}

body.dark-mode .feature-description {
    color: #d1d5db;
}

/* AI suite — modern pill card (Master Chain · Chatbot · Similarity Guard) */
.feature-highlight.master-chain-feature.ai-suite-card {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.09), rgba(168, 85, 247, 0.07));
    border: 1px solid rgba(129, 140, 248, 0.32);
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(99, 102, 241, 0.12);
    overflow: visible;
}

.feature-highlight.master-chain-feature.ai-suite-card.ai-suite-card--full {
    border-color: rgba(167, 139, 250, 0.42);
    box-shadow: 0 12px 44px rgba(139, 92, 246, 0.16);
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.11), rgba(99, 102, 241, 0.08));
}

body.dark-mode .feature-highlight.master-chain-feature.ai-suite-card {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.18), rgba(168, 85, 247, 0.14));
    border-color: rgba(165, 180, 252, 0.38);
}

body.dark-mode .feature-highlight.master-chain-feature.ai-suite-card.ai-suite-card--full {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.2), rgba(99, 102, 241, 0.14));
    border-color: rgba(196, 181, 253, 0.45);
}

.ai-suite-card__inner {
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-suite-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 1.4rem;
}

.ai-suite-card__eyebrow {
    font-size: 0.68rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6366f1;
}

body.dark-mode .ai-suite-card__eyebrow {
    color: #a5b4fc;
}

.ai-suite-card .ai-suite-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ai-suite-card .ai-suite-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(99, 102, 241, 0.22);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.ai-suite-card .ai-suite-pill i {
    font-size: 0.85em;
    opacity: 0.9;
    color: #6366f1;
}

body.dark-mode .ai-suite-card .ai-suite-pill {
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(129, 140, 248, 0.38);
}

body.dark-mode .ai-suite-card .ai-suite-pill i {
    color: #c7d2fe;
}

.ai-suite-card__tagline {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #64748b;
    font-weight: 500;
}

body.dark-mode .ai-suite-card__tagline {
    color: #94a3b8;
}

.package-action {
    text-align: center;
    margin-top: 0;
    clear: both;
}

.package-best-for + .package-action {
    margin-top: 0;
}

.package-action .pricing-btn,
.package-action .btn-primary {
    margin-top: 0;
    margin-bottom: 0;
}

.pricing-container .btn,
.package-card .btn,
.token-block-warning .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 260px;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
}

.pricing-container .btn-primary,
.package-card .btn-primary,
.token-block-warning .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-container .btn-primary:hover,
.package-card .btn-primary:hover,
.token-block-warning .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

.pricing-container .btn-secondary,
.package-card .btn-secondary,
.token-block-warning .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-container .btn-secondary:hover,
.package-card .btn-secondary:hover,
.token-block-warning .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Disabled Button Styles */
.pricing-container .btn-disabled,
.package-card .btn-disabled,
.token-block-warning .btn-disabled {
    background: #6c757d !important;
    color: #adb5bd !important;
    border: 1px solid #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.pricing-container .btn-disabled:hover,
.package-card .btn-disabled:hover,
.token-block-warning .btn-disabled:hover {
    background: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}

.login-hint {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--current-text-secondary);
}

.login-hint a {
    color: var(--current-primary);
    text-decoration: none;
    font-weight: 500;
}

.login-hint a:hover {
    text-decoration: underline;
}

.pricing-info {
    margin-top: 20px;
}

.pricing-microcopy {
    margin-top: 40px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
}

.pricing-microcopy p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-microcopy i {
    color: #667eea;
    font-size: 1.1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--current-card-bg);
    border: 1px solid var(--current-border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px var(--current-shadow);
    transition: all 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--current-shadow);
    border-color: var(--current-primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 15px auto;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--current-text);
}

.info-card p {
    color: var(--current-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-header-icon {
        font-size: 3rem;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 20px 15px;
    }
    
    .pricing-header {
        padding: 30px 20px;
    }
    
    .package-card,
    .info-card {
        padding: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-container .btn,
    .package-card .btn,
    .token-block-warning .btn {
        max-width: 100%;
        padding: 14px 20px;
    }
    
    .pricing-microcopy {
        margin-top: 30px;
        padding: 20px;
    }
    
    .pricing-microcopy p {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .package-best-for {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing-container {
        padding: 15px 10px;
    }
    
    .pricing-header {
        padding: 25px 15px;
    }
    
    .package-card,
    .info-card {
        padding: 15px;
    }
    
    .pricing-container .btn,
    .package-card .btn,
    .token-block-warning .btn {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Dark Mode Styles for Pricing Page */
body.dark-mode .package-card {
    background: #181a20 !important;
    border-color: #23242a !important;
    color: #f3f3f3 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
}

body.dark-mode .package-card:hover {
    border-color: #667eea !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
}

body.dark-mode .package-card.featured {
    border-color: #667eea !important;
}

body.dark-mode .package-header h3 {
    color: #f3f3f3 !important;
}

body.dark-mode .package-subtitle {
    color: #aaa !important;
}

body.dark-mode .package-best-for {
    background: #23242a !important;
    color: #aaa !important;
    border-left-color: #667eea !important;
}

body.dark-mode .package-best-for strong {
    color: #f3f3f3 !important;
}

body.dark-mode .package-badge-text {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #3b82f6 !important;
}

body.dark-mode .feature-section-heading {
    color: #f3f3f3 !important;
}

body.dark-mode .feature-secondary-text {
    color: #9ca3af !important;
}

body.dark-mode .feature-transparency {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #d1d5db !important;
}

body.dark-mode .feature-transparency.feature-transparency-subtle {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
}

body.dark-mode .package-value-anchor {
    color: #f3f3f3 !important;
    border-color: rgba(167, 139, 250, 0.25) !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(139, 92, 246, 0.16)) !important;
}

body.dark-mode .package-value-anchor.subtle {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #d1d5db !important;
}

body.dark-mode .pricing-microcopy {
    background: #23242a !important;
    border-color: #23242a !important;
}

body.dark-mode .pricing-microcopy p {
    color: #aaa !important;
}

body.dark-mode .pricing-microcopy i {
    color: #667eea !important;
}

body.dark-mode .package-features li {
    color: #f3f3f3 !important;
}

body.dark-mode .price-amount,
body.dark-mode .currency {
    color: #f3f3f3 !important;
}

body.dark-mode .price-per-analysis {
    color: #aaa !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal-body {
    padding: 20px 30px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.purchase-summary {
    background: var(--current-card-bg);
    border: 1px solid var(--current-border);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.package-selected h3 {
    margin-bottom: 6px;
    color: #333;
    font-size: 1.1em;
}

.package-details {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.purchase-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    font-weight: bold;
}

.total-amount {
    color: #667eea;
}

.coupon-input-group {
    display: flex;
    align-items: center;
}

.coupon-input-group input {
    flex: 1;
}

.coupon-input-group .btn {
    margin-left: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
}

.payment-section {
    margin-bottom: 15px;
}

.payment-section h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1em;
}

.card-element {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    margin-bottom: 10px;
}

.card-errors {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: 5px;
}

.stripe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 0;
    font-size: 0.85em;
    color: #6c757d;
}

.stripe-badge span {
    font-size: 0.9em;
}

.stripe-badge svg {
    height: 20px;
    width: auto;
}

.stripe-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
}

.stripe-text {
    font-weight: 600;
    color: #635BFF;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.coupon-result {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.coupon-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.coupon-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Modal Dark Mode */
body.dark-mode .modal-content {
    background: #181a20 !important;
    color: #f3f3f3 !important;
}

body.dark-mode .modal-header {
    border-bottom-color: #23242a !important;
}

body.dark-mode .modal-header h2 {
    color: #f3f3f3 !important;
}

body.dark-mode .close {
    color: #aaa !important;
}

body.dark-mode .close:hover {
    color: #f3f3f3 !important;
}

body.dark-mode .purchase-summary {
    background: #23242a !important;
}

body.dark-mode .package-selected h3 {
    color: #f3f3f3 !important;
}

body.dark-mode .package-details {
    color: #aaa !important;
}

body.dark-mode .purchase-total {
    color: #f3f3f3 !important;
}

body.dark-mode .total-amount {
    color: #a991e4 !important;
}

body.dark-mode .form-group label {
    color: #f3f3f3 !important;
}

body.dark-mode .form-group input[type="text"] {
    background: #23242a !important;
    color: #f3f3f3 !important;
    border-color: #444 !important;
}

body.dark-mode .form-group input[type="text"]:focus {
    border-color: #667eea !important;
}

body.dark-mode .payment-section h3 {
    color: #f3f3f3 !important;
}

body.dark-mode .payment-method-content h4 {
    color: #f3f3f3 !important;
}

body.dark-mode .card-element {
    background: #23242a !important;
    border-color: #23242a !important;
    color: #f3f3f3 !important;
}

body.dark-mode .stripe-badge {
    color: #9ca3af !important;
}

body.dark-mode .stripe-badge a {
    opacity: 0.9;
}

body.dark-mode .stripe-badge a:hover {
    opacity: 1;
}

body.dark-mode .stripe-text {
    color: #7c3aed !important;
}

.payment-method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.payment-method-option {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-method-option:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.payment-method-option input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
    color: #3b82f6;
    font-weight: 600;
}

.payment-method-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    flex: 1;
}

.payment-method-label i {
    font-size: 20px;
}

.payment-method-content {
    margin-top: 12px;
}

.payment-method-content h4 {
    font-size: 0.95em;
    margin-bottom: 8px;
    color: #333;
}

.paypal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    font-size: 12px;
    color: #6b7280;
}

.paypal-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #003087;
    font-weight: 600;
}

.paypal-text {
    color: #003087;
}

body.dark-mode .payment-method-option {
    background: #1f2937;
    border-color: #374151;
}

body.dark-mode .payment-method-option:hover {
    background: #111827;
    border-color: #3b82f6;
}

body.dark-mode .payment-method-label {
    color: #d1d5db;
}

body.dark-mode .paypal-badge {
    color: #9ca3af;
}

body.dark-mode .coupon-result.success {
    background: #22332a !important;
    color: #22c55e !important;
    border-color: #22c55e !important;
}

body.dark-mode .coupon-result.error {
    background: #332222 !important;
    color: #ff6b6b !important;
    border-color: #ff6b6b !important;
}

body.dark-mode .btn-secondary {
    background: #23242a !important;
    color: #f3f3f3 !important;
    border-color: #23242a !important;
}

body.dark-mode .btn-secondary:hover {
    background: #2a2d35 !important;
    border-color: #2a2d35 !important;
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        max-width: 500px;
        margin: 2% auto;
        max-height: 96vh;
    }

    .modal-body {
        padding: 20px;
    }
    .coupon-input-group {
        flex-direction: column;
        gap: 10px;
    }
    .coupon-input-group input,
    .coupon-input-group button {
        width: 100%;
    }
}

/* Responsive styles for token block warning */
@media (max-width: 768px) {
    .token-block-warning {
        width: calc(100% - 30px);
        margin: 15px auto;
        padding: 25px 20px;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .warning-icon {
        font-size: 2rem;
    }
    
    .warning-text h3 {
        font-size: 1.3rem;
    }
    
    .warning-text p {
        font-size: 1rem;
    }
    
    .warning-actions {
        justify-content: center;
    }
    
    .warning-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .token-block-warning {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 20px 15px;
    }
    
    .warning-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .warning-actions .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 16px;
    }
}

/* Token Block Warning Styles */
.token-block-warning {
    max-width: 1400px;
    width: 100%;
    margin: 24px auto 28px auto;
    background: linear-gradient(135deg, #e6f9ed 0%, #d2f4e3 100%);
    color: #217a4a;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(33, 122, 74, 0.07);
    border: 1px solid #b6e2c7;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    min-height: 80px;
}
.token-block-warning .warning-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}
.token-block-warning .warning-icon {
    font-size: 2rem;
    color: #28a745;
    flex-shrink: 0;
}
.token-block-warning .warning-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.token-block-warning .warning-text h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #217a4a;
}
.token-block-warning .warning-text p {
    font-size: 1.01rem;
    margin: 0;
    color: #217a4a;
    opacity: 0.85;
}
.token-block-warning .warning-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 32px;
}
.token-block-warning .icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #43c97f 100%);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.token-block-warning .icon-btn:hover {
    background: linear-gradient(135deg, #43c97f 0%, #28a745 100%);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.18);
}
@media (max-width: 900px) {
  .token-block-warning {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 14px;
    min-height: unset;
  }
  .token-block-warning .warning-content {
    margin-bottom: 18px;
  }
  .token-block-warning .warning-actions {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 700px) {
    .token-block-warning {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .token-block-warning {
        width: calc(100% - 8px);
        margin: 8px auto;
        padding: 8px 4px;
    }
}

.payment-method-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.payment-method-option {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-method-option:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
}

.payment-method-option input[type="radio"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
    color: #3b82f6;
    font-weight: 600;
}

.payment-method-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    flex: 1;
}

.payment-method-label i {
    font-size: 20px;
}

.payment-method-content {
    margin-top: 12px;
}

.payment-method-content h4 {
    font-size: 0.95em;
    margin-bottom: 8px;
    color: #333;
}

.paypal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    font-size: 12px;
    color: #6b7280;
}

.paypal-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #003087;
    font-weight: 600;
}

.paypal-text {
    color: #003087;
}

body.dark-mode .payment-method-option {
    background: #1f2937;
    border-color: #374151;
}

body.dark-mode .payment-method-option:hover {
    background: #111827;
    border-color: #3b82f6;
}

body.dark-mode .payment-method-label {
    color: #d1d5db;
}

body.dark-mode .paypal-badge {
    color: #9ca3af;
}


/* ===== Pricing refresh ===== */
.pricing-page .pricing-hero-title-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0;
}

.pricing-page .pricing-hero-title-icon {
    display: none;
}

.pricing-page .pricing-header-content h1 {
    margin: 0;
}

.pricing-page .pricing-container {
    max-width: 1440px;
    padding: 1.15rem 1.25rem 1.75rem;
}

.pricing-page .pricing-header {
    display: flex;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(520px 180px at 0% 0%, rgba(236, 72, 153, 0.16), transparent 58%),
        radial-gradient(420px 160px at 100% 0%, rgba(124, 140, 255, 0.22), transparent 52%),
        rgba(12, 14, 26, 0.78);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    padding: 0.95rem 1.2rem;
    margin-bottom: 1.15rem;
    gap: 1rem;
}

.pricing-page .pricing-header-icon {
    display: none;
}

.pricing-page .pricing-header-content h1 {
    font-size: clamp(1.15rem, 1.1vw + 0.9rem, 1.45rem);
    font-weight: 800;
    margin: 0 0 0.2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-page .pricing-header-content p,
.pricing-page .pricing-subtitle {
    font-size: 0.84rem;
    line-height: 1.4;
    margin: 0 0 0.55rem;
    opacity: 0.82;
}

.pricing-page .pricing-content {
    gap: 1.35rem;
}

.pricing-page .packages-grid {
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-page .package-card {
    border-radius: 18px;
    border: 1px solid var(--current-border);
    background: var(--current-card-bg);
    box-shadow: 0 10px 34px rgba(0,0,0,0.06);
    padding: 1.1rem 0.9rem 1rem;
}

.pricing-page .package-card.featured {
    transform: none;
    border-color: rgba(124, 140, 255, 0.45);
    box-shadow: 0 14px 40px rgba(124, 140, 255, 0.14);
    padding-top: 2.5rem;
}

.pricing-page .package-card:hover { transform: translateY(-3px); }

.pricing-page .package-header h3 { color: var(--current-text); font-size: 1.05rem; }
.pricing-page .package-subtitle { color: var(--current-text-secondary); font-size: 0.84rem; }
.pricing-page .currency, .pricing-page .price-amount { color: var(--current-text); }
.pricing-page .price-amount { font-size: 1.8rem; }

.pricing-page .package-features li {
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    font-size: 0.84rem;
    color: var(--current-text);
}

.pricing-page .package-features ul.marketing .feature-copy { align-items: flex-start; }
.pricing-page .feature-secondary-text { font-size: 0.78rem; }

.pricing-page .package-best-for {
    background: var(--current-bg);
    border-left: 3px solid var(--current-primary);
    color: var(--current-text-secondary);
    font-size: 0.82rem;
    padding: 0.7rem 0.8rem;
    margin: 0.8rem 0;
}

.pricing-page .package-best-for strong { color: var(--current-text); }

.pricing-page .package-action .btn,
.pricing-page .token-block-warning .icon-btn {
    border-radius: 12px;
}

.pricing-page .pricing-info { margin-top: 0.25rem; }
.pricing-page .info-grid { gap: 0.8rem; }
.pricing-page .info-card { border-radius: 16px; padding: 1rem; }
.pricing-page .info-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.pricing-page .info-card p { font-size: 0.84rem; }
.pricing-page .info-icon { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 0.65rem; }

.pricing-page .pricing-microcopy {
    margin-top: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: var(--current-bg);
    border: 1px solid var(--current-border);
}
.pricing-page .pricing-microcopy p { font-size: 0.84rem; }

body.light-mode .pricing-page .pricing-header,
html[data-theme="light"] .pricing-page .pricing-header {
    border-color: rgba(15, 23, 42, 0.1);
    background:
        radial-gradient(420px 160px at 0% 0%, rgba(236, 72, 153, 0.08), transparent 58%),
        radial-gradient(360px 140px at 100% 0%, rgba(124, 140, 255, 0.1), transparent 52%),
        #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    color: #0f172a;
}
body.light-mode .pricing-page .pricing-header-content h1,
html[data-theme="light"] .pricing-page .pricing-header-content h1 { color:#0f172a; }
body.light-mode .pricing-page .pricing-header-content p,
html[data-theme="light"] .pricing-page .pricing-header-content p { color: rgba(15,23,42,.68); }

/* Hero — glass pills (Master Chain · AI Chatbot · Similarity Guard) */
.pricing-page .pricing-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(226, 232, 255, 0.72);
}

body.light-mode .pricing-page .pricing-eyebrow,
html[data-theme="light"] .pricing-page .pricing-eyebrow {
    color: rgba(15, 23, 42, 0.48);
}

.pricing-page .ai-suite-pills--hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0;
    align-items: center;
}

.pricing-page .ai-suite-pill--hero {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #f8fafc;
    box-shadow: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pricing-page .ai-suite-pill--hero:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.pricing-page .ai-suite-pill--hero i {
    font-size: 0.88em;
    opacity: 0.92;
}

body.light-mode .pricing-page .ai-suite-pill--hero,
html[data-theme="light"] .pricing-page .ai-suite-pill--hero {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(99, 102, 241, 0.28);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1024px) {
    .pricing-page .packages-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
    .pricing-page .pricing-container { padding: 1rem 1rem 1.5rem; }
    .pricing-page .packages-grid { grid-template-columns: 1fr; }
    .pricing-page .pricing-header { text-align: left; }
    .pricing-page .pricing-hero-title-row { justify-content: flex-start; }
    .pricing-page .pricing-header-content h1 { font-size: 1.2rem; }
    .pricing-page .pricing-eyebrow { text-align: left; width: 100%; }
    .pricing-page .ai-suite-pills--hero { justify-content: flex-start; }
}

/* ===== List comparison layout ===== */
.pricing-page .pricing-section-head {
    margin: 0 0 1.1rem;
}

.pricing-page .pricing-section-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a5b4fc;
}

.pricing-page .pricing-section-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.2rem, 1.2vw + 1rem, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--current-text, #f1f5f9);
}

.pricing-page .pricing-section-head p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--current-text-secondary, #94a3b8);
}

.pricing-page .pricing-section-head a {
    color: #a5b4fc;
    font-weight: 650;
    text-decoration: none;
}

.pricing-page .pricing-section-head a:hover {
    text-decoration: underline;
}

.pricing-page .packages-section,
.pricing-page .pricing-content,
.pricing-page .pricing-why {
    overflow: visible;
}

.pricing-page .pricing-plan-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem 1.15rem;
    align-items: stretch;
    padding: 2.75rem 0.35rem 0.35rem;
}

.pricing-page .pricing-plan-row {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    box-sizing: border-box;
    padding: 1.55rem 1.35rem 1.3rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(56, 189, 248, 0.08), transparent 58%),
        rgba(12, 14, 26, 0.78);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.pricing-page .pricing-plan-row--starter {
    border-color: rgba(52, 211, 153, 0.22);
    border-left-color: #34d399;
    background:
        radial-gradient(ellipse 80% 90% at 0% 0%, rgba(16, 185, 129, 0.1), transparent 55%),
        rgba(12, 14, 26, 0.72);
}

.pricing-page .pricing-plan-row--producer {
    border-color: rgba(129, 140, 248, 0.32);
    border-left-color: #818cf8;
    background:
        radial-gradient(ellipse 80% 90% at 0% 0%, rgba(99, 102, 241, 0.14), transparent 55%),
        rgba(12, 14, 26, 0.72);
}

.pricing-page .pricing-plan-row--studio {
    border-color: rgba(192, 132, 252, 0.28);
    border-left-color: #c084fc;
    background:
        radial-gradient(ellipse 80% 90% at 0% 0%, rgba(139, 92, 246, 0.12), transparent 55%),
        rgba(12, 14, 26, 0.72);
}

.pricing-page .pricing-plan-row.is-featured {
    z-index: 2;
    border-color: rgba(165, 180, 252, 0.72);
    background:
        radial-gradient(ellipse 100% 70% at 50% 0%, rgba(99, 102, 241, 0.32), transparent 62%),
        rgba(16, 18, 40, 0.94);
    box-shadow:
        0 0 0 1px rgba(129, 140, 248, 0.45),
        0 22px 56px rgba(79, 70, 229, 0.38),
        0 0 90px rgba(99, 102, 241, 0.28);
}

.pricing-page .pricing-plan-row.is-promo {
    border-color: rgba(251, 191, 36, 0.42);
}

.pricing-page .pricing-plan-badges {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    width: max-content;
    max-width: calc(100% - 1.2rem);
    z-index: 2;
}

.pricing-page .pricing-plan-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #eef2ff;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.pricing-page .pricing-plan-badge--value {
    color: #1c1917;
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.pricing-page .pricing-plan-badge--bts {
    color: #1f2937;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.pricing-page .pricing-plan-identity {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    min-width: 0;
}

.pricing-page .pricing-plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    flex-shrink: 0;
    border-radius: 12px;
    font-size: 1rem;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.35);
}

.pricing-page .pricing-plan-row--producer .pricing-plan-icon {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.16);
    border-color: rgba(165, 180, 252, 0.4);
}

.pricing-page .pricing-plan-row--studio .pricing-plan-icon {
    color: #e9d5ff;
    background: rgba(139, 92, 246, 0.16);
    border-color: rgba(216, 180, 254, 0.4);
}

.pricing-page .pricing-plan-copy {
    min-width: 0;
}

.pricing-page .pricing-plan-copy h3 {
    margin: 0 0 0.2rem;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.pricing-page .pricing-plan-copy p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(203, 213, 225, 0.86);
}

.pricing-page .pricing-plan-outcome {
    margin: 1rem 0 0.15rem;
    font-size: 1.02rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: #fff;
}

.pricing-page .pricing-plan-credits {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(203, 213, 225, 0.62);
}

.pricing-page .pricing-plan-priceblock {
    margin-top: 0.35rem;
}

.pricing-page .pricing-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem 0.45rem;
    flex-wrap: wrap;
}

.pricing-page .pricing-plan-price .currency {
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
}

.pricing-page .pricing-plan-price .price-amount {
    font-size: 2.35rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
}

.pricing-page .pricing-plan-price .price-was {
    display: inline-flex;
    align-items: baseline;
    gap: 0.05rem;
    margin-right: 0.15rem;
    font-size: 0.95rem;
    font-weight: 650;
    color: rgba(148, 163, 184, 0.9);
    text-decoration: line-through;
}

.pricing-page .pricing-plan-price .price-was .currency {
    font-size: 0.85rem;
    font-weight: 650;
    color: inherit;
}

.pricing-page .pricing-plan-save {
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 750;
    color: #bbf7d0;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(52, 211, 153, 0.32);
}

.pricing-page .pricing-plan-save--bts {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(251, 191, 36, 0.4);
}

.pricing-page .pricing-plan-unit {
    margin: 0.45rem 0 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: #c7d2fe;
}

.pricing-page .pricing-plan-features {
    list-style: none;
    margin: 1.05rem 0 0;
    padding: 0.95rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.58rem;
    flex: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-page .pricing-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e2e8f0;
}

.pricing-page .pricing-plan-features i {
    margin-top: 0.18rem;
    font-size: 0.72rem;
    color: #34d399;
}

.pricing-page .pricing-plan-row--producer .pricing-plan-features i {
    color: #a5b4fc;
}

.pricing-page .pricing-plan-row--studio .pricing-plan-features i {
    color: #d8b4fe;
}

.pricing-page .pricing-plan-trust {
    display: inline-flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: fit-content;
    max-width: 100%;
    margin: 1.15rem auto 0;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.35;
    text-align: center;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.32);
    box-shadow: none;
}

.pricing-page .pricing-plan-trust i {
    color: #fbbf24;
    font-size: 0.72rem;
}

.pricing-page .pricing-plan-row--producer .pricing-plan-action {
    margin-top: 1.25rem;
}

.pricing-page .pricing-plan-stats {
    list-style: none;
    margin: 0.4rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
}

.pricing-page .pricing-plan-stats li {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.95);
}

.pricing-page .pricing-plan-stats strong {
    color: #e2e8f0;
    font-weight: 700;
}

.pricing-page .pricing-plan-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.pricing-page .pricing-plan-chips li {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-page .pricing-plan-bestfor {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(148, 163, 184, 0.95);
}

.pricing-page .pricing-plan-action {
    width: 100%;
    margin-top: 1.15rem;
}

.pricing-page .pricing-plan-row .btn {
    width: 100%;
    max-width: none;
    border-radius: 12px;
    padding: 0.72rem 1rem;
    font-weight: 700;
}

.pricing-page .pricing-plan-row--starter .btn-primary {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #042f2e;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.28);
}

.pricing-page .pricing-plan-row--producer .btn-primary {
    background: linear-gradient(135deg, #818cf8, #6366f1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.32);
}

.pricing-page .pricing-plan-row--studio .btn-primary {
    background: linear-gradient(135deg, #c084fc, #8b5cf6);
    color: #fff;
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.3);
}

.pricing-page .pricing-plan-row .login-hint {
    margin-top: 0.45rem;
    text-align: center;
    font-size: 0.75rem;
}

.pricing-page .pricing-compare {
    margin-top: 0.35rem;
}

.pricing-page #pricing-compare-heading {
    scroll-margin-top: 5.5rem;
}

.pricing-page .pricing-compare-wrap {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(12, 14, 26, 0.72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    -webkit-overflow-scrolling: touch;
}

.pricing-page .pricing-compare-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    color: #e2e8f0;
}

.pricing-page .pricing-compare-table thead th {
    padding: 1rem 1rem 0.95rem;
    text-align: left;
    vertical-align: bottom;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 20, 0.72);
    position: sticky;
    top: 0;
    z-index: 2;
}

.pricing-page .pricing-compare-table thead th:first-child {
    color: rgba(148, 163, 184, 0.85);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pricing-page .pc-plan-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #f8fafc;
}

.pricing-page .pc-plan-price {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    font-weight: 650;
    color: #a5b4fc;
}

.pricing-page .pc-plan-price-was {
    display: inline-block;
    margin-right: 0.35rem;
    color: rgba(148, 163, 184, 0.85);
    font-weight: 550;
    text-decoration: line-through;
}

.pricing-page .pricing-compare-table tbody th,
.pricing-page .pricing-compare-table tbody td {
    padding: 0.78rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.86rem;
    vertical-align: middle;
}

.pricing-page .pricing-compare-table tbody tr:last-child th,
.pricing-page .pricing-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.pricing-page .pricing-compare-table tbody th[scope="row"] {
    text-align: left;
    font-weight: 650;
    color: #e2e8f0;
    width: 28%;
}

.pricing-page .pc-hint {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
}

.pricing-page .pc-group th {
    padding: 0.85rem 1rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.08);
    border-bottom: 1px solid rgba(129, 140, 248, 0.16);
}

.pricing-page .pricing-compare-table .is-featured {
    background: rgba(99, 102, 241, 0.08);
}

.pricing-page .pricing-compare-table tbody tr:hover td,
.pricing-page .pricing-compare-table tbody tr:hover th[scope="row"] {
    background: rgba(255, 255, 255, 0.025);
}

.pricing-page .pricing-compare-table tbody tr:hover td.is-featured {
    background: rgba(99, 102, 241, 0.12);
}

.pricing-page .pc-yes,
.pricing-page .pc-no,
.pricing-page .pc-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pricing-page .pc-yes {
    color: #34d399;
    font-size: 0.95rem;
}

.pricing-page .pc-no {
    color: rgba(148, 163, 184, 0.45);
    font-size: 0.8rem;
}

.pricing-page .pc-text {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.84rem;
}

.pricing-page .pricing-compare-table th:first-child,
.pricing-page .pricing-compare-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: rgba(12, 14, 26, 0.94);
}

.pricing-page .pricing-compare-table thead th:first-child {
    z-index: 3;
    background: rgba(8, 10, 20, 0.94);
}

.pricing-page .pc-group th {
    position: sticky;
    left: 0;
    z-index: 1;
}

@media (min-width: 981px) {
    .pricing-page .pricing-plan-row.is-featured {
        transform: translateY(-12px) scale(1.045);
    }
}

@media (max-width: 980px) {
    .pricing-page .pricing-plan-list {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin-inline: auto;
    }

    .pricing-page .pricing-plan-row.is-featured {
        transform: none;
        order: -1;
    }
}

@media (max-width: 640px) {
    .pricing-page .pricing-plan-row {
        padding: 1.45rem 1.05rem 1.15rem;
    }

    .pricing-page .pricing-plan-price .price-amount {
        font-size: 2.05rem;
    }

    .pricing-page .pricing-compare-table,
    .pricing-page .pricing-compare-table thead,
    .pricing-page .pricing-compare-table tbody,
    .pricing-page .pricing-compare-table tr,
    .pricing-page .pricing-compare-table th,
    .pricing-page .pricing-compare-table td {
        display: block;
        width: 100%;
        min-width: 0;
        position: static;
    }

    .pricing-page .pricing-compare-table thead {
        display: none;
    }

    .pricing-page .pricing-compare-wrap {
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }

    .pricing-page .pc-group th {
        margin-top: 0.75rem;
        border-radius: 10px 10px 0 0;
    }

    .pricing-page .pricing-compare-table tbody th[scope="row"] {
        width: auto;
        padding-bottom: 0.35rem;
        border-bottom: 0;
        background: rgba(12, 14, 26, 0.72);
        border-radius: 12px 12px 0 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 0;
    }

    .pricing-page .pricing-compare-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        background: rgba(12, 14, 26, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: 0;
        padding: 0.55rem 1rem;
    }

    .pricing-page .pricing-compare-table tbody td:last-child {
        border-radius: 0 0 12px 12px;
        margin-bottom: 0.55rem;
    }

    .pricing-page .pricing-compare-table tbody td::before {
        content: attr(data-plan);
        font-size: 0.75rem;
        font-weight: 700;
        color: #94a3b8;
    }

    .pricing-page .pricing-compare-table .is-featured {
        background: rgba(99, 102, 241, 0.12);
    }
}

body.light-mode .pricing-page .pricing-section-kicker,
html[data-theme="light"] .pricing-page .pricing-section-kicker {
    color: #4f46e5;
}

body.light-mode .pricing-page .pricing-section-head h2,
html[data-theme="light"] .pricing-page .pricing-section-head h2 {
    color: #0f172a;
}

body.light-mode .pricing-page .pricing-section-head p,
html[data-theme="light"] .pricing-page .pricing-section-head p {
    color: #475569;
}

body.light-mode .pricing-page .pricing-section-head a,
html[data-theme="light"] .pricing-page .pricing-section-head a {
    color: #4f46e5;
}

body.light-mode .pricing-page .pricing-plan-row,
html[data-theme="light"] .pricing-page .pricing-plan-row {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

body.light-mode .pricing-page .pricing-plan-row--starter,
html[data-theme="light"] .pricing-page .pricing-plan-row--starter {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.06), #fff 42%);
}

body.light-mode .pricing-page .pricing-plan-row--producer,
html[data-theme="light"] .pricing-page .pricing-plan-row--producer {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08), #fff 42%);
}

body.light-mode .pricing-page .pricing-plan-row--studio,
html[data-theme="light"] .pricing-page .pricing-plan-row--studio {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.08), #fff 42%);
}

body.light-mode .pricing-page .pricing-plan-row.is-promo,
html[data-theme="light"] .pricing-page .pricing-plan-row.is-promo {
    border-color: rgba(217, 119, 6, 0.35);
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.12);
}

body.light-mode .pricing-page .pricing-plan-price .price-was,
html[data-theme="light"] .pricing-page .pricing-plan-price .price-was,
body.light-mode .pricing-page .pc-plan-price-was,
html[data-theme="light"] .pricing-page .pc-plan-price-was {
    color: #94a3b8;
}

body.light-mode .pricing-page .pricing-plan-save--bts,
html[data-theme="light"] .pricing-page .pricing-plan-save--bts {
    color: #92400e;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(217, 119, 6, 0.28);
}

body.light-mode .pricing-page .pricing-plan-copy h3,
html[data-theme="light"] .pricing-page .pricing-plan-copy h3,
body.light-mode .pricing-page .pricing-plan-price .price-amount,
html[data-theme="light"] .pricing-page .pricing-plan-price .price-amount,
body.light-mode .pricing-page .pricing-plan-price .currency,
html[data-theme="light"] .pricing-page .pricing-plan-price .currency,
body.light-mode .pricing-page .pricing-plan-stats strong,
html[data-theme="light"] .pricing-page .pricing-plan-stats strong {
    color: #0f172a;
}

body.light-mode .pricing-page .pricing-plan-copy p,
html[data-theme="light"] .pricing-page .pricing-plan-copy p,
body.light-mode .pricing-page .pricing-plan-stats li,
html[data-theme="light"] .pricing-page .pricing-plan-stats li,
body.light-mode .pricing-page .pricing-plan-bestfor,
html[data-theme="light"] .pricing-page .pricing-plan-bestfor {
    color: #64748b;
}

body.light-mode .pricing-page .pricing-plan-chips li,
html[data-theme="light"] .pricing-page .pricing-plan-chips li {
    color: #1e293b;
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .pricing-page .pricing-compare-wrap,
html[data-theme="light"] .pricing-page .pricing-compare-wrap {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

body.light-mode .pricing-page .pricing-compare-table,
html[data-theme="light"] .pricing-page .pricing-compare-table {
    color: #0f172a;
}

body.light-mode .pricing-page .pricing-compare-table thead th,
html[data-theme="light"] .pricing-page .pricing-compare-table thead th,
body.light-mode .pricing-page .pricing-compare-table th:first-child,
html[data-theme="light"] .pricing-page .pricing-compare-table th:first-child,
body.light-mode .pricing-page .pricing-compare-table td:first-child,
html[data-theme="light"] .pricing-page .pricing-compare-table td:first-child,
body.light-mode .pricing-page .pricing-compare-table thead th:first-child,
html[data-theme="light"] .pricing-page .pricing-compare-table thead th:first-child {
    background: #fff;
}

body.light-mode .pricing-page .pc-plan-name,
html[data-theme="light"] .pricing-page .pc-plan-name,
body.light-mode .pricing-page .pricing-compare-table tbody th[scope="row"],
html[data-theme="light"] .pricing-page .pricing-compare-table tbody th[scope="row"] {
    color: #0f172a;
}

body.light-mode .pricing-page .pc-plan-price,
html[data-theme="light"] .pricing-page .pc-plan-price {
    color: #4f46e5;
}

body.light-mode .pricing-page .pc-text,
html[data-theme="light"] .pricing-page .pc-text {
    color: #334155;
}

body.light-mode .pricing-page .pricing-compare-table .is-featured,
html[data-theme="light"] .pricing-page .pricing-compare-table .is-featured {
    background: rgba(99, 102, 241, 0.06);
}

body.light-mode .pricing-page .pc-group th,
html[data-theme="light"] .pricing-page .pc-group th {
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
}

@media (max-width: 640px) {
    body.light-mode .pricing-page .pricing-compare-table tbody th[scope="row"],
    html[data-theme="light"] .pricing-page .pricing-compare-table tbody th[scope="row"],
    body.light-mode .pricing-page .pricing-compare-table tbody td,
    html[data-theme="light"] .pricing-page .pricing-compare-table tbody td {
        background: #fff;
        border-color: rgba(15, 23, 42, 0.1);
    }
}

.pricing-page .pricing-assurance {
    margin-top: 0.15rem;
    padding: 0.85rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(12, 14, 26, 0.72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.pricing-page .pricing-why {
    margin: 0 0 0.4rem;
}

.pricing-page .pricing-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.pricing-page .pricing-why-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    box-sizing: border-box;
    padding: 1.15rem 1.05rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(ellipse 80% 80% at 0% 0%, rgba(99, 102, 241, 0.14), transparent 58%),
        rgba(12, 14, 26, 0.72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.pricing-page .pricing-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 12px;
    font-size: 1rem;
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.16);
    border: 1px solid rgba(165, 180, 252, 0.4);
    box-shadow: 0 0 18px rgba(99, 102, 241, 0.22);
}

.pricing-page .pricing-why-card--risk .pricing-why-icon {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(251, 191, 36, 0.42);
    box-shadow: 0 0 18px rgba(245, 158, 11, 0.2);
}

.pricing-page .pricing-why-card--ready .pricing-why-icon {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 0 18px rgba(16, 185, 129, 0.18);
}

.pricing-page .pricing-why-card--ai .pricing-why-icon {
    color: #e9d5ff;
    background: rgba(139, 92, 246, 0.16);
    border-color: rgba(216, 180, 254, 0.42);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.22);
}

.pricing-page .pricing-why-card h3 {
    margin: 0;
    min-width: 0;
    flex: 1;
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.pricing-page .pricing-path-head {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-page .pricing-path-head h2 {
    font-size: clamp(1.55rem, 1.4vw + 1.15rem, 2.15rem);
    line-height: 1.15;
}

.pricing-page .pricing-path-lead {
    margin-top: 0.45rem;
    font-size: 1.02rem;
    color: #cbd5e1;
}

.pricing-page .pricing-trust-metrics {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 0 1.75rem;
    padding: 0;
}

.pricing-page .pricing-trust-metrics li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.84rem;
    font-weight: 700;
    color: #e2e8f0;
}

.pricing-page .pricing-trust-metrics i {
    color: #a5b4fc;
    font-size: 0.82rem;
}

.pricing-page .pricing-compare-jump {
    margin: 1.15rem 0 0;
    text-align: center;
    font-size: 0.88rem;
}

.pricing-page .pricing-compare-jump a {
    color: #a5b4fc;
    font-weight: 700;
    text-decoration: none;
}

.pricing-page .pricing-compare-jump a:hover {
    text-decoration: underline;
}

.pricing-page .pricing-assurance-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem 1.1rem;
}

.pricing-page .pricing-assurance-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    line-height: 1.35;
    font-weight: 600;
    color: #cbd5e1;
}

.pricing-page .pricing-assurance-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    flex-shrink: 0;
    border-radius: 8px;
    font-size: 0.72rem;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

@media (max-width: 980px) {
    .pricing-page .pricing-why-grid,
    .pricing-page .pricing-assurance-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pricing-page .pricing-why-grid,
    .pricing-page .pricing-assurance-list {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .pricing-page .pricing-assurance {
        padding: 0.8rem 0.9rem;
    }

    .pricing-page .pricing-path-head,
    .pricing-page .pricing-trust-metrics {
        text-align: left;
        justify-content: flex-start;
    }
}

body.light-mode .pricing-page .pricing-assurance,
html[data-theme="light"] .pricing-page .pricing-assurance {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

body.light-mode .pricing-page .pricing-assurance-list li,
html[data-theme="light"] .pricing-page .pricing-assurance-list li {
    color: #334155;
}

body.light-mode .pricing-page .pricing-why-card,
html[data-theme="light"] .pricing-page .pricing-why-card {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

body.light-mode .pricing-page .pricing-why-card h3,
html[data-theme="light"] .pricing-page .pricing-why-card h3,
body.light-mode .pricing-page .pricing-plan-outcome,
html[data-theme="light"] .pricing-page .pricing-plan-outcome,
body.light-mode .pricing-page .pricing-plan-features li,
html[data-theme="light"] .pricing-page .pricing-plan-features li,
body.light-mode .pricing-page .pricing-trust-metrics li,
html[data-theme="light"] .pricing-page .pricing-trust-metrics li {
    color: #0f172a;
}

body.light-mode .pricing-page .pricing-plan-credits,
html[data-theme="light"] .pricing-page .pricing-plan-credits {
    color: #64748b;
}

body.light-mode .pricing-page .pricing-path-lead,
html[data-theme="light"] .pricing-page .pricing-path-lead,
body.light-mode .pricing-page .pricing-plan-unit,
html[data-theme="light"] .pricing-page .pricing-plan-unit {
    color: #475569;
}

body.light-mode .pricing-page .pricing-plan-trust,
html[data-theme="light"] .pricing-page .pricing-plan-trust {
    color: #92400e;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(217, 119, 6, 0.28);
    box-shadow: none;
}

body.light-mode .pricing-page .pricing-plan-trust i,
html[data-theme="light"] .pricing-page .pricing-plan-trust i {
    color: #d97706;
}

body.light-mode .pricing-page .pricing-trust-metrics li,
html[data-theme="light"] .pricing-page .pricing-trust-metrics li {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .pricing-page .pricing-plan-row.is-featured,
html[data-theme="light"] .pricing-page .pricing-plan-row.is-featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.14), #fff 46%);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.2),
        0 22px 48px rgba(79, 70, 229, 0.16);
}
