@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-green: #5CB85C;
    --primary-green-hover: #4CAF50;
    --primary-red: #DC3545;
    --primary-red-hover: #C82333;
    
    --bg-color: #F8F9FA;
    --sidebar-bg: #2C3E50;
    --sidebar-hover: #34495E;
    --card-bg: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --border-color: #DEE2E6;
    
    --discord-color: #5865F2;
    --discord-hover: #4752C4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-primary);
}

/* ========================================
   LOGIN PAGE - SPLIT SCREEN DESIGN
======================================== */

.btn-large {
    width: 100%;
}

.login-split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-left {
    flex: 1;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(92,184,92,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.login-logo-container {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.login-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(92, 184, 92, 0.3));
}

.login-tagline {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    max-width: 500px;
}

.login-right {
    flex: 1;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.go-home-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.go-home-btn:hover {
    background: var(--bg-color);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.login-card-container {
    max-width: 480px;
    width: 100%;
    margin-top: 40px;
}

.login-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px 40px;
    border: 2px solid var(--border-color);
}

.login-card h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.login-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-discord-login {
    width: 100%;
    background: var(--primary-green);
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.btn-discord-login:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
}

.btn-discord-login svg {
    width: 24px;
    height: 24px;
}

.login-terms {
    text-align: center;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-secondary);
}

.login-terms a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.login-terms a:hover {
    text-decoration: underline;
}

/* ========================================
   DASHBOARD LAYOUT
======================================== */

.dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 250px;
    background: var(--sidebar-bg);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-logo {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar-logo img {
    max-width: 60px; /* ✅ FIX 1: Reduced from 160px to 60px */
    width: 100%;
    height: auto;
}

.sidebar-menu {
    flex: 1;
    padding: 20px 0;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu-item:hover {
    background: var(--sidebar-hover);
    color: #FFFFFF;
    border-left-color: var(--primary-green);
}

.sidebar-menu-item.active {
    background: var(--sidebar-hover);
    color: #FFFFFF;
    border-left-color: var(--primary-green);
}

.sidebar-menu-item svg {
    width: 20px;
    height: 20px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 20px;
    z-index: 1001;
    background: var(--primary-green);
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 250px;
    background: var(--bg-color);
    min-height: 100vh;
}

/* Top Bar */
.top-bar {
    background: #FFFFFF;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ✅ FIX 4: Updated topbar logout button */
.topbar-logout-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-logout-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.topbar-logout-btn svg {
    width: 16px;
    height: 16px;
}

/* Content Area */
.content-area {
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto; /* ✅ FIX 3: Centered content */
}

/* Welcome Header */
.welcome-header {
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 30px 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.welcome-user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* ✅ FIX 6: Removed border */
}

.welcome-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.welcome-details {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
}

.btn-contact-support {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-support:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Cards */
.dashboard-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Subscription Card */
.subscription-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: var(--bg-color);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.subscription-details {
    flex: 1;
}

.subscription-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(92, 184, 92, 0.15);
    color: var(--primary-green);
}

.status-inactive {
    background: rgba(220, 53, 69, 0.15);
    color: var(--primary-red);
}

.subscription-price {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.subscription-renewal {
    font-size: 13px;
    color: var(--text-secondary);
}

.subscription-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex; /* ✅ FIX 8: Changed to inline-flex */
    align-items: center; /* ✅ FIX 8: Better alignment */
    justify-content: center;
    gap: 8px; /* ✅ FIX 8: Consistent gap */
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn svg {
    width: 18px; /* ✅ FIX 8: Consistent icon size */
    height: 18px;
}

.btn-primary {
    background: var(--primary-green);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--primary-red);
    color: #FFFFFF;
}

.btn-danger:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-logout {
    width: 100%;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

/* Alert */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
    border-color: rgba(255, 193, 7, 0.5);
}

.alert-success {
    background: rgba(92, 184, 92, 0.15);
    color: #155724;
    border-color: rgba(92, 184, 92, 0.5);
}

.alert-info {
    background: rgba(23, 162, 184, 0.15);
    color: #0c5460;
    border-color: rgba(23, 162, 184, 0.5);
}

.alert-error {
    background: rgba(220, 53, 69, 0.15);
    color: #721c24;
    border-color: rgba(220, 53, 69, 0.5);
}

/* Contact Support Page */
.contact-support-card {
    max-width: 800px;
    margin: 0 auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.support-option {
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.support-option:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
}

.support-option svg {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.support-option h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.support-option p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    width: 18px; /* ✅ FIX 8: Adjusted size */
    height: 18px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ✅ FIX 7: Custom Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-header svg {
    width: 32px;
    height: 32px;
    color: var(--primary-red);
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-body {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-actions .btn {
    min-width: 120px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .content-area {
        padding: 30px;
    }
    
    .welcome-header {
        padding: 24px 30px;
    }
}

@media (max-width: 768px) {
    /* Login Page Mobile - Login Above Fold */
    .login-split-container {
        flex-direction: column;
    }
    
    .login-right {
        min-height: 100vh;
        padding: 40px 20px;
    }
    
    .login-left {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .login-logo {
        max-width: 280px;
    }
    
    .login-tagline {
        font-size: 20px;
    }
    
    .login-card {
        padding: 40px 24px;
    }
    
    .go-home-btn {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Dashboard Mobile */
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-bar {
        padding: 16px 16px 16px 20px;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .welcome-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    
    .welcome-user-info {        
        align-items: flex-start;
        width: 100%;
    }
    
    .welcome-details {        
        align-items: flex-start;
        gap: 8px;
    }
    
    .subscription-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .subscription-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .subscription-actions .btn {
        width: 100%;
    }
    
    .btn-contact-support {
        width: 100%;
        text-align: center;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 24px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .login-card h1 {
        font-size: 24px;
    }
    
    .login-card-description {
        font-size: 14px;
    }
    
    .welcome-text h1 {
        font-size: 18px;
    }

    .verified-badge{
       display: none;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
}

/* Overlay for mobile menu */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* ========================================
   CHECKOUT PAGE - EXACT LAYOUT
======================================== */

/* Black Top Bar */
.checkout-top-bar {
    background: #000000;
    padding: 16px 0;
}

.checkout-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-top-logo {
    height: 100px;
    width: auto;
}

.checkout-top-signin {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.checkout-top-signin:hover {
    color: var(--primary-green-hover);
}

/* Main Checkout Wrapper */
.checkout-main-wrapper {
    background: #F9FAFB;
    padding: 48px 0 80px 0;
}

.checkout-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Two Column Layout */
.checkout-two-column {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
}

/* Left Column */
.checkout-left-column {
    max-width: 680px;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    background: #FFFFFF;
}

.checkout-main-heading {
    font-size: 30px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 32px;
    line-height: 1.2;
}

.checkout-hero-image {
    margin-bottom: 32px;
}

/* Limited Spots Box */
.limited-spots-box {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 2px solid #FB923C;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
}

.limited-spots-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.limited-spots-text strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #9A3412;
    margin-bottom: 8px;
}

.limited-spots-text p {
    font-size: 14px;
    color: #9A3412;
    line-height: 1.6;
    margin: 0;
}

/* Section Heading */
.checkout-section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

/* Benefits List */
.checkout-benefits-list {
    margin-bottom: 40px;
}

.checkout-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    margin-bottom: 12px;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-details strong {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
}

.benefit-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(92, 184, 92, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
}

/* Guarantee Box */
.checkout-guarantee-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 24px;
}

.guarantee-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.guarantee-content p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.7;
    margin: 0;
}

/* Right Column - Pricing Card */
.checkout-right-column {
    position: relative;
}

.checkout-pricing-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;

}

.pricing-total-value {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 12px;
}

.value-strikethrough {
    font-size: 20px;
    font-weight: 700;
    color: #9CA3AF;
    text-decoration: line-through;
}

.pricing-main-price {
    text-align: center;
    margin-bottom: 8px;
}

.price-dollar {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    vertical-align: top;
}

.price-number {
    font-size: 72px;
    font-weight: 800;
    color: #1F2937;
    line-height: 1;
}

.price-period {
    font-size: 20px;
    font-weight: 600;
    color: #6B7280;
}

.pricing-lock-text {
    text-align: center;
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
    margin: 0 0 24px 0;
}

/* Trial Info Box */
.trial-info-box {
    display: flex;
    gap: 12px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.trial-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.trial-info-box strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.trial-info-box p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Consent Checkbox */
.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

.consent-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-text {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
}

.consent-text a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.consent-text a:hover {
    text-decoration: underline;
}

/* CTA Button */
.checkout-cta-button {
    width: 100%;
    background: var(--primary-green);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.checkout-cta-button:hover:not(:disabled) {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.3);
}

.checkout-cta-button:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
}

.secure-stripe-text {
    text-align: center;
    font-size: 12px;
    color: #6B7280;
    margin-top: 16px;
}

.guarantee-badge-mini {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

/* Earnings Disclaimer Card */
.earnings-disclaimer-card {
    background: #FFFBEB;
    border: 1px solid #FDE047;
    border-radius: 12px;
    padding: 20px;
}

.earnings-disclaimer-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 12px;
}

.earnings-disclaimer-card p {
    font-size: 12px;
    color: #92400E;
    line-height: 1.7;
    margin-bottom: 12px;
}

.earnings-disclaimer-card p:last-child {
    margin-bottom: 0;
}

/* Footer */
.checkout-footer {
    background: #1F2937;
    padding: 32px 0;
}

.checkout-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.checkout-footer-container p {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: #D1D5DB;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1024px) {
    .checkout-two-column {
        grid-template-columns: 1fr;
    }

    .checkout-pricing-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-main-heading {
        font-size: 28px;
    }

    .checkout-section-heading {
        font-size: 20px;
    }

    .price-number {
        font-size: 56px;
    }

    .limited-spots-box {
        flex-direction: column;
    }

    .checkout-guarantee-box {
        flex-direction: column;
    }

    .limited-spots-icon,
    .guarantee-icon,
    .limited-spots-text,
    .guarantee-content{
            text-align: center;
    }

    .checkout-left-column{
        order: 2;
    }

    .checkout-benefit-item{
        align-items: start;
    }

    .benefit-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .checkout-top-container {
        padding: 0 16px;
    }

    .checkout-main-container {
        padding: 0 16px;
    }

    .checkout-main-heading {
        font-size: 24px;
    }

    .price-number {
        font-size: 48px;
    }

    .checkout-pricing-card {
        padding: 24px;
    }
}

/* ========================================
   LOGIN/AUTH FORM STYLES
======================================== */

.login-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.forgot-password-link {
    font-size: 14px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

/* ========================================
   DISCORD CONNECT CARD
======================================== */

.discord-connect-card {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.05) 0%, rgba(92, 184, 92, 0.1) 100%);
    border: 2px solid var(--primary-green);
}

/* ========================================
   RESPONSIVE - CHECKOUT PAGE
======================================== */

@media (max-width: 1024px) {
    .checkout-grid {
        gap: 40px;
    }

    .checkout-title {
        font-size: 36px;
    }

    .price-amount {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .checkout-content {
        padding: 40px 0;
    }

    .checkout-content .container {
        padding: 0 20px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-benefits {
        position: static;
    }

    .checkout-form-container {
        position: static;
    }

    .checkout-title {
        font-size: 32px;
    }

    .checkout-subtitle {
        font-size: 16px;
    }

    .trial-info-box {
        padding: 24px;
    }

    .price-amount {
        font-size: 42px;
    }

    .checkout-card {
        padding: 32px 24px;
    }

    .benefits-list li {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .checkout-header .container {
        padding: 0 20px;
    }

    .checkout-logo {
        height: 40px;
    }

    .checkout-title {
        font-size: 28px;
    }

    .price-amount {
        font-size: 36px;
    }

    .checkout-card h2 {
        font-size: 24px;
    }
}

/* ========================================
   UPDATED CHECKOUT PAGE STYLES
======================================== */

/* Hero Section */
.checkout-hero {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-main-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.checkout-main-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Founding Member Notice */
.founding-member-notice {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 50px;
    color: #FFFFFF;
    border: 2px solid var(--primary-green);
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
}

.notice-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.notice-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

.notice-content strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* Value Box */
.value-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
    border: 3px solid var(--primary-green);
}

.value-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.value-badge {
    display: inline-block;
    background: var(--primary-green);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.value-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #FFFFFF;
}

.value-price .price-amount {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.value-price .price-period {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.founder-rate-badge {
    display: inline-block;
    background: rgba(92, 184, 92, 0.2);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid var(--primary-green);
}

/* Detailed Benefits List */
.benefits-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.benefits-list-detailed li {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.benefits-list-detailed li:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(92, 184, 92, 0.15);
}

.benefits-list-detailed li.bonus-item {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.05) 0%, rgba(92, 184, 92, 0.1) 100%);
    border-color: var(--primary-green);
}

.benefit-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 184, 92, 0.1);
    border-radius: 50%;
}

.benefit-content {
    flex: 1;
}

.benefit-content strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefit-value {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    background: rgba(92, 184, 92, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee-section {
    margin-top: 40px;
}

.guarantee-badge-large {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.05) 0%, rgba(92, 184, 92, 0.15) 100%);
    border: 3px solid var(--primary-green);
    border-radius: 16px;
}

.guarantee-badge-large svg {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.guarantee-badge-large h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.guarantee-badge-large p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Trial Reminder */
.trial-reminder {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(92, 184, 92, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    margin-bottom: 24px;
}

.trial-reminder svg {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.trial-reminder strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.trial-reminder p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Legal Consent Form */
.legal-consent-form {
    margin-top: 24px;
}

.consent-section {
    margin-bottom: 24px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.consent-checkbox:hover {
    border-color: var(--primary-green);
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.consent-text a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: var(--primary-green-hover);
}

/* Earnings Disclaimer Box */
.earnings-disclaimer-box {
    background: #FFF9E6;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.earnings-disclaimer-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 12px;
}

.earnings-disclaimer-box p {
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
    margin-bottom: 12px;
}

.earnings-disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Money Back Guarantee Mini */
.money-back-guarantee-mini {
    text-align: center;
    padding: 16px;
    background: rgba(92, 184, 92, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.money-back-guarantee-mini strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.money-back-guarantee-mini p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

/* Button Disabled State */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

/* ========================================
   RESPONSIVE - UPDATED CHECKOUT
======================================== */

@media (max-width: 768px) {
    .checkout-main-title {
        font-size: 32px;
    }

    .checkout-main-subtitle {
        font-size: 18px;
    }

    .founding-member-notice {
        flex-direction: column;
        padding: 24px;
    }

    .notice-icon svg {
        width: 36px;
        height: 36px;
    }

    .notice-content h3 {
        font-size: 20px;
    }

    .notice-content p {
        font-size: 15px;
    }

    .value-price .price-amount {
        font-size: 56px;
    }

    .value-price .price-period {
        font-size: 20px;
    }

    .benefit-content strong {
        font-size: 16px;
    }

    .guarantee-badge-large {
        flex-direction: column;
        padding: 24px;
    }

    .guarantee-badge-large h3 {
        font-size: 20px;
    }

    .guarantee-badge-large p {
        font-size: 15px;
    }

    .benefits-list-detailed li {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .checkout-main-title {
        font-size: 28px;
    }

    .checkout-main-subtitle {
        font-size: 16px;
    }

    .value-price .price-amount {
        font-size: 48px;
    }

    .founding-member-notice {
        padding: 20px;
    }

    .value-box {
        padding: 24px;
    }

    .benefit-content strong {
        font-size: 15px;
    }

    .earnings-disclaimer-box {
        padding: 16px;
    }

    .earnings-disclaimer-box p {
        font-size: 12px;
    }
}

/* ========================================
   POLICY PAGES
======================================== */

.policy-page {
    min-height: 100vh;
    background: var(--bg-color);
    padding: 60px 20px;
}

.policy-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    background: #FFFFFF;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
}

.policy-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content em {
    color: var(--text-secondary);
    font-size: 14px;
}

.policy-content a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 24px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content p {
        font-size: 15px;
    }
}

/* ========================================
   SUCCESS PAGE
======================================== */

.success-page-wrapper {
    background: #F9FAFB;
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.success-card {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
}

.success-card h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 12px;
}

.success-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
}

.success-info-box {
    background: #F0FDF4;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    text-align: left;
}

.success-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    text-align: center;
}

.success-info-box > p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 24px;
    text-align: center;
}

.email-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-step strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 6px;
}

.email-step p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.success-actions {
    margin-bottom: 32px;
}

.success-actions .btn {
    min-width: 250px;
}

.success-help {
    background: #FFFBEB;
    border: 1px solid #FDE047;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 32px;
}

.success-help p {
    font-size: 15px;
    color: #92400E;
    margin-bottom: 8px;
}

.success-help p:last-of-type {
    margin-bottom: 12px;
}

.support-email-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
}

.support-email-link:hover {
    text-decoration: underline;
}

.next-steps-box {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
}

.next-steps-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.next-steps-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps-box li {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.next-steps-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* ========================================
   POLICY PAGES
======================================== */

.policy-page-wrapper {
    background: #F9FAFB;
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.policy-content {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 48px;
}

.policy-content h1 {
    font-size: 30px;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 8px;
}

.policy-date {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 32px;
}

.policy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-top: 32px;
    margin-bottom: 16px;
}

.policy-content p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-back-link {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.policy-back-link a {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
}

.policy-back-link a:hover {
    text-decoration: underline;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .success-card {
        padding: 32px 24px;
    }

    .success-card h1 {
        font-size: 26px;
    }

    .success-subtitle {
        font-size: 16px;
    }

    .success-info-box {
        padding: 24px;
    }

    .policy-content {
        padding: 32px 24px;
    }

    .policy-content h1 {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 20px;
    }

    .policy-content p {
        font-size: 15px;
    }
}

/* ========================================
   DASHBOARD FOOTER
======================================== */

.dashboard-footer {
    margin-top: 60px;
    padding: 32px 0;
    border-top: 2px solid var(--border-color);
}

.dashboard-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
}

.dashboard-footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.dashboard-footer-links a:hover {
    color: var(--primary-green);
}

.dashboard-footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Change Password Form */
.change-password-form {
    max-width: 500px;
}

.change-password-form .form-group {
    margin-bottom: 20px;
}

.change-password-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.change-password-form .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.change-password-form .form-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.change-password-form small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .dashboard-footer-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* Change Password Page Card */
.change-password-page-card {
    max-width: 800px;
    margin: 0 auto;
}

.video-checkout{
    margin-bottom:30px;
    height: 200px;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}



/* Urgency Countdown Timer */
.urgency-timer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--primary-green);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.timer-icon {
    font-size: 32px;
    flex-shrink: 0;
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.timer-content {
    flex: 1;
}

.timer-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    font-family: 'Montserrat', monospace;
    min-width: 45px;
    text-align: center;
}

.timer-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 4px;
}

.timer-colon {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 4px;
}

/* Timer Expired State */
.urgency-timer.expired {
    background: #6B7280;
}

.urgency-timer.expired .timer-icon {
    animation: none;
}

.pricing-was-price{
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
}

.mobile-program-title {
    display: none;
}

@media (max-width: 768px) {
    .mobile-program-title {
        display: block;
        font-size: 21px;
        font-weight: 700;
        color: #1F2937;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.3;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .urgency-timer {
        padding: 16px;
    }
    
    .timer-number {
        font-size: 28px;
        min-width: 40px;
    }
    
    .timer-colon {
        font-size: 24px;
    }
    
    .timer-icon {
        font-size: 28px;
    }
}

/* Hide mobile duplicate on desktop */
.mobile-disclaimer-only {
    display: none;
    margin-top: 24px;
}

/* On mobile: hide the original inside right column, show the bottom one */
@media (max-width: 1024px) {
    .checkout-right-column .earnings-disclaimer-card:not(.mobile-disclaimer-only) {
        display: none;
    }

    .mobile-disclaimer-only {
        display: block;
    }
}