/**
 * ==============================================
 * Support Module - Combined CSS
 * All styles scoped under .support-page to
 * prevent conflicts with the main site.
 * ==============================================
 */

/* ══════════════════════════════════════════════
   1. CSS Variables (scoped to .support-page)
   ══════════════════════════════════════════════ */
.support-page {
    /* ── Colors: Background ── */
    --bg-primary: #0a0e17;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(23, 33, 54, 0.85);

    /* ── Colors: Accent ── */
    --accent-blue: #3b82f6;
    --accent-cyan: #22d3ee;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;

    /* ── Colors: Text ── */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;

    /* ── Gradients ── */
    --gradient-main: linear-gradient(135deg, #3b82f6, #22d3ee);
    --gradient-card: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(15, 23, 42, 0.6));

    /* ── Borders ── */
    --border-color: rgba(59, 130, 246, 0.08);
    --border-hover: rgba(59, 130, 246, 0.2);

    /* ── Shadows ── */
    --shadow-glow: 0 4px 20px rgba(59, 130, 246, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --accent-blue-glow: rgba(59, 130, 246, 0.25);
    --accent-red-glow: rgba(239, 68, 68, 0.15);
    --accent-yellow-glow: rgba(245, 158, 11, 0.15);
    --accent-green-glow: rgba(16, 185, 129, 0.15);

    /* ── Typography ── */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* ── Spacing & Layout ── */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* ── Transitions ── */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════
   2. Base Styles (scoped)
   ══════════════════════════════════════════════ */

/* ── Container ── */
.support-page .support-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Common ── */
.support-page .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.support-page .section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.support-page .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-page .section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   3. Hero Section
   ══════════════════════════════════════════════ */

.support-page .support-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
}

/* ── Background Effects ── */
.support-page .hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.support-page .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: supportOrbFloat 15s infinite ease-in-out;
}

.support-page .hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.support-page .hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.support-page .hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

.support-page .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ── Hero Content ── */
.support-page .hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.support-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: supportFadeInUp 0.8s ease both;
}

.support-page .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
    animation: supportFadeInUp 0.8s ease 0.15s both;
}

.support-page .text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-page .hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.8;
    animation: supportFadeInUp 0.8s ease 0.3s both;
}

.support-page .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--gradient-main);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--accent-blue-glow);
    animation: supportFadeInUp 0.8s ease 0.45s both;
}

.support-page .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--accent-blue-glow);
    color: white;
}

.support-page .hero-cta svg {
    animation: supportBounceDown 2s infinite;
}

/* ── Scroll Indicator ── */
.support-page .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: supportFadeInUp 0.8s ease 0.8s both;
}

.support-page .scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
    opacity: 0.5;
}

.support-page .scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: supportScrollDot 2s infinite;
}

/* ══════════════════════════════════════════════
   4. Tabs Component
   ══════════════════════════════════════════════ */

/* ── Tab Container ── */
.support-page .tabs-container {
    margin-bottom: 48px;
}

.support-page .tabs-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 6px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 680px;
    margin: 0 auto;
}

/* ── Individual Tab Button ── */
.support-page .tab-btn {
    position: relative;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 22px;
    background: none;
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-page .tab-btn:hover {
    color: var(--text-primary);
    background: rgba(59, 130, 246, 0.06);
}

.support-page .tab-btn.active {
    color: white;
    background: var(--gradient-main);
    border-color: transparent;
    box-shadow: 0 4px 16px var(--accent-blue-glow);
}

/* ── Tab Icon ── */
.support-page .tab-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-page .tab-icon svg {
    width: 14px;
    height: 14px;
}

/* ── Tab Content Areas ── */
.support-page .tab-content {
    display: none;
    animation: supportTabFadeIn 0.4s ease;
}

.support-page .tab-content.active {
    display: block;
}

@keyframes supportTabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Platform Badge ── */
.support-page .platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.support-page .platform-badge--steam {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
}

.support-page .platform-badge--ubisoft {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.support-page .platform-badge--rockstar {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent-yellow);
}

.support-page .platform-badge--ea {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

/* ══════════════════════════════════════════════
   5. Steps Section
   ══════════════════════════════════════════════ */

.support-page .steps-section {
    padding: 100px 0 60px;
    position: relative;
}

/* ── Step Card Layout ── */
.support-page .step-card {
    display: flex;
    gap: 28px;
    margin-bottom: 20px;
    position: relative;
}

/* ── Step Number & Timeline ── */
.support-page .step-number-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.support-page .step-number {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-cyan);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.support-page .step-card:hover .step-number {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-blue-glow);
}

.support-page .step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--border-color), transparent);
    margin-top: 8px;
}

/* ── Step Content Card ── */
.support-page .step-content {
    flex: 1;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    margin-bottom: 24px;
}

.support-page .step-content:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateX(4px);
}

/* ── Step Icon ── */
.support-page .step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.support-page .step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
}

.support-page .step-icon-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.support-page .step-icon-success svg {
    color: var(--accent-green);
}

/* ── Step Text ── */
.support-page .step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.support-page .step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.support-page .step-desc:last-child {
    margin-bottom: 0;
}

/* ── Step Callouts ── */
.support-page .step-tip,
.support-page .step-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-top: 16px;
}

.support-page .step-tip {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
}

.support-page .step-tip svg {
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.support-page .step-warning {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.support-page .step-warning svg {
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Credentials Box ── */
.support-page .step-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-color);
    margin-top: 16px;
}

.support-page .credential-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.support-page .credential-item:first-child {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.support-page .credential-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.support-page .credential-value {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

/* ── Step Image ── */
.support-page .step-image {
    margin-top: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.support-page .step-image:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.support-page .step-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* Lightbox overlay for zoomed images */
.step-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.step-image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.step-image-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.25);
}

/* ══════════════════════════════════════════════
   6. Notes Section
   ══════════════════════════════════════════════ */

.support-page .notes-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.5), transparent);
}

.support-page .notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ── Note Card Base ── */
.support-page .note-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.support-page .note-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ── Note Card Variants ── */
.support-page .note-card[data-type="danger"] {
    border-color: rgba(239, 68, 68, 0.15);
}
.support-page .note-card[data-type="danger"]:hover {
    box-shadow: 0 8px 30px var(--accent-red-glow);
    border-color: rgba(239, 68, 68, 0.3);
}
.support-page .note-card[data-type="danger"] .note-icon svg {
    color: var(--accent-red);
}

.support-page .note-card[data-type="warning"] {
    border-color: rgba(245, 158, 11, 0.15);
}
.support-page .note-card[data-type="warning"]:hover {
    box-shadow: 0 8px 30px var(--accent-yellow-glow);
    border-color: rgba(245, 158, 11, 0.3);
}
.support-page .note-card[data-type="warning"] .note-icon svg {
    color: var(--accent-yellow);
}

.support-page .note-card[data-type="info"] {
    border-color: rgba(59, 130, 246, 0.15);
}
.support-page .note-card[data-type="info"]:hover {
    box-shadow: 0 8px 30px var(--accent-blue-glow);
    border-color: rgba(59, 130, 246, 0.3);
}
.support-page .note-card[data-type="info"] .note-icon svg {
    color: var(--accent-blue);
}

.support-page .note-card[data-type="success"] {
    border-color: rgba(16, 185, 129, 0.15);
}
.support-page .note-card[data-type="success"]:hover {
    box-shadow: 0 8px 30px var(--accent-green-glow);
    border-color: rgba(16, 185, 129, 0.3);
}
.support-page .note-card[data-type="success"] .note-icon svg {
    color: var(--accent-green);
}

/* ── Note Icon ── */
.support-page .note-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.support-page .note-icon svg {
    width: 22px;
    height: 22px;
}

/* ── Note Text ── */
.support-page .note-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.support-page .note-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ══════════════════════════════════════════════
   7. FAQ Section
   ══════════════════════════════════════════════ */

.support-page .faq-section {
    padding: 80px 0 100px;
}

.support-page .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── FAQ Item ── */
.support-page .faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.support-page .faq-item:hover {
    border-color: var(--border-hover);
}

.support-page .faq-item.active {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

/* ── FAQ Question Button ── */
.support-page .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.support-page .faq-question:hover {
    color: var(--accent-cyan);
}

/* ── FAQ Chevron Icon ── */
.support-page .faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}

.support-page .faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

/* ── FAQ Answer Panel ── */
.support-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 24px;
}

.support-page .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.support-page .faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.support-page .faq-answer p:last-child {
    margin-bottom: 0;
}

.support-page .faq-answer ol,
.support-page .faq-answer ul {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    padding-left: 20px;
    margin-bottom: 12px;
}

.support-page .faq-answer li {
    margin-bottom: 4px;
}

.support-page .faq-answer code {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ══════════════════════════════════════════════
   8. Animations
   ══════════════════════════════════════════════ */

/* ── Floating Orbs ── */
@keyframes supportOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Hero Entrance ── */
@keyframes supportFadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── CTA Arrow Bounce ── */
@keyframes supportBounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ── Scroll Indicator Dot ── */
@keyframes supportScrollDot {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* ── Scroll Reveal System ── */
.support-page .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.support-page .reveal:nth-child(2) { transition-delay: 0.1s; }
.support-page .reveal:nth-child(3) { transition-delay: 0.2s; }
.support-page .reveal:nth-child(4) { transition-delay: 0.3s; }
.support-page .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   9. Responsive
   ══════════════════════════════════════════════ */

/* ── Tablet & Small Desktop (≤768px) ── */
@media (max-width: 768px) {
    /* Hero */
    .support-page .support-hero {
        min-height: 80vh;
    }
    .support-page .hero-title {
        font-size: 2rem;
    }
    .support-page .hero-description {
        font-size: 1rem;
    }

    /* Tabs */
    .support-page .tabs-bar {
        border-radius: var(--radius-lg);
        gap: 6px;
        padding: 6px;
    }
    .support-page .tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        border-radius: 16px;
        flex: 1 1 auto;
        justify-content: center;
        min-width: calc(50% - 6px);
    }

    /* Steps */
    .support-page .step-card {
        gap: 16px;
    }
    .support-page .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    .support-page .step-content {
        padding: 24px;
    }
    .support-page .step-title {
        font-size: 1.15rem;
    }

    /* Notes */
    .support-page .notes-grid {
        grid-template-columns: 1fr;
    }

    /* Credentials */
    .support-page .credential-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
    .support-page .support-container {
        padding: 0 16px;
    }
    .support-page .hero-title {
        font-size: 1.7rem;
    }
    .support-page .step-content {
        padding: 20px;
    }
    .support-page .note-card {
        padding: 22px;
    }
    .support-page .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }
    .support-page .faq-answer {
        padding: 0 18px;
    }
    .support-page .faq-item.active .faq-answer {
        padding: 0 18px 20px;
    }

    /* Tabs */
    .support-page .tab-btn {
        padding: 10px 12px;
        font-size: 0.78rem;
    }
}
