/* ===================================================
   KuzaAccount V1.1 - Premium Design System
   Modern Glassmorphism + Vibrant Gradients
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
    /* Core Palette */
    --primary:        #0867F2;
    --primary-dark:   #0052D4;
    --primary-light:  #E8F0FE;
    --accent:         #00D4AA;
    --accent-dark:    #00B890;
    --danger:         #FF4757;
    --warning:        #FFA502;
    --success:        #2ED573;
    --info:           #1E90FF;

    /* Gradients */
    --grad-primary:   linear-gradient(135deg, #0A6CFF 0%, #0052D4 100%);
    --grad-accent:    linear-gradient(135deg, #00D4AA 0%, #00B890 100%);
    --grad-hero:      linear-gradient(135deg, #0A6CFF 0%, #0052D4 50%, #0867F2 100%);
    --grad-dark:      linear-gradient(135deg, #061B35, #0C2D5A, #061B35);
    --grad-sunset:    linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --grad-ocean:     linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --grad-forest:    linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);

    /* Neutrals */
    --bg:             #F8FAFC;
    --surface:        #FFFFFF;
    --surface-2:      #F1F5F9;
    --border:         #E5E7EB;
    --border-subtle:  rgba(79, 110, 247, 0.08);

    /* Text */
    --text-primary:   #1F2937;
    --text-secondary: #6B7280;
    --text-muted:     #9CA3AF;

    /* Shadows */
    --shadow-xs:  0 1px 3px rgba(79,110,247,.08);
    --shadow-sm:  0 4px 16px rgba(79,110,247,.10);
    --shadow-md:  0 8px 30px rgba(79,110,247,.14);
    --shadow-lg:  0 20px 60px rgba(79,110,247,.18);
    --shadow-xl:  0 32px 80px rgba(79,110,247,.22);

    /* Layout */
    --radius-sm:  8px;
    --radius:     14px;
    --radius-lg:  20px;
    --radius-xl:  28px;
    --radius-full: 999px;

    /* Transitions */
    --ease:       cubic-bezier(.25,.8,.25,1);
    --fast:       0.15s var(--ease);
    --medium:     0.3s var(--ease);
    --slow:       0.5s var(--ease);

    /* Admin sidebar */
    --sidebar-bg:    #0f1117;
    --sidebar-text:  rgba(255,255,255,0.75);
    --sidebar-active:#4F6EF7;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
    font-weight: 700 !important;
    font-family: 'Outfit', sans-serif !important;
    line-height: 1.25;
}

.display-4, .display-5, .display-6 { font-weight: 800 !important; }

p { color: var(--text-secondary); }

.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-danger  { color: var(--danger)  !important; }
.text-warning { color: var(--warning) !important; }
.text-info    { color: var(--info)    !important; }
.text-dark    { color: var(--text-primary) !important; }
.bg-light     { background-color: var(--surface-2) !important; }
.list-group-item { background-color: var(--surface) !important; color: var(--text-primary) !important; border-color: var(--border) !important; }

/* ── Cards ── */
.clay-card, .card {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform var(--medium), box-shadow var(--medium);
    overflow: hidden;
}

.clay-card:hover, .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md) !important;
}

.card-header {
    background: var(--surface) !important;
    border-bottom: 1px solid var(--border) !important;
    font-weight: 600;
}

/* ── Buttons ── */
.clay-btn, .btn {
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    transition: all var(--medium);
    border: none !important;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.clay-btn-primary, .btn-primary {
    background: var(--grad-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(79,110,247,.35) !important;
}

.clay-btn-primary:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,110,247,.5) !important;
    background: linear-gradient(135deg, #3652D9 0%, #4F6EF7 100%) !important;
    color: #fff !important;
}

.btn-success {
    background: var(--grad-accent) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0,212,170,.35) !important;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,170,.5) !important;
    color: #fff !important;
}

.btn-danger {
    background: linear-gradient(135deg, #FF4757, #FF6B81) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255,71,87,.3) !important;
}

.btn-danger:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background: var(--grad-primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79,110,247,.35) !important;
}

.btn-outline-secondary {
    background: transparent !important;
    border: 2px solid var(--border) !important;
    color: var(--text-secondary) !important;
}

.btn-outline-secondary:hover {
    background: var(--surface-2) !important;
    color: var(--text-primary) !important;
    transform: translateY(-1px);
}

.btn-outline-danger {
    background: transparent !important;
    border: 2px solid var(--danger) !important;
    color: var(--danger) !important;
}

.btn-outline-danger:hover {
    background: linear-gradient(135deg, #FF4757, #FF6B81) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.btn-sm { padding: 0.4rem 1rem !important; font-size: 0.82rem !important; }
.btn-lg { padding: 0.85rem 2rem !important; font-size: 1rem !important; }

/* ── Form Controls ── */
.clay-input, .form-control, .form-select {
    background: var(--surface-2) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    color: var(--text-primary) !important;
    padding: 0.75rem 1.1rem !important;
    font-size: 0.95rem;
    transition: border-color var(--fast), box-shadow var(--fast), background var(--fast);
    box-shadow: none !important;
}

.clay-input:focus, .form-control:focus, .form-select:focus {
    background: var(--surface) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(79,110,247,.12) !important;
    outline: none !important;
    color: var(--text-primary) !important;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.input-group-text {
    background: var(--surface-2) !important;
    border: 1.5px solid var(--border) !important;
    color: var(--primary) !important;
    font-weight: 700;
}

/* ── Navbar (Desktop) ── */
.clay-navbar, .navbar {
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle) !important;
    padding: 12px 0;
    transition: all var(--medium);
    box-shadow: 0 4px 24px rgba(79,110,247,.07) !important;
}

.clay-navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md) !important;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.35rem;
    color: var(--text-primary) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand i { color: var(--primary) !important; font-size: 1.4rem; }

.clay-navbar .nav-link, .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius) !important;
    transition: all var(--fast);
    position: relative;
}

.clay-navbar .nav-link:hover,
.clay-navbar .nav-link.active,
.nav-link:hover, .nav-link.active {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
}

/* ── Mobile Header ── */
.clay-mobile-header {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle) !important;
    box-shadow: 0 4px 24px rgba(79,110,247,.08) !important;
}

@media (max-width: 991.98px) {
    .clay-navbar { display: none !important; }
}

/* ── Mobile Bottom Nav ── */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 65px;
    background: rgba(255,255,255,0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(79,110,247,.1);
    display: flex;
    align-items: stretch;
    z-index: 1050;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    gap: 3px;
    transition: all var(--fast);
    position: relative;
    padding: 4px 2px;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    transition: transform var(--fast);
    color: inherit !important;
}

.mobile-nav-item span { font-size: 0.68rem; }

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary) !important;
}

.mobile-nav-item.active i,
.mobile-nav-item:hover i { transform: translateY(-2px); }

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: var(--grad-primary);
}

/* ── Dark Navy Box (Balance Card etc.) ── */
.dark-navy-box {
    background: var(--grad-dark) !important;
    color: #fff !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    position: relative;
    overflow: hidden;
}

.dark-navy-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79,110,247,.25) 0%, transparent 70%);
    pointer-events: none;
}

.dark-navy-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,212,170,.15) 0%, transparent 70%);
    pointer-events: none;
}

.dark-navy-box h1, .dark-navy-box h2, .dark-navy-box h3,
.dark-navy-box h4, .dark-navy-box h5, .dark-navy-box h6,
.dark-navy-box p, .dark-navy-box span { color: #fff !important; }

.dark-navy-box .text-white-50 { color: rgba(255,255,255,0.55) !important; }

/* ── Tables ── */
.table { color: var(--text-primary) !important; }

.table th {
    background: var(--surface-2) !important;
    border-bottom: 2px solid var(--border) !important;
    color: var(--text-muted) !important;
    font-weight: 700 !important;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 1rem !important;
}

.table td {
    border-bottom: 1px solid var(--border) !important;
    vertical-align: middle;
    padding: 0.85rem 1rem !important;
    color: var(--text-primary) !important;
}

.table-hover tbody tr:hover td {
    background: var(--primary-light) !important;
}

/* ── Badges ── */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full) !important;
    padding: 0.38em 0.75em;
}

.bg-success  { background: var(--success)  !important; }
.bg-danger   { background: var(--danger)   !important; }
.bg-warning  { background: var(--warning)  !important; color: #fff !important; }
.bg-info     { background: var(--info)     !important; }
.bg-primary  { background: var(--primary)  !important; }
.bg-secondary { background: var(--text-muted) !important; }

.bg-success-subtle { background: rgba(46,213,115,.12) !important; }
.bg-primary-subtle, .bg-primary.bg-opacity-10 { background: var(--primary-light) !important; }

/* ── Alerts ── */
.alert {
    border-radius: var(--radius) !important;
    border: none !important;
    padding: 0.85rem 1.1rem;
    font-weight: 500;
}

.alert-danger  { background: rgba(255,71,87,.1)   !important; color: #c0392b  !important; border-left: 4px solid var(--danger)  !important; }
.alert-success { background: rgba(46,213,115,.1)  !important; color: #1a7742  !important; border-left: 4px solid var(--success) !important; }
.alert-info    { background: rgba(30,144,255,.1)  !important; color: #1565c0  !important; border-left: 4px solid var(--info)    !important; }
.alert-warning { background: rgba(255,165,2,.1)   !important; color: #8a5600  !important; border-left: 4px solid var(--warning) !important; }

/* ── Tom Select ── */
.ts-control {
    background: var(--surface-2) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    color: var(--text-primary) !important;
    padding: 0.65rem 1rem !important;
    font-family: 'Inter', sans-serif !important;
    transition: all var(--fast);
}

.ts-wrapper.focus .ts-control {
    background: var(--surface) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(79,110,247,.12) !important;
}

.ts-dropdown {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-lg) !important;
    margin-top: 6px !important;
    overflow: hidden;
}

.ts-dropdown .option {
    color: var(--text-primary) !important;
    padding: 0.7rem 1rem !important;
    transition: background var(--fast);
}

.ts-dropdown .active {
    background: var(--primary) !important;
    color: #fff !important;
}

.ts-dropdown .option:hover:not(.active) {
    background: var(--primary-light) !important;
}

/* ── Footer (Public) ── */
footer {
    background: var(--grad-dark) !important;
    border-top: 1px solid rgba(255,255,255,.06) !important;
}

footer a {
    color: rgba(255,255,255,.7) !important;
    text-decoration: none;
    transition: color var(--fast);
}

footer a:hover { color: #fff !important; }

/* ── Admin Sidebar ── */
.clay-sidebar {
    background: var(--sidebar-bg) !important;
    border-right: 1px solid rgba(255,255,255,.06) !important;
    height: 100vh;
    position: sticky !important;
    top: 56px;
    overflow-y: auto;
}

.clay-nav-link {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    color: var(--sidebar-text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    margin: 2px 8px;
    transition: all var(--fast);
    gap: 0.5rem;
}

.clay-nav-link:hover {
    background: rgba(79,110,247,.15) !important;
    color: #fff !important;
}

.clay-nav-link.active {
    background: var(--grad-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(79,110,247,.4);
}

/* ── Admin Navbar ── */
.admin-header-nav {
    background: rgba(15,17,23,0.95) !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    backdrop-filter: blur(20px);
}

/* ── Premium Avatar ── */
.premium-avatar {
    width: 36px; height: 36px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(79,110,247,.4);
}

/* ── Progress ── */
.progress {
    background: var(--border) !important;
    border-radius: var(--radius-full) !important;
    overflow: hidden;
}

.progress-bar {
    background: var(--grad-primary) !important;
}

/* ── Spinner / Loader ── */
.loader-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 14px;
}

.loader-dots div {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    animation-timing-function: cubic-bezier(0,1,1,0);
}

.loader-dots div:nth-child(1) { left: 8px; animation: ld1 0.6s infinite; }
.loader-dots div:nth-child(2) { left: 8px; animation: ld2 0.6s infinite; }
.loader-dots div:nth-child(3) { left: 32px; animation: ld2 0.6s infinite; }
.loader-dots div:nth-child(4) { left: 56px; animation: ld3 0.6s infinite; }

@keyframes ld1 { 0%{transform:scale(0)} 100%{transform:scale(1)} }
@keyframes ld3 { 0%{transform:scale(1)} 100%{transform:scale(0)} }
@keyframes ld2 { 0%{transform:translate(0,0)} 100%{transform:translate(24px,0)} }

/* ── Utility ── */
.bg-light { background: var(--surface-2) !important; }
.bg-white  { background: var(--surface) !important; }

.rounded-4  { border-radius: var(--radius) !important; }
.rounded-5  { border-radius: var(--radius-xl) !important; }
.rounded-pill { border-radius: var(--radius-full) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow    { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

/* ── Animations ── */
.hover-scale { transition: transform var(--medium); }
.hover-scale:hover { transform: scale(1.04); }

.hover-lift { transition: transform var(--medium), box-shadow var(--medium); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md) !important; }

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

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

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-float   { animation: float 6s ease-in-out infinite; }
.animate-fade-up { animation: fadeInUp 0.6s var(--ease) both; }

/* ── Fallback aliases (backwards compat) ── */
.clay-nav-bg, .clay-nav-link-compat { background: transparent !important; box-shadow: none !important; }
.clay-secondary { color: var(--text-secondary) !important; }
.text-dark-theme-support { color: var(--text-primary) !important; }

/* clay-card padding helper */
.clay-card { padding: 1.5rem; }

/* ── Scrollbar (Webkit) ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Form Check ── */
.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* ── Method card (Topup) ── */
.method-card {
    cursor: pointer;
    transition: all var(--medium);
    border: 2px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--surface) !important;
}

.method-card:hover, .method-card.active {
    border-color: var(--primary) !important;
    background: var(--primary-light) !important;
    box-shadow: 0 0 0 4px rgba(79,110,247,.1);
}

/* ── Nav Pills ── */
.nav-pills .nav-link {
    color: var(--text-secondary) !important;
    background: var(--surface) !important;
    border: 1.5px solid var(--border) !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--fast);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: var(--grad-primary) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(79,110,247,.35);
}

.nav-pills .nav-link:hover:not(.active) {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* ── Service Card ── */
.service-card {
    transition: transform var(--medium), box-shadow var(--medium);
    border-radius: var(--radius-lg) !important;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg) !important;
}

/* ── Floating WhatsApp ── */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1040;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #fff !important;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(37,211,102,.5) !important;
    transition: transform var(--medium), box-shadow var(--medium);
    text-decoration: none;
    animation: pulse-glow 3s ease infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,.6) !important;
    color: #fff !important;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
    50%       { box-shadow: 0 6px 36px rgba(37,211,102,.65); }
}

@media (max-width: 991px) {
    .floating-whatsapp {
        bottom: 90px;
        right: 15px;
    }
}

/* ── Platform Icon ── */
.platform-icon { width: 22px; text-align: center; margin-right: 8px; font-size: 1em; }

/* ── Service Row Hover ── */
.service-row { transition: background var(--fast); }
.service-row:hover { background: var(--primary-light) !important; }

/* ── Sections header gradient ── */
.services-header {
    background: var(--grad-hero) !important;
    color: #fff;
    padding: 60px 0;
    border-radius: 0 0 40px 40px;
    position: relative;
    overflow: hidden;
}

.services-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Category Badge ── */
.category-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

/* ── Hero Section ── */
.hero {
    background: linear-gradient(135deg, var(--surface) 0%, #EEF1FF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,110,247,.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0,212,170,.07) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Step circles ── */
.step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(79,110,247,.4);
    flex-shrink: 0;
}

/* ── Modal Improvements ── */
.modal-content {
    border: none !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-xl) !important;
    overflow: hidden;
}

/* ── Offcanvas Admin ── */
.offcanvas-start { border-right: 1px solid rgba(255,255,255,.08) !important; }

/* ── Main content padding for mobile nav ── */
@media (max-width: 991.98px) {
    body { padding-bottom: 70px; }
    .main-content { margin-top: 8px; }
}

/* ── Table thead for admin ── */
.table thead th {
    background: linear-gradient(135deg, #f8f9ff, var(--surface-2)) !important;
}
