/* EarnTime Theme Overrides */

.earntime-theme {
    --primary: #007AFF;
    --primary-dark: #0056CC;
}

.earntime-theme .gradient-text {
    background: linear-gradient(135deg, #007AFF, #5856D6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.earntime-theme .section-badge {
    background: linear-gradient(135deg, #007AFF, #5856D6);
}

.earntime-theme .btn-primary {
    background: #007AFF;
}

.earntime-theme .btn-primary:hover {
    background: #0056CC;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}

.earntime-theme .hero-bg {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(88, 86, 214, 0.05));
}

.earntime-theme .download {
    background: linear-gradient(135deg, #007AFF, #5856D6);
}

.earntime-theme .step-number {
    background: #007AFF;
}

/* App Switcher */
.app-switcher {
    margin-right: 16px;
}

.app-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--background-secondary);
    border-radius: 100px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.app-switch-btn:hover {
    background: var(--border);
    transform: scale(1.02);
}

/* Pricing Section */
.pricing {
    background: var(--background-secondary);
}

.price-card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Also Try Section */
.also-try {
    padding: 80px 0;
}

.also-try-card {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.also-try-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.also-try-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #FF9500;
}

.also-try-content p {
    margin-bottom: 20px;
}

/* Steps with content */
.step-content {
    text-align: left;
}

.step-content h3 {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .app-switcher {
        display: none;
    }
    
    .also-try-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
}
