/* ===== SUBSCRIPTION SUCCESS PAGE ===== */
.subscription-success {
    background: rgba(0, 123, 255, 0.05);
    border: 2px solid #007bff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    animation: fadeIn 0.5s ease;
}

.success-header {
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-header h3 {
    color: var(--text);
    font-size: 2rem;
    margin-bottom: 10px;
}

.success-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Subscription Details Grid */
.subscription-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.detail-card.important {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.05);
    grid-column: 1 / -1;
}

.detail-card h4 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.detail-grid {
    display: grid;
    gap: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

/* Timeline */
.timeline {
    margin-top: 15px;
}

.timeline-step {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 32px;
    bottom: -22px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-step:last-child::after {
    display: none;
}

.step-number {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-step.active .step-number {
    background: #007bff;
    color: white;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 1rem;
}

.step-content p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✅';
    margin-right: 10px;
}

/* Contact Info */
.contact-info {
    margin-top: 15px;
}

.contact-links {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(0, 123, 255, 0.2);
    transform: translateY(-2px);
}

.response-time {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 10px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 25px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123,