/* templates/css/stripe.css - Clean payment page styling */


/* templates/css/stripe.css - Clean payment page styling */
/* Shared Header, Navigation, and Footer Styles 
*/

/* Header positioning and navigation */
/* stripe.css - Clean payment page styling */
/* stripe.css - Scoped styles for payment pages */

.upgrade-container {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.upgrade-container h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.upgrade-container p {
    color: #666;
}

.founder-badge {
    background: #fef3c7;
    color: #92400e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-box {
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.pricing-box h2 {
    margin: 0;
    font-size: 2.5rem;
}

.pricing-box h2 span {
    font-size: 1.2rem;
    color: #666;
}

.lifetime-lock {
    color: #059669;
    font-weight: 600;
    margin: 0.5rem 0 1.5rem;
}

.feature-list {
    text-align: left;
    margin: 2rem auto;
    max-width: 400px;
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.btn-stripe {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    transition: background 0.2s;
}

.btn-stripe:hover {
    background: #2563eb;
}

.guarantee-text {
    color: #666;
    font-size: 13px;
    margin-top: 1.5rem;
    line-height: 1.8;
}

.alert-box {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}