.support-page {
    background: #f8fafc;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* === HERO === */
.support-hero {
    position: relative;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
    padding: 60px 0 100px;
    overflow: hidden;
}

.support-hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.support-hero-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.support-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.support-hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.support-hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.support-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary, .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: #fff;
    color: #0f766e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: #0f766e;
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.support-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.support-hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* === CONTENT === */
.support-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

/* === QUICK ACTIONS === */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: -50px;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.quick-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(20,184,166,0.15);
    border-color: #14b8a6;
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-action-icon.bug { background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #dc2626; }
.quick-action-icon.question { background: linear-gradient(135deg, #eff6ff, #dbeafe); color: #2563eb; }
.quick-action-icon.feature { background: linear-gradient(135deg, #fefce8, #fef08a); color: #ca8a04; }
.quick-action-icon.payment { background: linear-gradient(135deg, #f0fdf4, #dcfce7); color: #16a34a; }

.quick-action-text {
    flex: 1;
    min-width: 0;
}

.quick-action-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px;
}

.quick-action-text p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.quick-action-arrow {
    color: #d1d5db;
    transition: all 0.3s;
}

.quick-action-card:hover .quick-action-arrow {
    color: #14b8a6;
    transform: translateX(3px);
}

/* === SECTION CARD === */
.section-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #0f766e;
}

.section-icon.faq {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #b45309;
}

.section-title h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.section-title p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 2px 0 0;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #14b8a6;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s;
}

.section-link:hover {
    gap: 10px;
    color: #0f766e;
}

/* === TICKETS MINI === */
.tickets-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f9fafb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    position: relative;
    border: 1px solid transparent;
}

.ticket-mini:hover {
    background: #f0fdfa;
    border-color: #99f6e4;
}

.ticket-mini.unread {
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
    border-color: #5eead4;
}

.ticket-mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ticket-mini-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-mini-number {
    font-weight: 700;
    color: #6b7280;
    font-size: 0.8rem;
}

.ticket-mini-subject {
    color: #111827;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-mini-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ticket-mini-date {
    font-size: 0.75rem;
    color: #9ca3af;
}

.ticket-mini-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.ticket-mini-new {
    position: absolute;
    top: -6px;
    right: 12px;
    background: #14b8a6;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
}

/* === FAQ === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-color: #14b8a6;
    background: #f0fdfa;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}

.faq-question:hover { color: #0f766e; }

.faq-question i {
    color: #9ca3af;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    color: #14b8a6;
}

.faq-answer {
    padding: 0 20px 16px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* === CONTACT === */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}

.contact-text {
    flex: 1;
    position: relative;
}

.contact-text h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.contact-text p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.9rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0f766e;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: #0f766e;
}

/* === BETA === */
.beta-notice {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    border: 1px solid #fcd34d;
    align-items: center;
}

.beta-icon {
    width: 44px;
    height: 44px;
    background: rgba(180,83,9,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #b45309;
    flex-shrink: 0;
}

.beta-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 4px;
}

.beta-text p {
    color: #a16207;
    margin: 0;
    font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .support-hero { padding: 50px 0 80px; }
    .support-hero-title { font-size: 1.8rem; }
    .support-hero-subtitle { font-size: 1rem; }
    .support-hero-actions { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    
    .quick-actions { grid-template-columns: 1fr; margin-top: -40px; }
    
    .section-card { padding: 20px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    
    .ticket-mini { flex-wrap: wrap; }
    .ticket-mini-info { width: 100%; order: 1; }
    .ticket-mini-dot { order: 0; }
    .ticket-mini-meta { order: 2; width: 100%; justify-content: space-between; margin-top: 8px; }
    
    .contact-card { flex-direction: column; text-align: center; padding: 24px; }
    .btn-contact { width: 100%; justify-content: center; }
    
    .beta-notice { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .support-hero-title { font-size: 1.5rem; }
    .support-hero-badge { font-size: 0.8rem; padding: 6px 14px; }
    .quick-action-card { padding: 16px; }
    .quick-action-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .quick-action-text h3 { font-size: 0.9rem; }
}
