/* ─── Fonts & Reset ────────────────────────────────────────────────────────── */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

:root {
    --blue-primary: #4f46e5;
    --blue-dark:    #3730a3;
    --blue-light:   #e0e7ff;
    --blue-50:      #eef2ff;
    --bg:           #f8fafc;
    --white:        #ffffff;
    --text-dark:    #0f172a;
    --text-muted:   #64748b;
    --border:       #e2e8f0;
    --shadow-sm:    0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow:       0 10px 25px -3px rgba(15, 23, 42, 0.08);
    --shadow-lg:    0 20px 40px -4px rgba(15, 23, 42, 0.12);
    --shadow-glow:  0 10px 30px rgba(79, 70, 229, 0.3);
    --radius:       16px;
    --radius-lg:    24px;
    --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 15px;
    background: var(--bg);
    color: var(--text-dark);
    direction: rtl;
    line-height: 1.7;
}

/* ─── Scrollbar ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 3px; }

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--blue-primary) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 6px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--blue-primary) !important;
    background: var(--blue-50);
}

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #6366f1 100%);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    padding: 12px 28px;
    font-family: 'Vazirmatn', sans-serif;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca 0%, var(--blue-primary) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--blue-primary);
    color: var(--blue-primary);
    border-radius: var(--radius);
    font-weight: 700;
    padding: 10px 28px;
    font-family: 'Vazirmatn', sans-serif;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--blue-primary);
    color: #fff;
    border-color: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-light {
    border-radius: var(--radius);
    font-weight: 700;
    transition: var(--transition);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.4);
}

.btn-outline-light {
    border-radius: var(--radius);
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--blue-primary);
    transform: translateY(-2px);
    border-color: #fff;
}

.btn-lg { padding: 13px 32px; font-size: 16px; }
.btn-sm { padding: 6px 16px; font-size: 13px; }

/* ─── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
    background: radial-gradient(circle at 0% 0%, #312e81 0%, #4f46e5 45%, #6366f1 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: -300px; left: -200px;
    animation: pulse 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    bottom: -200px; right: -150px;
    animation: pulse 6s ease-in-out infinite alternate-reverse;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-visual {
    font-size: 10rem;
    color: rgba(255,255,255,.95);
    line-height: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)) drop-shadow(0 0 40px rgba(255,255,255,0.2));
    animation: float 4s ease-in-out infinite;
}

.hero-badge {
    background: rgba(255,255,255,.1);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-brand-icon {
    font-size: 5rem;
    color: var(--blue-primary);
    line-height: 1;
}

.team-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: var(--blue-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blue-primary);
}

.pending-icon {
    font-size: 4rem;
    color: var(--blue-primary);
    opacity: .85;
    line-height: 1;
}

.icon-check { color: var(--blue-primary); font-size: 1.15rem; }
.icon-check-success { color: #16a34a; }

.hero-img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ─── Section Titles ────────────────────────────────────────────────────────── */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-light) 100%);
    color: var(--blue-primary);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.1);
}

/* ─── Cards ─────────────────────────────────────────────────────────────────── */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow); }

/* ─── Feature Cards ─────────────────────────────────────────────────────────── */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), #818cf8);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--blue-primary);
    transition: var(--transition);
    box-shadow: inset 0 0 0 1px var(--blue-light), 0 4px 10px rgba(0,0,0,0.02);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #6366f1 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.feature-card h5 { font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; }

/* ─── Plan Cards ─────────────────────────────────────────────────────────────── */
.plan-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-primary);
}

.plan-card.featured {
    border-color: var(--blue-primary);
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
    box-shadow: var(--shadow);
}

.plan-card.featured:hover {
    box-shadow: var(--shadow-glow);
}

.plan-card.featured::before {
    content: 'محبوب‌ترین';
    position: absolute;
    top: 16px; left: -32px;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(-45deg);
    box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-primary);
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bg);
}

.plan-features li::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    width: 20px; height: 20px;
    background: var(--blue-light);
    color: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── Stats Section ─────────────────────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(99,102,241,0.2) 0%, transparent 70%);
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,.8);
    font-size: 15px;
    margin-top: 4px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.accordion-button {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    background: var(--white);
    border-radius: var(--radius) !important;
    padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
    color: var(--blue-primary);
    background: var(--blue-50);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

.accordion-button:focus { box-shadow: none; }

.accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow);
}

.accordion-body {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    padding: 20px 24px;
    background: #fff;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
    background: #0f172a;
    color: rgba(255,255,255,.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), #818cf8);
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1rem;
}

footer a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

footer a:hover { color: #fff; padding-right: 4px; }

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-desc {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,.5);
    font-size: 13px;
}

.social-links { display: flex; gap: 10px; margin-top: 16px; }

.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7) !important;
    font-size: 16px;
    transition: var(--transition);
    margin-bottom: 0 !important;
    padding-right: 0 !important;
}

.social-link:hover {
    background: var(--blue-primary);
    color: #fff !important;
    padding-right: 0 !important;
}

/* ─── Auth Pages ─────────────────────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    position: relative;
}

.auth-page::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: -100px; right: -100px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.5);
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo .site-brand {
    justify-content: center;
}

.auth-logo h2,
.auth-brand .site-brand__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
}

.auth-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

/* ─── Form Inputs ────────────────────────────────────────────────────────────── */
.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-control, .form-select {
    font-family: 'Vazirmatn', sans-serif;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg);
    color: var(--text-dark);
    direction: rtl;
}

.form-control:focus, .form-select:focus {
    border-color: var(--blue-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

textarea.form-control { resize: vertical; min-height: 120px; }

/* ─── Dashboard ─────────────────────────────────────────────────────────────── */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
}

.sidebar {
    width: 280px;
    background: var(--white);
    border-left: 1px solid rgba(226, 232, 240, 0.8);
    padding: 24px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
    box-shadow: 4px 0 24px rgba(0,0,0,0.02);
}

.sidebar-brand {
    padding: 0 24px 28px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 24px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue-primary);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    transition: var(--transition);
    margin: 4px 16px;
    border-radius: 12px;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: var(--blue-50);
    color: var(--blue-primary);
}

.sidebar-nav a i { width: 18px; text-align: center; }

.dashboard-main {
    flex: 1;
    padding: 32px;
    overflow-y: auto;
}

.dashboard-header {
    margin-bottom: 28px;
}

.dashboard-header h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard-header p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ─── Stat Cards ─────────────────────────────────────────────────────────────── */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--blue-light);
}

.stat-card-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.stat-card-icon.blue   { background: var(--blue-light); color: var(--blue-primary); }
.stat-card-icon.green  { background: #dcfce7; color: #16a34a; }
.stat-card-icon.orange { background: #fed7aa; color: #ea580c; }
.stat-card-icon.purple { background: #ede9fe; color: #7c3aed; }

.stat-card-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-info p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ─── Table ──────────────────────────────────────────────────────────────────── */
.table {
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
}

.table th {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 13px;
    border-bottom: 2px solid var(--border);
    padding: 12px 16px;
}

.table td { padding: 12px 16px; vertical-align: middle; }

.table-hover tbody tr:hover { background: var(--blue-50); }

/* ─── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 8px;
}

/* ─── Server Info ─────────────────────────────────────────────────────────────── */
.server-info-card {
    background: var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
}

.server-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.server-info-item:last-child { border-bottom: none; }

.server-info-label {
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

.server-info-value {
    font-weight: 600;
    font-family: monospace;
    font-size: 14px;
    direction: ltr;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    transition: var(--transition);
}

.copy-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ─── Page Banner ─────────────────────────────────────────────────────────────── */
.page-banner {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.page-banner h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.page-banner p  { color: rgba(255,255,255,.8); font-size: 1rem; }

/* ─── Contact ─────────────────────────────────────────────────────────────────── */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px; height: 48px;
    background: var(--blue-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue-primary);
    flex-shrink: 0;
}

/* ─── Alert ──────────────────────────────────────────────────────────────────── */
.alert {
    font-family: 'Vazirmatn', sans-serif;
    border-radius: var(--radius);
    font-size: 14px;
    border: none;
}

.alert-success { background: #dcfce7; color: #15803d; }
.alert-danger   { background: #fee2e2; color: #b91c1c; }
.alert-info     { background: var(--blue-light); color: var(--blue-dark); }
.alert-warning  { background: #fef3c7; color: #92400e; }

/* ─── Empty State ─────────────────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state i { font-size: 3rem; margin-bottom: 16px; color: var(--border); }
.empty-state h5 { font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.empty-state p  { font-size: 14px; }

/* ─── Ticket ─────────────────────────────────────────────────────────────────── */
.ticket-message {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.ticket-message.admin {
    background: var(--blue-50);
    border-right: 3px solid var(--blue-primary);
}

.ticket-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ─── Site Brand / Logo ─────────────────────────────────────────────────────── */
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    line-height: 1.2;
}

.site-brand__logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-brand__icon {
    font-size: 1.5rem;
    color: var(--blue-primary);
    flex-shrink: 0;
}

.site-brand__name {
    font-weight: 700;
}

.site-brand--sm .site-brand__logo { height: 28px; max-width: 110px; }
.site-brand--sm .site-brand__icon { font-size: 1.25rem; }
.site-brand--sm .site-brand__name { font-size: 1rem; }

.site-brand--lg .site-brand__logo { height: 48px; max-width: 180px; }
.site-brand--lg .site-brand__icon { font-size: 2rem; }
.site-brand--lg .site-brand__name { font-size: 1.5rem; }

.navbar-brand.site-brand .site-brand__name {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand.site-brand {
    display: flex;
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.footer-brand.site-brand .site-brand__icon { color: #60a5fa; }
.footer-brand.site-brand .site-brand__name {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.sidebar-brand.site-brand {
    display: flex;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--border);
    font-size: 1.2rem;
}

.sidebar-brand.site-brand .site-brand__name { color: var(--blue-primary); }

.checkout-brand.site-brand { justify-content: center; font-size: 1.3rem; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero h1    { font-size: 2rem; }
    .hero-img   { margin-top: 40px; }
    .sidebar    { display: none; }
    .dashboard-main { padding: 20px; }
}

@media (max-width: 767px) {
    .hero       { padding: 70px 0 50px; }
    .hero h1    { font-size: 1.7rem; }
    .section-title { font-size: 1.6rem; }
    .auth-card  { padding: 30px 20px; }
    .stat-number { font-size: 2.2rem; }
    .plan-card  { padding: 24px 20px; }
}

/* ─── Mobile Nav ─────────────────────────────────────────────────────────────── */
.mobile-dashboard-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px 0;
    z-index: 999;
}

.mobile-dashboard-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    flex: 1;
    padding: 4px;
}

.mobile-dashboard-nav a i { font-size: 20px; }
.mobile-dashboard-nav a.active { color: var(--blue-primary); }

@media (max-width: 991px) {
    .mobile-dashboard-nav { display: flex; }
    .dashboard-main { padding-bottom: 80px; }
}

/* ─── Utility ─────────────────────────────────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.text-muted  { color: var(--text-muted) !important; }
.divider     { border-top: 1px solid var(--border); margin: 24px 0; }
.ltr         { direction: ltr; }
