﻿/* Forms: Checkout, Auth/Login, Contact, Ticket, Support Page, Form Validation - Do not edit directly */

/* ==============================================================
   CHECKOUT PAGE STYLES
   ============================================================== */
.checkout-container {
    max-width: 900px;
    margin: 9rem auto 5rem;
    padding: 0 2rem;
}

.checkout-container h1 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.summary-card,
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.summary-card h2,
.form-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--border-accent);
    font-size: 1.1rem;
    font-weight: 800;
}

.total-amount {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

.summary-item-editable .summary-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.summary-edit-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.2rem 0.45rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.summary-edit-btn:hover {
    border-color: var(--accent-primary);
    background: rgba(90, 79, 243, 0.06);
}

.domain-type-btn {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.domain-type-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.domain-type-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.plan-pick-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    margin-bottom: 0.8rem;
    cursor: default;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-pick-card.selected {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(90, 79, 243, 0.15);
}

.plan-pick-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.plan-pick-cycles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.plan-cycle-btn {
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.plan-cycle-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.plan-cycle-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s;
}

.form-group input:focus {
    border-color: var(--accent-primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(90, 79, 243, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select.form-select,
.form-group textarea.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s;
}

.form-group select.form-select:focus,
.form-group textarea.form-textarea:focus {
    border-color: var(--accent-primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(90, 79, 243, 0.1);
    outline: none;
}

.form-group textarea.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-stripe {
    width: 100%;
    padding: 1rem;
    background: #635bff;
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-stripe:hover {
    background: #7a74ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.4);
}

.btn-stripe:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-save-order {
    width: 100%;
    padding: 0.9rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-save-order:hover {
    background: var(--bg-primary);
    color: var(--accent-primary);
    border-color: var(--border-accent);
}

.btn-save-order:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

#message {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
    font-size: 0.9rem;
}

.msg-success {
    background: #f0fdf4;
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.25);
}

.msg-error {
    background: #fef2f2;
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.25);
}
/* ==============================================================
   LOGIN PAGE
   ============================================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #f0edff 0%, #ffffff 100%);
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-box .auth-sub {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.btn-auth-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-auth-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 79, 243, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.auth-footer a {
    color: var(--accent-primary);
}

.auth-footer a:hover {
    text-decoration: underline;
}
/* ==============================================================
   CONTACT PAGE
   ============================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--border-accent);
    transform: translateX(4px);
}

.contact-info-card .bi {
    font-size: 1.5rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ==============================================================
   NEWSLETTER / CTA MINI
   ============================================================== */
.cta-mini {
    background: linear-gradient(135deg, #5A4FF3 0%, #2563EB 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 4rem 0;
}

.cta-mini h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.cta-mini p {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.ticket-inline-form .form-group {
    margin-bottom: 1rem;
}

.ticket-inline-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
}

.ticket-inline-form input,
.ticket-inline-form select,
.ticket-inline-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s;
}

.ticket-inline-form input:focus,
.ticket-inline-form select:focus,
.ticket-inline-form textarea:focus {
    border-color: var(--accent-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(90, 79, 243, 0.1);
}

.ticket-inline-form select option {
    background: #ffffff;
}

.ticket-inline-form textarea {
    min-height: 110px;
    resize: vertical;
}

.ticket-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media(max-width:600px) {
    .ticket-row {
        grid-template-columns: 1fr;
    }
}

.btn-submit-ticket {
    padding: 0.85rem 2rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-submit-ticket:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#ticket-form-msg {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    display: none;
    font-size: 0.88rem;
}

/* ==============================================================
   SUPPORT PAGE
   ============================================================== */
.support-hero {
    padding: 10rem 5% 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0edff 0%, #ffffff 100%);
}

[data-theme="dark"] .support-hero {
    background: linear-gradient(180deg, #000000 0%, #1C1C1E 100%);
}

.support-hero .glow-1 {
    top: -50px;
    left: 10%;
}

.support-hero .glow-2 {
    bottom: -50px;
    right: 10%;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 5%;
}

.support-option-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.support-option-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.support-option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-primary);
}

.support-option-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.support-option-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ==============================================================
   SUPPORT PAGE â€” Premium Redesign
   ============================================================== */
.support-hero {
    padding: 10rem 5% 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f0edff 0%, #ffffff 100%);
}

[data-theme="dark"] .support-hero {
    background: linear-gradient(180deg, #000000 0%, #1C1C1E 100%);
}

.support-hero .glow-1 {
    top: -50px;
    left: 10%;
}

.support-hero .glow-2 {
    bottom: -50px;
    right: 10%;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 5%;
}

.support-option-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.support-option-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.support-option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-primary);
}

.support-option-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.support-option-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ---- Ticket Form Section ---- */
.ticket-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    animation: supportFadeIn 0.5s ease both;
}

@keyframes supportFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.ticket-form-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 3.5rem;
    box-shadow: var(--shadow-lg);
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.ticket-form-card:hover {
    box-shadow: 0 16px 48px rgba(90, 79, 243, 0.08), var(--shadow-lg);
    border-color: var(--border-accent);
}

[data-theme="dark"] .ticket-form-card {
    background: rgba(28, 28, 30, 0.85);
}

/* ---- Form Header ---- */
.ticket-form-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.ticket-form-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(90, 79, 243, 0.25);
}

.ticket-form-card h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.ticket-form-card .sub {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

.ticket-form-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 2rem;
}

/* ---- Form Rows ---- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ---- Form Groups ---- */
.ticket-section .form-group {
    margin-bottom: 1.25rem;
}

.ticket-section .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.ticket-section .form-group label i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

.required-star {
    color: var(--danger);
    font-weight: 700;
}

/* ---- Inputs ---- */
.ticket-section .form-group input,
.ticket-section .form-group textarea {
    width: 100%;
    height: 56px;
    padding: 0 1rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    outline: none;
}

.ticket-section .form-group input::placeholder,
.ticket-section .form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ticket-section .form-group input:hover,
.ticket-section .form-group textarea:hover {
    border-color: rgba(90, 79, 243, 0.35);
}

.ticket-section .form-group input:focus,
.ticket-section .form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(90, 79, 243, 0.1);
    background: var(--bg-primary);
}

[data-theme="dark"] .ticket-section .form-group input,
[data-theme="dark"] .ticket-section .form-group textarea {
    background: #2C2C2E;
    border-color: #48484A;
}

[data-theme="dark"] .ticket-section .form-group input:focus,
[data-theme="dark"] .ticket-section .form-group textarea:focus {
    background: #2C2C2E;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(90, 79, 243, 0.2);
}

/* ---- Select Dropdowns ---- */
.custom-select-wrap {
    position: relative;
}

.ticket-section .form-group select {
    width: 100%;
    height: 56px;
    padding: 0 2.5rem 0 1rem;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

.ticket-section .form-group select:hover {
    border-color: rgba(90, 79, 243, 0.35);
}

.ticket-section .form-group select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(90, 79, 243, 0.1);
    background: var(--bg-primary);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.2s;
}

.custom-select-wrap:focus-within .select-arrow {
    color: var(--accent-primary);
}

.ticket-section .form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.5rem;
}

[data-theme="dark"] .ticket-section .form-group select {
    background: #2C2C2E;
    border-color: #48484A;
}

[data-theme="dark"] .ticket-section .form-group select:focus {
    background: #2C2C2E;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(90, 79, 243, 0.2);
}

[data-theme="dark"] .ticket-section .form-group select option {
    background: #2C2C2E;
    color: #FFFFFF;
}

/* ---- Textarea ---- */
.ticket-section .form-group textarea {
    height: auto;
    min-height: 180px;
    padding: 1rem;
    resize: vertical;
    line-height: 1.6;
}

/* ---- Submit Button ---- */
.btn-ticket {
    width: 100%;
    height: 56px;
    padding: 0 2rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.btn-ticket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(90, 79, 243, 0.4);
}

.btn-ticket:hover::before {
    opacity: 1;
}

.btn-ticket:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(90, 79, 243, 0.3);
}

.btn-ticket:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-ticket:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
}

/* ---- Form Messages ---- */
#ticket-msg {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    animation: supportFadeIn 0.3s ease;
}

.ticket-msg-success {
    background: rgba(22, 163, 74, 0.08);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.ticket-msg-error {
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ---- FAQ Section ---- */
.support-faq-section {
    max-width: 960px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.support-faq-section .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.support-faq-section .faq-item[open] {
    border-color: rgba(90, 79, 243, 0.3);
    box-shadow: 0 4px 20px rgba(90, 79, 243, 0.08);
}

.support-faq-section summary {
    list-style: none;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s, color 0.25s;
}

.support-faq-section summary::-webkit-details-marker {
    display: none;
}

.support-faq-section summary:hover {
    background: rgba(90, 79, 243, 0.04);
    color: var(--accent-primary);
}

.support-faq-section .faq-a {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---- Support Responsive ---- */
/* ==============================================================
   FORM VALIDATION UX
   ============================================================== */
.form-group input:valid:not(:placeholder-shown) {
    border-color: var(--success);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--danger);
}

.form-group .field-error {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.form-group input:invalid:not(:placeholder-shown) ~ .field-error {
    display: block;
}

.password-strength {
    height: 4px;
    border-radius: 2px;
    background: var(--bg-secondary);
    margin-top: 0.4rem;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}

.password-strength-bar.weak { width: 25%; background: var(--danger); }
.password-strength-bar.fair { width: 50%; background: var(--warning); }
.password-strength-bar.good { width: 75%; background: var(--accent-secondary); }
.password-strength-bar.strong { width: 100%; background: var(--success); }

