/* ==========================================================================
   HYIPINV THEME - Global Stylesheet
   Includes: base reset, design tokens, components, dashboard, header, utilities
   ========================================================================== */

/* ========== BASE RESET ========== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Roboto Slab', serif;
    background: #0c0a17;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 { margin: 0; }
h1, h2 { font-family: 'Readex Pro', sans-serif; line-height: 1.15; }
h3, h4, h5, h6 { line-height: 1.3; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:not(.btn):hover { color: var(--main-color, #6f3df5); }
label { display: block; color: #cbd5e1; font-size: .85rem; font-weight: 500; margin-bottom: .35rem; }
small { color: #94a3b8; }
section { position: relative; }
header { position: relative; }
html { scroll-behavior: smooth; }
::selection { background: rgba(111, 61, 245, 0.4); color: #fff; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0c0a17; }
::-webkit-scrollbar-thumb { background: rgba(111, 61, 245, 0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(111, 61, 245, 0.5); }
img[src=""], img:not([src]) { visibility: hidden; }
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ========== DESIGN TOKENS / THEME COLORS ========== */
.font-special { font-family: 'Readex Pro', sans-serif; }
.bg-dark { background-color: #0c0a17; }
.border-primary { border-color: rgba(111, 61, 245, 0.3); }
.text-primary { color: var(--main-color, #6f3df5); }
.text-primary-light { color: #a78bfa; }
.bg-primary { background-color: var(--main-color, #6f3df5); }
.bg-primary-lighter { background-color: rgba(111, 61, 245, 0.1); }
.text-muted { color: #94a3b8; }

/* ========== BUTTONS (global, white-text-locked) ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .85rem 1.65rem; border-radius: .6rem;
    font-weight: 600; font-family: 'Roboto Slab', sans-serif; font-size: .95rem;
    letter-spacing: .3px;
    transition: all .2s; cursor: pointer; text-decoration: none;
    white-space: nowrap;
}
.btn:focus, .btn:hover { outline: none; }
.btn, .btn:hover, .btn:focus, a.btn:hover, a.btn:focus { color: #fff !important; }
.btn-primary {
    background: linear-gradient(135deg, #6f3df5 0%, #8b5cf6 100%);
    color: #fff; border: 1px solid transparent;
    box-shadow: 0 4px 12px rgba(111, 61, 245, 0.25);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: linear-gradient(135deg, #5a30c4 0%, #7c3aed 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(111, 61, 245, 0.45);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
    background: transparent; color: #fff;
    border: 1px solid rgba(111, 61, 245, 0.5);
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background: rgba(111, 61, 245, 0.2);
    color: #fff !important; border-color: #a78bfa;
}
.btn-secondary:hover { transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(0); }
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover, .btn-danger:focus { background: #b91c1c; color: #fff !important; }

/* ========== FORMS ========== */
.form-input {
    display: block; width: 100%;
    padding: .75rem 1rem;
    background: rgba(111, 61, 245, 0.06);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: .5rem;
    color: #fff; font-size: .9rem;
    font-family: inherit; line-height: 1.4;
    transition: all .2s;
}
.form-input::placeholder { color: rgba(148, 163, 184, 0.6); }
.form-input:focus {
    outline: none;
    border-color: var(--main-color, #6f3df5);
    background: rgba(111, 61, 245, 0.1);
    box-shadow: 0 0 0 3px rgba(111, 61, 245, 0.15);
}
.form-input[readonly], .form-input:disabled {
    opacity: .7; cursor: not-allowed;
    background: rgba(111, 61, 245, 0.02);
}
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input { cursor: pointer; }
select.form-input, textarea.form-input { background-color: rgba(111, 61, 245, 0.05); }
select.form-input option { background: #0c0a17; color: #fff; }

/* ========== CARDS ========== */
.card-violet {
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.2);
    border-radius: 1rem; padding: 1.5rem;
    transition: all .3s ease;
}
.card-violet:hover { border-color: rgba(111, 61, 245, 0.4); }
.card-auth {
    background: rgba(15, 13, 30, 0.8);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: 1rem; backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(111, 61, 245, 0.2);
}

/* ========== CONTAINER ========== */
.container-base {
    width: 100%; max-width: 1280px;
    margin: 0 auto; padding: 0 1rem;
}
@media (min-width: 640px)  { .container-base { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-base { padding: 0 2rem; } }

/* ========== BADGES ========== */
.badge { padding: .2rem .6rem; border-radius: .375rem; font-size: .7rem; font-weight: 600; }
.badge-success { background:#10b981; color:#fff; }
.badge-warning { background:#f59e0b; color:#fff; }
.badge-danger  { background:#dc2626; color:#fff; }
.badge-info    { background:#3b82f6; color:#fff; }
.badge-secondary { background:#6b7280; color:#fff; }

/* ========== TABLES ========== */
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: .75rem; text-align: left; border-bottom: 1px solid rgba(111,61,245,0.15); font-size: .85rem; }
table th { color: #94a3b8; font-weight: 600; text-transform: uppercase; font-size: .75rem; }
.table-hover tr:hover { background: rgba(111,61,245,0.03); }

/* ========== ANIMATIONS ========== */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(111, 61, 245, 0.3); }
    50% { box-shadow: 0 0 60px rgba(111, 61, 245, 0.5); }
}
.glow-violet { animation: glow 3s ease-in-out infinite; }
.backlight-footer { box-shadow: inset 0 50px 100px rgba(111, 61, 245, 0.1); }

/* ========== BACK-TO-TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 50;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    border: 1px solid rgba(167, 139, 250, 0.5);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(111, 61, 245, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s, box-shadow .2s;
    padding: 0;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(111, 61, 245, 0.6);
    background: linear-gradient(135deg, #5a30c4, #8b5cf6);
}
.back-to-top:active { transform: translateY(0); }
@media (min-width: 768px) {
    .back-to-top { width: 52px; height: 52px; bottom: 2rem; right: 2rem; }
}

/* ========== LOGO ========== */
.hyipinv-logo-img { height: 36px; width: auto; }

/* ==========================================================================
   PLAN CARDS
   ========================================================================== */

/* Plain (legacy) plan card with image banner */
.plan-card {
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all .3s;
}
.plan-card:hover {
    border-color: var(--main-color, #6f3df5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(111, 61, 245, 0.2);
}
.plan-card-banner { position: relative; height: 140px; overflow: hidden; }
.plan-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.plan-card:hover .plan-card-img { transform: scale(1.08); }
.plan-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,10,23,0.3) 0%, rgba(12,10,23,0.95) 100%); }
.plan-card-banner-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; }
.plan-card-title {
    color: #fff; font-weight: 700; font-size: 1.05rem;
    margin-bottom: .25rem; line-height: 1.2;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 1; -webkit-box-orient: vertical;
}
.plan-card-price {
    color: var(--main-color, #6f3df5);
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700; font-size: 1.25rem;
}
.plan-badge {
    position: absolute; top: .75rem; right: .75rem;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    color: #fff; font-size: .7rem; font-weight: 700;
    padding: .25rem .6rem; border-radius: 1rem;
    display: inline-flex; align-items: center; gap: .25rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    z-index: 1;
}
.plan-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.plan-roi { text-align: center; padding: .75rem; background: rgba(111, 61, 245, 0.08); border-radius: .5rem; border: 1px dashed rgba(111, 61, 245, 0.3); }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; }
.plan-features li { display: flex; align-items: center; gap: .5rem; color: #fff; }
.plan-features li strong { margin-left: auto; }

/* Clean plan card (no image, icon + ROI hero) */
.plan-card-clean {
    position: relative;
    background: rgba(15, 13, 30, 0.7);
    border: 1px solid rgba(111, 61, 245, 0.25);
    border-radius: 1.25rem;
    padding: 0;
    display: flex; flex-direction: column;
    overflow: hidden;
    transition: all .3s;
}
.plan-card-clean:hover {
    border-color: var(--main-color, #6f3df5);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(111, 61, 245, 0.35);
}
.plan-card-clean.plan-popular {
    border-color: var(--main-color, #6f3df5);
    background: linear-gradient(180deg, rgba(111, 61, 245, 0.18) 0%, rgba(15, 13, 30, 0.8) 60%);
    box-shadow: 0 0 80px rgba(111, 61, 245, 0.3);
}
.plan-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--main-color, #6f3df5), #a78bfa);
    color: #fff; font-size: .7rem; font-weight: 700;
    padding: .35rem 1rem; border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(111, 61, 245, 0.5);
    text-transform: uppercase; letter-spacing: 1.5px;
    white-space: nowrap; z-index: 3;
}
.plan-hot-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #dc2626);
    color: #fff; font-size: .65rem; font-weight: 700;
    padding: .3rem .6rem; border-radius: 1rem;
    display: inline-flex; align-items: center; gap: .25rem; z-index: 3;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}
.plan-clean-banner, .plan-clean-banner-overlay { display: none !important; }
.plan-clean-header { position: relative; padding: 1.75rem 1.5rem .75rem; text-align: center; }
.plan-clean-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--main-color, #6f3df5), #a78bfa);
    border: 1px solid rgba(167, 139, 250, 0.5);
    border-radius: 50%;
    color: #fff; font-size: 1.9rem;
    box-shadow: 0 8px 24px rgba(111, 61, 245, 0.4);
}
.plan-clean-name {
    color: #fff; font-weight: 700; font-size: 1.15rem;
    margin: 0; line-height: 1.3;
    overflow: hidden; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    min-height: 3em;
}
.plan-clean-tagline { color: #94a3b8; font-size: .75rem; margin-top: .25rem; }
.plan-clean-roi {
    text-align: center;
    padding: 1.25rem;
    margin: 0 1.5rem;
    background: rgba(111, 61, 245, 0.1);
    border: 1px dashed rgba(111, 61, 245, 0.4);
    border-radius: .75rem;
}
.plan-clean-roi-label { color: #94a3b8; font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.plan-clean-roi-val {
    color: var(--main-color, #6f3df5);
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700; font-size: 3rem;
    line-height: 1; margin: .25rem 0;
}
.plan-clean-roi-val span { font-size: 1.5rem; }
.plan-clean-roi-sub { color: #cbd5e1; font-size: .75rem; margin-top: .25rem; }
.plan-clean-amount {
    text-align: center;
    color: #fff; font-size: 1.05rem; font-weight: 600;
    padding: .85rem 1rem; margin: 1rem 0 0;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(111,61,245,0.15);
    border-bottom: 1px solid rgba(111,61,245,0.15);
}
.plan-clean-amount-label {
    display: block; color: #94a3b8; font-size: .65rem;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: .25rem; font-weight: 500;
}
.plan-clean-features {
    list-style: none; padding: 1rem 1.5rem; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: .65rem;
    font-size: .8rem; flex: 1;
}
.plan-clean-features li {
    display: flex; align-items: center; gap: .4rem;
    color: #fff;
    background: rgba(111, 61, 245, 0.05);
    border: 1px solid rgba(111, 61, 245, 0.12);
    padding: .5rem .65rem;
    border-radius: .4rem;
}
.plan-clean-features li i { color: var(--main-color, #6f3df5); font-size: 1rem; flex-shrink: 0; }
.plan-clean-features li .label { color: #94a3b8; font-size: .7rem; }
.plan-clean-features li strong { color: #fff; font-size: .8rem; margin-left: auto; font-weight: 600; }
.plan-clean-total {
    margin: 0 1.5rem 1rem;
    padding: .75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: .5rem;
    display: flex; justify-content: space-between; align-items: center;
}
.plan-clean-total-label { color: #6ee7b7; font-size: .75rem; font-weight: 600; }
.plan-clean-total-val { color: #10b981; font-family: 'Readex Pro', sans-serif; font-weight: 700; font-size: 1.1rem; }
.plan-clean-footer { padding: 0 1.5rem 1.5rem; }

/* ==========================================================================
   HERO BANNER — large, professional, fresh gradient
   ========================================================================== */
.hero-section {
    position: relative;
    background:
        linear-gradient(180deg, #0c0a17 0%, #15102b 50%, #1a1235 100%),
        linear-gradient(135deg, #6f3df5 0%, #a78bfa 100%);
    background-blend-mode: normal;
    overflow: hidden;
    padding: 4rem 0 5rem;
    min-height: 620px;
    isolation: isolate;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(111, 61, 245, 0.18) 0%,
            transparent 35%,
            transparent 65%,
            rgba(167, 139, 250, 0.12) 100%);
    z-index: 0;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(111, 61, 245, 0.25) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
@media (min-width: 768px) { .hero-section { padding: 5rem 0 6rem; min-height: 720px; } }
@media (min-width: 1024px) { .hero-section { padding: 6rem 0 7rem; min-height: 780px; } }

/* Hide old orb + grid elements (kept in markup, just invisible) */
.hero-bg-orb, .hero-grid-overlay { display: none !important; }

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-container { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
@media (max-width: 1023px) { .hero-content { text-align: center; align-items: center; } }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem 1.1rem;
    background: linear-gradient(135deg, rgba(111,61,245,0.18), rgba(167,139,250,0.08));
    border: 1px solid rgba(111,61,245,0.4);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    color: #cbd5e1;
    align-self: flex-start;
    backdrop-filter: blur(8px);
}
@media (max-width: 1023px) { .hero-badge { align-self: center; } }
.hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #6f3df5;
    box-shadow: 0 0 0 4px rgba(111, 61, 245, 0.25);
    animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(111, 61, 245, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(111, 61, 245, 0.05); }
}
.hero-badge-live {
    margin-left: .5rem;
    padding: .15rem .55rem;
    background: #10b981;
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Title */
.hero-title {
    font-family: 'Readex Pro', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.05;
    letter-spacing: -.5px;
    margin: 0;
}
@media (min-width: 640px) { .hero-title { font-size: 3.25rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.75rem; } }
.hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #a78bfa 0%, #6f3df5 50%, #c4b5fd 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGradient 6s ease infinite;
}
@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtitle */
.hero-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
@media (min-width: 1280px) { .hero-subtitle { font-size: 1.35rem; } }

/* CTAs */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: .5rem;
}
@media (max-width: 1023px) { .hero-actions { justify-content: center; } }
.hero-btn-primary,
.hero-btn-secondary {
    padding: 1rem 2rem !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    border-radius: .75rem !important;
    letter-spacing: .3px;
}
.hero-btn-primary i,
.hero-btn-secondary i { font-size: 1.25rem; }
@media (min-width: 1280px) {
    .hero-btn-primary, .hero-btn-secondary {
        padding: 1.15rem 2.5rem !important;
        font-size: 1.15rem !important;
    }
}
.hero-btn-primary {
    box-shadow: 0 10px 30px rgba(111, 61, 245, 0.45), 0 0 0 1px rgba(167, 139, 250, 0.3) !important;
}

/* Stats — borderless inline */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1rem 0 0;
    margin-top: 1rem;
}
@media (min-width: 768px) { .hero-stats { gap: 2.5rem; padding: 1.25rem 0 0; } }
.hero-stat { text-align: center; }
.hero-stat-value {
    font-family: 'Readex Pro', sans-serif;
    background: linear-gradient(135deg, #a78bfa, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: .3rem;
}
@media (min-width: 768px) { .hero-stat-value { font-size: 2.25rem; } }
@media (min-width: 1280px) { .hero-stat-value { font-size: 2.6rem; } }
.hero-stat-label {
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 500;
}
@media (min-width: 768px) { .hero-stat-label { font-size: .9rem; } }

/* Trust badges */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    margin-top: .5rem;
    color: #94a3b8;
    font-size: .85rem;
}
@media (max-width: 1023px) { .hero-trust { justify-content: center; } }
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.hero-trust-item i {
    color: #a78bfa;
    font-size: 1.1rem;
}

/* Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
@media (min-width: 768px) { .hero-visual { min-height: 480px; } }
.hero-visual-glow {
    display: none;
}
.hero-img {
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 1;
}
.hero-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(111, 61, 245, 0.5));
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Floating info cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.1rem;
    background: rgba(15, 13, 30, 0.85);
    border: 1px solid rgba(111, 61, 245, 0.35);
    border-radius: .85rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
    animation: heroFloat 5s ease-in-out infinite;
}
.hero-floating-card i {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(111,61,245,0.2);
    color: #a78bfa;
    border-radius: 50%;
    font-size: 1.1rem;
}
.hero-fc-value {
    font-family: 'Readex Pro', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}
.hero-fc-label {
    color: #94a3b8;
    font-size: .7rem;
    margin-top: 2px;
}
.hero-fc-1 { top: 12%; left: 0; animation-delay: 0s; }
.hero-fc-2 { bottom: 14%; right: 0; animation-delay: -3s; }
@media (max-width: 767px) {
    .hero-fc-1 { top: 5%; left: 5%; }
    .hero-fc-2 { bottom: 5%; right: 5%; }
    .hero-floating-card { padding: .65rem .85rem; font-size: .85rem; }
    .hero-floating-card i { width: 32px; height: 32px; font-size: 1rem; }
}

/* ==========================================================================
   CALCULATOR SECTION
   ========================================================================== */
.calc-wrap {
    max-width: 960px;
    margin: 0 auto;
}
.calc-card {
    background: rgba(15, 13, 30, 0.7);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.calc-label {
    display: block;
    color: #cbd5e1;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: .6rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.calc-input-wrap {
    position: relative;
    margin-bottom: 1.5rem;
}
.calc-input {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem 1rem 3.5rem;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(111, 61, 245, 0.4);
    border-radius: .75rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Readex Pro', sans-serif;
    transition: all .2s;
    -moz-appearance: textfield;
    appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.calc-input:focus {
    outline: none;
    border-color: #a78bfa;
    background: rgba(111, 61, 245, 0.12);
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.18);
}
.calc-input-prefix {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    color: #a78bfa;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Readex Pro', sans-serif;
    pointer-events: none;
}
.calc-slider-wrap {
    margin-top: .5rem;
}
.calc-days-display {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .75rem;
}
.calc-days-display .num {
    color: #a78bfa;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}
.calc-days-display .unit {
    color: #fff;
    font-size: .9rem;
    margin-left: .25rem;
}
.calc-range {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(111, 61, 245, 0.2);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    border: 3px solid #0c0a17;
    box-shadow: 0 0 0 2px #a78bfa, 0 4px 12px rgba(111, 61, 245, 0.5);
    cursor: grab;
    transition: transform .15s;
}
.calc-range::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.calc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    border: 3px solid #0c0a17;
    box-shadow: 0 0 0 2px #a78bfa, 0 4px 12px rgba(111, 61, 245, 0.5);
    cursor: grab;
}
.calc-range-marks {
    display: flex;
    justify-content: space-between;
    margin-top: .5rem;
    color: #94a3b8;
    font-size: .75rem;
}
.calc-result {
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #6f3df5 0%, #a78bfa 100%);
    box-shadow: 0 15px 40px rgba(111, 61, 245, 0.4);
    position: relative;
    overflow: hidden;
}
.calc-result::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}
.calc-result-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: .75rem;
    font-weight: 500;
    position: relative;
}
.calc-result-amount {
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: .5rem;
    flex-wrap: wrap;
}
.calc-result-amount .currency {
    font-size: 1.25rem;
    opacity: .8;
}
.calc-result-note {
    color: rgba(255, 255, 255, 0.75);
    font-size: .75rem;
    margin-top: 1rem;
    position: relative;
}
@media (min-width: 768px) {
    .calc-result-amount { font-size: 3.5rem; }
    .calc-input { font-size: 1.75rem; }
}

/* ==========================================================================
   INVEST / PAY-NOW MODAL — global (used on home, plans, deposit pages)
   ========================================================================== */
.invest-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.invest-modal.is-open {
    display: flex;
    animation: investFadeIn .2s ease;
}
@keyframes investFadeIn { from { opacity: 0; } to { opacity: 1; } }
.invest-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.invest-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #0c0a17;
    border: 1px solid rgba(111, 61, 245, 0.4);
    border-radius: 1rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: investSlide .25s ease;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}
@keyframes investSlide {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.invest-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(111, 61, 245, 0.2);
}
.invest-modal-close {
    background: transparent;
    border: 0;
    color: #94a3b8;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}
.invest-modal-close:hover { color: #fff; }
.invest-modal-body { padding: 1.25rem; }
.invest-modal-foot {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    gap: .5rem;
}
.invest-modal-foot .btn { flex: 1; }
.invest-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    background: rgba(111, 61, 245, 0.08);
    border: 1px solid rgba(111, 61, 245, 0.2);
    border-radius: .5rem;
}
.invest-balance-row .label { color: #94a3b8; font-size: .8rem; }
.invest-balance-row .value {
    color: #a78bfa;
    font-weight: 700;
    font-family: 'Readex Pro', sans-serif;
    font-size: 1rem;
}
.invest-input-wrap { position: relative; }
.invest-input {
    display: block;
    width: 100%;
    padding: .85rem 1rem .85rem 2.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(111, 61, 245, 0.4);
    border-radius: .5rem;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Readex Pro', sans-serif;
    transition: all .2s;
}
.invest-input:focus {
    outline: none;
    border-color: #a78bfa;
    background: rgba(111, 61, 245, 0.1);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}
.invest-input.error { border-color: #ef4444; }
.invest-input-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a78bfa;
    font-weight: 700;
    font-family: 'Readex Pro', sans-serif;
    font-size: 1.1rem;
    pointer-events: none;
}
.invest-roi-preview {
    margin-top: 1rem;
    padding: .85rem 1rem;
    background: linear-gradient(135deg, rgba(111, 61, 245, 0.12), rgba(167, 139, 250, 0.04));
    border: 1px solid rgba(111, 61, 245, 0.25);
    border-radius: .5rem;
}
.invest-roi-row {
    display: flex;
    justify-content: space-between;
    padding: .3rem 0;
    font-size: .85rem;
}
.invest-roi-row .label { color: #94a3b8; }
.invest-roi-row .value {
    color: #fff;
    font-weight: 600;
    font-family: 'Readex Pro', sans-serif;
}
.invest-roi-row.total {
    border-top: 1px solid rgba(111, 61, 245, 0.2);
    margin-top: .25rem;
    padding-top: .5rem;
    font-size: 1rem;
    font-weight: 700;
}
.invest-error {
    margin-top: .75rem;
    padding: .65rem .85rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: .5rem;
    color: #fca5a5;
    font-size: .85rem;
}
.invest-loading .btn-primary {
    opacity: .7;
    pointer-events: none;
}
.invest-loading .btn-primary i {
    animation: investSpin 1s linear infinite;
}
@keyframes investSpin { to { transform: rotate(360deg); } }

/* ==========================================================================
   PAYMENT SYSTEM — global design for all payment/deposit/invest pages
   ========================================================================== */

/* Payment page wrapper */
.payment-page { max-width: 1200px; margin: 0 auto; }

/* Hero block with breadcrumb + summary chip */
.payment-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(111,61,245,0.18) 0%, rgba(15,13,30,0.6) 60%);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: 1.25rem;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
@media (min-width: 768px) { .payment-hero { padding: 2.25rem; margin-bottom: 2rem; } }
.payment-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}
.payment-hero-inner {
    position: relative;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.payment-hero-title-wrap { display: flex; align-items: center; gap: 1rem; flex: 1; min-width: 0; }
.payment-hero-icon {
    width: 56px; height: 56px;
    border-radius: .9rem;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(111, 61, 245, 0.45);
}
.payment-hero h1 {
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}
@media (min-width: 768px) { .payment-hero h1 { font-size: 1.85rem; } }
.payment-hero .subtitle {
    color: #94a3b8;
    font-size: .9rem;
    margin-top: .25rem;
}
.payment-hero-trx {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .9rem;
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: 999px;
    font-family: 'Readex Pro', sans-serif;
    color: #cbd5e1;
    font-size: .85rem;
}
.payment-hero-trx i { color: #a78bfa; }
.payment-hero-trx strong { color: #fff; letter-spacing: .5px; }

/* Two-column grid (instructions/details + summary) */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .payment-grid { grid-template-columns: 1.3fr 1fr; gap: 2rem; margin-bottom: 2rem; } }

/* Payment card (reusable container) */
.payment-card {
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.25);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: border-color .25s;
}
.payment-card:hover { border-color: rgba(167, 139, 250, 0.45); }
@media (min-width: 768px) { .payment-card { padding: 2rem; } }
.payment-card-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(111, 61, 245, 0.15);
}
.payment-card-title i {
    width: 36px; height: 36px;
    border-radius: .55rem;
    background: rgba(111, 61, 245, 0.2);
    color: #a78bfa;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

/* Summary list */
.payment-summary { list-style: none; padding: 0; margin: 0; }
.payment-summary li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .85rem 0;
    border-bottom: 1px dashed rgba(111, 61, 245, 0.15);
}
.payment-summary li:last-child { border-bottom: 0; }
.payment-summary .label {
    color: #94a3b8;
    font-size: .9rem;
    font-weight: 500;
}
.payment-summary .value {
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    font-family: 'Readex Pro', sans-serif;
    text-align: right;
    word-break: break-word;
}
.payment-summary .value.text-mono {
    font-family: 'Roboto Slab', monospace;
    background: rgba(111, 61, 245, 0.1);
    padding: .25rem .5rem;
    border-radius: .35rem;
    font-size: .85rem;
}
.payment-summary li.total {
    margin-top: .75rem;
    padding: 1.1rem 1rem;
    background: linear-gradient(135deg, rgba(111, 61, 245, 0.2), rgba(167, 139, 250, 0.05));
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: .75rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.35);
}
.payment-summary li.total .label { color: #fff; font-weight: 700; font-size: 1rem; }
.payment-summary li.total .value {
    background: linear-gradient(135deg, #a78bfa, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Instruction text block */
.payment-instructions {
    color: #cbd5e1;
    font-size: .95rem;
    line-height: 1.75;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(111, 61, 245, 0.2);
}
.payment-instructions p { margin: 0 0 .75rem; color: inherit; font-size: inherit; line-height: inherit; }
.payment-instructions ul, .payment-instructions ol { margin: .5rem 0 .5rem 1.25rem; padding-left: 0; list-style: disc; color: #cbd5e1; }
.payment-instructions ol { list-style: decimal; }
.payment-instructions li { margin-bottom: .35rem; }
.payment-instructions strong, .payment-instructions b { color: #fff; }
.payment-instructions a { color: #a78bfa; text-decoration: underline; }

/* Form fields inside payment card */
.payment-form { display: flex; flex-direction: column; gap: 1.25rem; }
.payment-form label {
    color: #cbd5e1;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: .5rem;
    display: block;
}
.payment-form label .required { color: #fca5a5; margin-left: .2rem; }
.payment-form input[type="text"],
.payment-form input[type="number"],
.payment-form input[type="email"],
.payment-form input[type="tel"],
.payment-form input[type="file"],
.payment-form textarea,
.payment-form select {
    display: block;
    width: 100%;
    padding: .85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(111, 61, 245, 0.3);
    border-radius: .65rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all .2s;
}
.payment-form input:focus,
.payment-form textarea:focus,
.payment-form select:focus {
    outline: none;
    border-color: #a78bfa;
    background: rgba(111, 61, 245, 0.1);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
}
.payment-form input[type="file"] { padding: .65rem 1rem; cursor: pointer; }
.payment-form textarea { resize: vertical; min-height: 110px; }
.payment-form .field-hint {
    color: #94a3b8;
    font-size: .8rem;
    margin-top: .35rem;
    display: block;
}
.payment-form .submit-row {
    margin-top: .5rem;
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.payment-form .submit-row .btn { min-width: 200px; padding: .9rem 1.5rem !important; font-size: 1rem !important; }

/* Gateway picker grid */
.gateway-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
@media (min-width: 640px) { .gateway-picker-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .gateway-picker-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.gateway-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(15, 13, 30, 0.6);
    border: 1.5px solid rgba(111, 61, 245, 0.2);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    transition: all .3s ease;
    overflow: hidden;
}
.gateway-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(111,61,245,0.06), transparent 50%);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}
.gateway-card:hover {
    border-color: rgba(167, 139, 250, 0.55);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(111, 61, 245, 0.2);
}
.gateway-card:hover::before { opacity: 1; }
.gateway-card-img {
    height: 56px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}
.gateway-card-fallback {
    width: 64px; height: 56px;
    border-radius: .65rem;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700; font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(111, 61, 245, 0.35);
    position: relative;
    z-index: 1;
}
.gateway-card-name {
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    margin: 0 0 1rem;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    min-height: 2.5em;
    display: flex;
    align-items: center;
}
.gateway-card .btn {
    width: 100%;
    padding: .65rem 1rem !important;
    font-size: .85rem !important;
    position: relative;
    z-index: 1;
}

/* Crypto address card (for crypto-pay gateways) */
.crypto-address-box {
    margin-top: 1.25rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px dashed rgba(111, 61, 245, 0.45);
    border-radius: .75rem;
    text-align: center;
}
.crypto-address-box .label {
    color: #94a3b8;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .65rem;
}
.crypto-address-box .address {
    color: #fff;
    font-family: 'Roboto Slab', monospace;
    font-size: .95rem;
    word-break: break-all;
    padding: .65rem 1rem;
    background: rgba(111, 61, 245, 0.1);
    border-radius: .5rem;
    margin-bottom: .65rem;
}
.crypto-address-box .copy-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .9rem;
    background: rgba(111, 61, 245, 0.2);
    border: 1px solid rgba(111, 61, 245, 0.4);
    border-radius: .5rem;
    color: #a78bfa;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    transition: all .2s;
}
.crypto-address-box .copy-btn:hover { background: rgba(111, 61, 245, 0.35); color: #fff; }

/* Status badges */
.payment-status {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.payment-status.pending { background: rgba(245, 158, 11, 0.15); color: #fcd34d; border: 1px solid rgba(245, 158, 11, 0.3); }
.payment-status.success { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.3); }
.payment-status.failed { background: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }
.payment-status .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px currentColor;
    opacity: .3;
}

/* ==========================================================================
   PAGE HERO (sub-page banner — used on Plans, Blog, etc.)
   ========================================================================== */
.page-hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(111, 61, 245, 0.2);
    background: #0c0a17;
    isolation: isolate;
}
@media (min-width: 768px) { .page-hero-section { padding: 7rem 0 5rem; } }
@media (min-width: 1024px) { .page-hero-section { padding: 8rem 0 6rem; } }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.65;
}
.page-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12,10,23,0.4) 0%, rgba(12,10,23,0.95) 100%),
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(111,61,245,0.25) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.page-hero-bg-orb {
    position: absolute;
    top: -30%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .page-hero-content { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}

.page-hero-inner { text-align: center; }
@media (min-width: 1024px) { .page-hero-inner { text-align: left; } }

.page-hero-title {
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin: 1.25rem 0;
}
@media (min-width: 640px) { .page-hero-title { font-size: 2.75rem; } }
@media (min-width: 768px) { .page-hero-title { font-size: 3.25rem; } }
@media (min-width: 1280px) { .page-hero-title { font-size: 3.75rem; } }
.page-hero-title .accent {
    background: linear-gradient(135deg, #a78bfa 0%, #6f3df5 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 auto 1.75rem;
    max-width: 540px;
}
@media (min-width: 1024px) {
    .page-hero-subtitle { font-size: 1.15rem; margin-left: 0; margin-right: 0; }
}

.page-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.25);
    border-radius: 999px;
    list-style: none;
    margin: 0;
    backdrop-filter: blur(8px);
}
.page-hero-breadcrumb li { display: inline-flex; align-items: center; }
.page-hero-breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s;
}
.page-hero-breadcrumb a:hover { color: #a78bfa; }
.page-hero-breadcrumb i {
    color: #6f3df5;
    font-size: .85rem;
}
.page-hero-breadcrumb .active {
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
}

/* Quick stats card */
.page-hero-quick-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: 1.25rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
@media (min-width: 640px) {
    .page-hero-quick-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .page-hero-quick-stats { grid-template-columns: 1fr; gap: .85rem; padding: 1.75rem; }
}
.page-hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem;
    background: rgba(111, 61, 245, 0.06);
    border: 1px solid rgba(111, 61, 245, 0.15);
    border-radius: .75rem;
    transition: all .25s;
}
.page-hero-stat:hover {
    background: rgba(111, 61, 245, 0.12);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-2px);
}
.page-hero-stat-icon {
    width: 48px; height: 48px;
    border-radius: .75rem;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(111, 61, 245, 0.4);
}
.page-hero-stat-val {
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: .15rem;
}
.page-hero-stat-label {
    color: #94a3b8;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ==========================================================================
   PARTNERS SECTION — bigger logos
   ========================================================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}
@media (min-width: 640px) { .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
@media (min-width: 1280px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto;
    }
}
.partner-item {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(15, 13, 30, 0.4);
    border: 1px solid rgba(111, 61, 245, 0.15);
    border-radius: 1rem;
    transition: all .3s ease;
    opacity: 0.6;
    filter: grayscale(60%);
}
@media (min-width: 768px) { .partner-item { height: 120px; padding: 1.5rem 2rem; } }
@media (min-width: 1024px) { .partner-item { height: 140px; padding: 1.75rem 2.5rem; } }
.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(15, 13, 30, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(111, 61, 245, 0.2);
}
.partner-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .3s ease;
}
.partner-item:hover img { transform: scale(1.05); }

/* ==========================================================================
   PAGE SECTIONS — bigger padding, polished design
   ========================================================================== */
.section {
    position: relative;
    padding: 4rem 0;
}
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
@media (min-width: 1280px) { .section { padding: 8rem 0; } }

.section-alt {
    background: linear-gradient(180deg, rgba(15, 13, 30, 0) 0%, rgba(20, 15, 40, 0.5) 50%, rgba(15, 13, 30, 0) 100%);
}

.section-glow-top::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(111, 61, 245, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.section-glow-left::before {
    content: '';
    position: absolute;
    top: 50%; left: -10%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(111, 61, 245, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.section-glow-right::before {
    content: '';
    position: absolute;
    top: 50%; right: -10%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.12) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.section > .container-base { position: relative; z-index: 1; }

.section-header-block {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { .section-header-block { margin-bottom: 4rem; } }
@media (min-width: 1024px) { .section-header-block { margin-bottom: 5rem; } }

.section-eyebrow {
    display: inline-block;
    padding: .4rem 1rem;
    background: rgba(111, 61, 245, 0.12);
    border: 1px solid rgba(111, 61, 245, 0.35);
    border-radius: 999px;
    color: #a78bfa;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.section-title {
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin: 0 0 1.25rem;
}
@media (min-width: 640px) { .section-title { font-size: 2.75rem; } }
@media (min-width: 768px) { .section-title { font-size: 3.25rem; } }
@media (min-width: 1280px) { .section-title { font-size: 3.75rem; } }
.section-title .accent {
    background: linear-gradient(135deg, #a78bfa 0%, #6f3df5 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { .section-subtitle { font-size: 1.15rem; } }
@media (min-width: 1024px) { .section-subtitle { font-size: 1.2rem; } }

/* Bigger feature/info cards inside sections */
.section .card-violet {
    padding: 2rem;
    border-radius: 1.25rem;
    transition: all .3s ease;
}
@media (min-width: 768px) { .section .card-violet { padding: 2.25rem; } }
.section .card-violet:hover {
    border-color: rgba(167, 139, 250, 0.55);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(111, 61, 245, 0.18);
}

/* Larger icons in section cards */
.section-card-icon {
    width: 72px; height: 72px;
    border-radius: 1rem;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(111, 61, 245, 0.25), rgba(167, 139, 250, 0.08));
    border: 1px solid rgba(111, 61, 245, 0.3);
    color: #a78bfa;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .section-card-icon { width: 84px; height: 84px; font-size: 2.4rem; } }

.section-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 .75rem;
    line-height: 1.3;
}
@media (min-width: 1024px) { .section-card-title { font-size: 1.4rem; } }

.section-card-text {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ accordion bigger */
.section .faq-item {
    background: rgba(15, 13, 30, 0.6);
    border: 1px solid rgba(111, 61, 245, 0.2);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    transition: all .25s;
}
.section .faq-item[open] {
    border-color: rgba(167, 139, 250, 0.45);
    background: linear-gradient(135deg, rgba(111, 61, 245, 0.1), rgba(15, 13, 30, 0.7));
}
.section .faq-item summary {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}
@media (min-width: 1024px) { .section .faq-item summary { font-size: 1.15rem; } }
.section .faq-item summary span:first-child { padding-right: 1rem; }
.section .faq-item p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(111, 61, 245, 0.2);
}

/* ==========================================================================
   FOOTER (site-footer) — bigger text + padding
   ========================================================================== */
.site-footer {
    position: relative;
    background:
        linear-gradient(180deg, #0c0a17 0%, #15102b 100%);
    border-top: 1px solid rgba(111, 61, 245, 0.25);
    padding: 5rem 0 2rem;
    margin-top: 4rem;
    overflow: hidden;
    isolation: isolate;
}
@media (min-width: 768px) {
    .site-footer { padding: 6rem 0 2.5rem; margin-top: 5rem; }
}
@media (min-width: 1024px) {
    .site-footer { padding: 7rem 0 3rem; margin-top: 6rem; }
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(111, 61, 245, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.site-footer .container-base { position: relative; z-index: 1; }

/* Footer grid */
.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 640px) { .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2.5rem; } }
@media (min-width: 1024px) { .site-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 3.5rem 3rem; } }

/* Brand column */
.site-footer-brand { display: flex; flex-direction: column; }
.footer-logo { height: 48px; width: auto; }
@media (min-width: 1024px) { .footer-logo { height: 56px; } }
.site-footer-tagline {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
    max-width: 380px;
}
@media (min-width: 1024px) { .site-footer-tagline { font-size: 1.05rem; } }

/* Social icons */
.site-footer-social {
    display: flex;
    gap: .85rem;
    margin-top: 1.5rem;
}
.site-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(111, 61, 245, 0.1);
    border: 1px solid rgba(111, 61, 245, 0.25);
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all .2s;
}
.site-footer-social-link:hover {
    background: var(--main-color, #6f3df5);
    border-color: var(--main-color, #6f3df5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(111, 61, 245, 0.4);
}

/* Column heading */
.site-footer-heading {
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    position: relative;
    padding-bottom: .75rem;
}
@media (min-width: 1024px) { .site-footer-heading { font-size: 1.15rem; } }
.site-footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 3px;
    background: linear-gradient(90deg, #6f3df5, #a78bfa);
    border-radius: 3px;
}

/* Footer links */
.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.site-footer-links li { margin: 0; }
.site-footer-links a,
.site-footer-links span {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: color .2s, transform .2s;
}
@media (min-width: 1024px) { .site-footer-links a, .site-footer-links span { font-size: 1.05rem; } }
.site-footer-links a:hover {
    color: #a78bfa;
    transform: translateX(3px);
}
.site-footer-links i {
    color: #a78bfa;
    font-size: 1.1rem;
    width: 20px;
}

/* Subscribe form */
.site-footer-subscribe {
    display: flex;
    gap: .5rem;
    margin-top: 1.5rem;
}
.site-footer-subscribe .subscribe-email {
    flex: 1;
    min-width: 0;
    padding: .85rem 1rem;
    background: rgba(111, 61, 245, 0.08);
    border: 1px solid rgba(111, 61, 245, 0.3);
    border-radius: .6rem;
    color: #fff;
    font-size: .95rem;
    font-family: inherit;
    transition: all .2s;
}
.site-footer-subscribe .subscribe-email::placeholder { color: #94a3b8; }
.site-footer-subscribe .subscribe-email:focus {
    outline: none;
    border-color: #a78bfa;
    background: rgba(111, 61, 245, 0.15);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}
.site-footer-subscribe .btn { padding: .85rem 1.25rem !important; font-size: .9rem !important; }

/* Bottom row */
.site-footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(111, 61, 245, 0.2);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .site-footer-bottom { flex-direction: row; text-align: left; margin-top: 5rem; padding-top: 2.5rem; }
}
.site-footer-copyright {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}
.site-footer-disclaimer {
    color: #94a3b8;
    font-size: .9rem;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   HEADER (site-header) — bigger, professional
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(12, 10, 23, 0.88);
    border-bottom: 1px solid rgba(111, 61, 245, 0.25);
    transition: all .25s ease;
}
.site-header.scrolled {
    background: rgba(12, 10, 23, 0.97);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5), 0 0 1px rgba(111, 61, 245, 0.3);
    border-bottom-color: rgba(111, 61, 245, 0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
    padding: .5rem 0;
}
@media (min-width: 768px) { .header-inner { gap: 2rem; min-height: 88px; } }
@media (min-width: 1280px) { .header-inner { min-height: 96px; } }

/* Brand */
.header-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity .2s;
}
.header-brand:hover { opacity: .85; color: inherit; }
.header-logo {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(111, 61, 245, 0.4));
}
@media (min-width: 768px) { .header-logo { height: 42px; max-width: 200px; } }
@media (min-width: 1280px) { .header-logo { height: 46px; max-width: 220px; } }
.header-brand-name {
    font-family: 'Readex Pro', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    line-height: 1;
    display: none;
}
@media (min-width: 640px) {
    .header-brand-name { display: inline; font-size: 1.35rem; }
}
@media (min-width: 1280px) {
    .header-brand-name { font-size: 1.55rem; letter-spacing: 1px; }
}

/* Nav */
.header-nav {
    display: none;
    flex-grow: 1;
    justify-content: center;
    min-width: 0;
}
@media (min-width: 1024px) {
    .header-nav { display: flex; }
}
.header-nav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: .15rem;
    margin: 0; padding: 0;
    list-style: none;
}
@media (min-width: 1280px) { .header-nav ul { gap: .5rem; } }
@media (min-width: 1536px) { .header-nav ul { gap: .75rem; } }

.header-nav-link {
    display: inline-block;
    color: #e2e8f0;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    padding: .55rem .75rem;
    border-radius: .5rem;
    transition: all .2s;
    position: relative;
    white-space: nowrap;
}
@media (min-width: 1280px) { .header-nav-link { font-size: 1rem; padding: .65rem 1rem; } }
@media (min-width: 1536px) { .header-nav-link { font-size: 1.05rem; padding: .75rem 1.25rem; } }
.header-nav-link:hover {
    color: #fff;
    background: rgba(111, 61, 245, 0.12);
}
.header-nav-link.active {
    color: #fff;
    background: rgba(111, 61, 245, 0.2);
    font-weight: 600;
}
.header-nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 24px; height: 3px;
    background: linear-gradient(90deg, #6f3df5, #a78bfa);
    border-radius: 3px 3px 0 0;
}

/* Right side container */
.header-right {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: .5rem;
}
@media (min-width: 1280px) { .header-right { gap: .65rem; } }
@media (min-width: 1536px) { .header-right { gap: .85rem; } }

/* Header buttons (bigger than default btn) */
.header-btn {
    padding: .55rem .9rem !important;
    font-size: .85rem !important;
    font-weight: 600 !important;
    border-radius: .55rem !important;
    letter-spacing: .2px;
    white-space: nowrap;
}
@media (min-width: 1280px) {
    .header-btn { padding: .65rem 1.1rem !important; font-size: .9rem !important; }
}
@media (min-width: 1536px) {
    .header-btn { padding: .75rem 1.35rem !important; font-size: .95rem !important; }
}

/* Mobile menu toggle */
.header-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: .6rem;
    background: rgba(111, 61, 245, 0.1);
    border: 1px solid rgba(111, 61, 245, 0.25);
    color: #fff;
    cursor: pointer;
    transition: background .2s;
}
.header-mobile-toggle:hover { background: rgba(111, 61, 245, 0.2); }

.site-header nav a:hover { color: #a78bfa; }

/* Language switcher (compact for header) */
.lang-flag {
    padding: .4rem .65rem !important;
    font-size: .8rem !important;
}
.lang-flag .flag-img {
    width: 20px !important;
    height: 14px !important;
    object-fit: cover;
    flex-shrink: 0;
}
@media (min-width: 1536px) {
    .lang-flag { padding: .5rem .85rem !important; font-size: .9rem !important; }
    .lang-flag .flag-img { width: 24px !important; height: 16px !important; }
}

/* Balance chip (compact) */
.user-balance-chip {
    padding: .4rem .75rem !important;
    font-size: .8rem !important;
}
.user-balance-chip i { font-size: 1rem; }
@media (min-width: 1536px) {
    .user-balance-chip { padding: .55rem 1rem !important; font-size: .9rem !important; }
}

/* Notification button (compact) */
.notif-btn {
    width: 36px !important;
    height: 36px !important;
}
.notif-btn i { font-size: 1.05rem !important; }
@media (min-width: 1536px) {
    .notif-btn { width: 42px !important; height: 42px !important; }
    .notif-btn i { font-size: 1.2rem !important; }
}

/* User dropdown button (compact) */
.user-dd-btn {
    padding: .35rem .65rem .35rem .35rem !important;
    font-size: .8rem !important;
}
.user-avatar {
    width: 28px !important;
    height: 28px !important;
    font-size: .75rem !important;
}
@media (min-width: 1536px) {
    .user-dd-btn { padding: .5rem .9rem .5rem .5rem !important; font-size: .9rem !important; }
    .user-avatar { width: 34px !important; height: 34px !important; font-size: .85rem !important; }
}

/* Language switcher */
.lang-flag {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .35rem .65rem; border-radius: .5rem;
    transition: all .2s; cursor: pointer;
    background: rgba(111, 61, 245, 0.1);
    border: 1px solid rgba(111, 61, 245, 0.3);
    color: #fff; text-decoration: none;
}
.lang-flag:hover { background: rgba(111, 61, 245, 0.25); border-color: rgba(111, 61, 245, 0.6); color: #fff; }
.lang-flag .flag-img { width: 22px; height: 16px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.1); }
.lang-flag.active {
    background: linear-gradient(135deg, rgba(111,61,245,0.4) 0%, rgba(167,139,250,0.2) 100%);
    border-color: #a78bfa; color: #fff; font-weight: 600;
    box-shadow: 0 0 0 2px rgba(167,139,250,0.15);
}
.lang-menu-dd {
    display: none; position: absolute; right: 0; top: calc(100% + 6px);
    min-width: 180px; background: #0c0a17;
    border: 1px solid rgba(111,61,245,0.35);
    border-radius: .5rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    z-index: 60; overflow: hidden;
}
.lang-menu-dd.is-open { display: block; }
.lang-menu-dd a {
    display: flex; align-items: center; gap: .6rem;
    padding: .6rem .85rem; color: #cbd5e1;
    text-decoration: none; transition: all .15s;
    font-size: .85rem; position: relative;
}
.lang-menu-dd .flag-img {
    width: 24px !important;
    height: 16px !important;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.lang-menu-dd a:hover { background: rgba(111, 61, 245, 0.15); color: #fff; }
.lang-menu-dd a.active {
    background: linear-gradient(90deg, rgba(111,61,245,0.35) 0%, rgba(111,61,245,0.15) 100%);
    color: #fff; font-weight: 600;
    border-left: 3px solid #a78bfa;
    padding-left: calc(.85rem - 3px);
}
.lang-menu-dd a.active::after {
    content: "\f00c";
    font-family: "Line Awesome Free", "Font Awesome 6 Free";
    font-weight: 900; margin-left: auto;
    color: #a78bfa; font-size: .8rem;
}

/* Balance chip */
.user-balance-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .4rem .75rem;
    background: linear-gradient(135deg, rgba(111,61,245,0.25), rgba(167,139,250,0.15));
    border: 1px solid rgba(111,61,245,0.4);
    border-radius: 999px;
    color: #fff; font-size: .85rem; font-weight: 600;
}
.user-balance-chip i { color: #a78bfa; }

/* Notification bell */
.notif-btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(111,61,245,0.1);
    border: 1px solid rgba(111,61,245,0.3);
    color: #fff; cursor: pointer;
    transition: background .2s; text-decoration: none;
}
.notif-btn:hover { background: rgba(111,61,245,0.25); }
.notif-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: #ef4444; color: #fff;
    font-size: .65rem; font-weight: 700;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 2px #0c0a17;
}

/* User dropdown */
.user-dd { position: relative; }
.user-dd-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem .65rem .4rem .4rem;
    background: rgba(111,61,245,0.15);
    border: 1px solid rgba(111,61,245,0.3);
    border-radius: 999px;
    color: #fff; cursor: pointer;
    transition: background .2s; text-decoration: none;
    font-size: .85rem;
}
.user-dd-btn:hover { background: rgba(111,61,245,0.25); }
.user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .75rem;
    flex-shrink: 0; overflow: hidden;
}
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-dd-caret { transition: transform .2s; }
.user-dd.is-open .user-dd-caret { transform: rotate(180deg); }
.user-dd-menu {
    display: none; position: absolute; right: 0; top: calc(100% + 8px);
    min-width: 220px; background: #0c0a17;
    border: 1px solid rgba(111,61,245,0.35);
    border-radius: .75rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    z-index: 60; overflow: hidden;
}
.user-dd.is-open .user-dd-menu { display: block; }
.user-dd-head { padding: .85rem; border-bottom: 1px solid rgba(111,61,245,0.25); }
.user-dd-head .name { color: #fff; font-weight: 700; font-size: .9rem; }
.user-dd-head .email { color: #94a3b8; font-size: .75rem; word-break: break-all; }
.user-dd-menu a, .user-dd-menu button {
    display: flex; align-items: center; gap: .65rem;
    padding: .6rem .85rem; color: #cbd5e1;
    text-decoration: none; transition: background .15s;
    font-size: .85rem; width: 100%;
    border: 0; background: transparent;
    text-align: left; cursor: pointer;
}
.user-dd-menu a:hover, .user-dd-menu button:hover { background: rgba(111,61,245,0.15); color: #fff; }
.user-dd-menu i { width: 18px; color: #a78bfa; }
.user-dd-menu .divider { height: 1px; background: rgba(111,61,245,0.2); margin: .25rem 0; }
.user-dd-menu .logout-link { color: #fca5a5; }
.user-dd-menu .logout-link i { color: #ef4444; }

/* ==========================================================================
   DASHBOARD
   ========================================================================== */

/* Stat cards */
.stat-card {
    position: relative;
    background: rgba(15, 13, 30, 0.7);
    border: 1px solid rgba(111, 61, 245, 0.2);
    border-radius: 1rem;
    padding: 1.25rem;
    overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; inset: 0;
    opacity: 0.08; pointer-events: none;
}
.stat-card.violet::before { background: linear-gradient(135deg, #6f3df5, transparent 70%); }
.stat-card.cyan::before   { background: linear-gradient(135deg, #06b6d4, transparent 70%); }
.stat-card.green::before  { background: linear-gradient(135deg, #10b981, transparent 70%); }
.stat-card.orange::before { background: linear-gradient(135deg, #f59e0b, transparent 70%); }
.stat-card.purple::before { background: linear-gradient(135deg, #a78bfa, transparent 70%); }
.stat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.stat-icon.violet { background: rgba(111,61,245,0.15); color: #a78bfa; }
.stat-icon.cyan   { background: rgba(6,182,212,0.15); color: #67e8f9; }
.stat-icon.green  { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.stat-icon.orange { background: rgba(245,158,11,0.15); color: #fcd34d; }
.stat-icon.purple { background: rgba(167,139,250,0.15); color: #c4b5fd; }

/* Plan mini cards */
.plan-mini {
    position: relative; border-radius: 1rem; padding: 1.25rem;
    text-align: center; color: #fff;
    overflow: hidden; transition: transform .3s;
    display: flex; flex-direction: column;
}
.plan-mini:hover { transform: translateY(-4px); }
.plan-mini h6 { font-size: .85rem; font-weight: 500; margin: 0 0 .5rem; opacity: .9; min-height: 2.2em; }
.plan-mini .roi { font-family: 'Readex Pro', sans-serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.plan-mini .duration { font-size: .8rem; opacity: .85; margin-top: .2rem; }
.plan-mini .price-range { font-size: .7rem; opacity: .8; margin-top: .75rem; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.15); display:flex; justify-content:space-between; gap: .25rem; flex-wrap: wrap; }
.plan-mini .view-btn { display:inline-block; margin-top: .75rem; font-size: .65rem; font-weight: 700; letter-spacing: 1px; padding: .4rem .75rem; border-radius: .5rem; background: rgba(255,255,255,.15); color: #fff; }
.plan-mini.violet { background: linear-gradient(135deg, #6d28d9, #4c1d95); }
.plan-mini.cyan   { background: linear-gradient(135deg, #0e7490, #155e75); }
.plan-mini.green  { background: linear-gradient(135deg, #047857, #064e3b); }
.plan-mini.orange { background: linear-gradient(135deg, #b45309, #92400e); }
.plan-mini.red    { background: linear-gradient(135deg, #9f1239, #831843); }

/* Donut chart */
.donut-wrap { position: relative; }
.donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.donut-center .label { color: #94a3b8; font-size: .75rem; }
.donut-center .value { color: #fff; font-size: 1.4rem; font-weight: 700; font-family: 'Readex Pro', sans-serif; }

/* Quick actions */
.quick-action {
    display: flex; align-items: center; gap: .75rem;
    padding: .75rem;
    background: rgba(111,61,245,0.05);
    border: 1px solid rgba(111,61,245,0.15);
    border-radius: .75rem;
    margin-bottom: .5rem;
    color: #fff; text-decoration: none;
    transition: all .2s;
}
.quick-action:hover { background: rgba(111,61,245,0.12); border-color: rgba(111,61,245,0.3); color: #fff; }
.quick-action-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(111,61,245,0.15); color: #a78bfa;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.quick-action-text { flex: 1; }
.quick-action-text .title { font-size: .85rem; font-weight: 600; }
.quick-action-text .sub { font-size: .7rem; color: #94a3b8; }

/* Announcement items */
.announce-item {
    display: flex; gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(111,61,245,0.1);
}
.announce-item:last-child { border-bottom: 0; }
.announce-tag {
    font-size: .55rem; font-weight: 700;
    padding: .15rem .5rem; border-radius: .375rem;
    text-transform: uppercase; flex-shrink: 0; height: fit-content;
}
.announce-tag.news { background: rgba(111,61,245,0.2); color: #a78bfa; }
.announce-tag.alert { background: rgba(245,158,11,0.2); color: #fcd34d; }
.announce-tag.info { background: rgba(6,182,212,0.2); color: #67e8f9; }

/* Page hero / section header */
.page-hero {
    background: linear-gradient(135deg, rgba(111,61,245,0.15) 0%, rgba(15,13,30,0.7) 60%);
    border: 1px solid rgba(111,61,245,0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.page-hero h2 { color: #fff; font-weight: 700; margin: 0; font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.page-hero .sub { color: #94a3b8; font-size: .85rem; margin: .25rem 0 0; }
.section-header {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: .75rem;
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(111,61,245,0.15);
}
.section-header h2 { color: #fff; font-weight: 700; font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; margin: 0; }
.section-header h2 i { color: var(--main-color, #6f3df5); }
.section-header .sub { color: #94a3b8; font-size: .85rem; margin: .25rem 0 0; }

/* Sidebar */
.dashboard-sidebar { transition: transform .3s ease; }
@media (max-width: 1023px) {
    .dashboard-sidebar { position: fixed !important; left: 0; top: 0; transform: translateX(-100%); }
    .dashboard-sidebar.is-open { transform: translateX(0); box-shadow: 0 0 50px rgba(0,0,0,0.5); }
}
.sidebar-link {
    display: flex; align-items: center; gap: .75rem;
    padding: .65rem .85rem; border-radius: .6rem;
    color: #94a3b8; text-decoration: none;
    font-size: .9rem; transition: all .15s ease;
    border: 1px solid transparent;
}
.sidebar-link i { font-size: 1.15rem; width: 22px; text-align: center; }
.sidebar-link:hover { background: rgba(111, 61, 245, 0.08); color: #fff; }
.sidebar-link.active {
    background: rgba(111, 61, 245, 0.5);
    color: #fff;
    border-color: rgba(167, 139, 250, 0.4);
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(111, 61, 245, 0.25);
}
.sidebar-link.active i { color: #fff; }

/* Pagination */
.pagination, nav[role="navigation"] ul {
    display: flex; flex-wrap: wrap; gap: .25rem;
    list-style: none; padding: 0; margin: 1rem 0 0;
    justify-content: center;
}
.pagination li, nav[role="navigation"] li,
.pagination span, .pagination a,
nav[role="navigation"] span, nav[role="navigation"] a {
    color: #94a3b8;
    background: rgba(111, 61, 245, 0.06);
    border: 1px solid rgba(111, 61, 245, 0.2);
    border-radius: .375rem;
    padding: .4rem .75rem;
    font-size: .85rem;
    text-decoration: none;
    transition: all .15s;
}
.pagination a:hover, nav[role="navigation"] a:hover {
    background: rgba(111, 61, 245, 0.15);
    color: #fff;
    border-color: rgba(111, 61, 245, 0.4);
}
.pagination .active span, .pagination li.active span,
.pagination span[aria-current="page"], nav[role="navigation"] span[aria-current="page"] {
    background: var(--main-color, #6f3df5);
    color: #fff;
    border-color: var(--main-color, #6f3df5);
    font-weight: 600;
}
.pagination .disabled span, .pagination li.disabled span,
.pagination span[aria-disabled="true"] { opacity: .4; cursor: not-allowed; }
nav[role="navigation"] svg { width: 14px; height: 14px; }
nav[role="navigation"] p { color: #94a3b8; font-size: .85rem; margin: 0 .5rem; }

/* Empty state */
.empty-state { text-align: center; padding: 3rem 1.5rem; }
.empty-state-icon {
    width: 80px; height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(111,61,245,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: #94a3b8;
}
.empty-state-title { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: .25rem; }
.empty-state-msg { color: #94a3b8; font-size: .85rem; margin: 0; }

/* Avatar utility */
.avatar-letter {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #6f3df5, #a78bfa);
    color: #fff; font-weight: 700; border-radius: 50%;
}

/* ==========================================================================
   UTILITY CLASSES (Tailwind-compatible fallbacks)
   ========================================================================== */
.text-white { color: #fff; }
.text-red-400 { color: #f87171; }
.text-green-300 { color: #86efac; }
.text-green-400 { color: #4ade80; }
.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }
.text-yellow-400 { color: #facc15; }
.text-info { color: #3b82f6; }
.bg-black { background-color: #000; }
.bg-black\/70 { background-color: rgba(0,0,0,.7); }
.border-secondary { border-color: #6b7280; }
.border-opacity-25 { border-color: rgba(107,114,128,.25); }
.prose { max-width: 65ch; }
.prose-invert { color: #d1d5db; }

/* Layout */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.col-span-full { grid-column: 1 / -1; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; min-width: 0; }
.grow { flex-grow: 1; }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.z-10 { z-index: 10; } .z-20 { z-index: 20; } .z-30 { z-index: 30; } .z-40 { z-index: 40; } .z-50 { z-index: 50; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; } .right-0 { right: 0; } .bottom-0 { bottom: 0; } .left-0 { left: 0; }
.-translate-x-full { transform: translateX(-100%); }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-full { max-width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.h-7 { height: 1.75rem; } .h-8 { height: 2rem; } .h-10 { height: 2.5rem; }
.w-7 { width: 1.75rem; } .w-8 { width: 2rem; } .w-10 { width: 2.5rem; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }

/* Spacing */
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-3 { margin-top: .75rem; margin-bottom: .75rem; }
.ml-1 { margin-left: .25rem; } .ml-2 { margin-left: .5rem; } .ml-auto { margin-left: auto; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-12 { margin-top: 3rem; } .mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: .25rem; } .mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; }
.p-2 { padding: .5rem; } .p-3 { padding: .75rem; } .p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.pt-3 { padding-top: .75rem; } .pt-4 { padding-top: 1rem; } .pt-6 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: .75rem; } .pb-4 { padding-bottom: 1rem; }
.pl-3 { padding-left: .75rem; } .pl-4 { padding-left: 1rem; } .pl-6 { padding-left: 1.5rem; }

/* Typography */
.text-xs { font-size: .75rem; } .text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; } .text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; } .text-6xl { font-size: 3.75rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-tight { line-height: 1.25; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }

/* Borders */
.rounded { border-radius: .25rem; } .rounded-sm { border-radius: .125rem; }
.rounded-md { border-radius: .375rem; } .rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; } .rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }

/* Space + last-child */
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.last\:border-0:last-child { border-width: 0; }

/* Misc */
.transition { transition: all .2s; }
.transition-all { transition: all .2s; }
.transition-transform { transition: transform .2s; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.opacity-20 { opacity: .2; }
.opacity-30 { opacity: .3; }
.opacity-60 { opacity: .6; }
.hover\:opacity-100:hover { opacity: 1; }
.cursor-pointer { cursor: pointer; }

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:col-span-2 { grid-column: span 2 / span 2; }
    .sm\:text-center { text-align: center; }
    .sm\:inline { display: inline; }
    .sm\:inline-flex { display: inline-flex; }
}
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:flex-row { flex-direction: row; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:inline { display: inline; }
    .md\:inline-flex { display: inline-flex; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .container-base { padding: 0 2rem; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:inline { display: inline; }
    .lg\:inline-flex { display: inline-flex; }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:translate-x-0 { transform: translateX(0); }
    .lg\:sticky { position: sticky; }
    .lg\:w-60 { width: 15rem; }
    .lg\:h-auto { height: auto; }
}
@media (min-width: 1280px) {
    .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:inline { display: inline; }
}
