/* =============================================================
   HIBilet — Brand overrides + new components only
   Principle: override template CSS vars, don't redeclare
   ============================================================= */

/* ── 1. Brand Variables ───────────────────────────────────── */
:root {
    /* HIBilet brand tokens */
    --hb-primary:        #312783;
    --hb-primary-dark:   #231d6e;
    --hb-primary-light:  rgba(49,39,131,0.18);
    --hb-primary-border: rgba(49,39,131,0.4);
    --hb-yellow:         #FFD405;
    --hb-yellow-dim:     rgba(255,212,5,0.12);
    --hb-dark:           #09071a;
    --hb-dark2:          #0e0b22;
    --hb-dark3:          #13103a;
    --hb-text:           rgba(255,255,255,0.6);
    --hb-border:         rgba(255,255,255,0.07);
    --hb-border-strong:  rgba(255,255,255,0.14);

    /* Map to template variables so existing components pick up brand colors */
    --theme:    #FFD405;        /* was #EFFB53 */
    --body-bg:  #09071a;
    --bg:       #0e0b22;
    --header:   #09071a;        /* dark bg used as btn text-on-hover bg */
    --border:   rgba(255,255,255,0.07);
}

/* ── Global: hide viewport scrollbar (scroll still works) ─── */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / legacy Edge */
}
html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar {
    display: none;
}

/* ── 2. Template Button Fixes ─────────────────────────────── */

/* Normalize all theme-btn to compact HIBilet style */
.theme-btn {
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    line-height: 1.5 !important;
    margin-top: 0 !important;       /* template style-6 adds 48px margin-top */
    background: var(--hb-primary) !important;
    border-color: var(--hb-primary) !important;
    color: #fff !important;
    vertical-align: middle;
}
.theme-btn:hover {
    background: var(--hb-primary-dark) !important;
    border-color: var(--hb-primary-dark) !important;
    color: #fff !important;
}
.theme-btn::after { background-color: var(--hb-primary-dark) !important; }

/* Ghost / outline variant — used for secondary CTAs */
.theme-btn.style-6 {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    color: rgba(255,255,255,0.75) !important;
}
.theme-btn.style-6:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.45) !important;
    color: #fff !important;
}
.theme-btn.style-6::after { display: none !important; }

/* ── 3. Preloader ─────────────────────────────────────────── */

/* Suppress template's animated inner pieces on our custom preloader */
.hb-preloader .animation-preloader,
.hb-preloader .loader,
.hb-preloader .loader-section { display: none !important; }
.hb-preloader.loaded .animation-preloader { opacity: 1 !important; transition: none !important; }
.hb-preloader.loaded .loader-section .bg { width: 100% !important; transition: none !important; }

.hb-preloader {
    background: var(--hb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hb-preloader-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 40px;
    animation: hb-float 2.4s ease-in-out infinite;
}
.hb-preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
}
.hb-preloader-fill {
    height: 100%;
    width: 0;
    background: var(--hb-yellow);
    border-radius: 3px;
    animation: hb-progress 2s ease-out forwards;
}
@keyframes hb-progress {
    0%   { width: 0; }
    25%  { width: 35%; }
    60%  { width: 68%; }
    85%  { width: 88%; }
    100% { width: 100%; }
}
@keyframes hb-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* ── 4. Back to Top ───────────────────────────────────────── */
.back-to-top.style-6 { background: var(--hb-primary); }

/* ── 5. Marquee ───────────────────────────────────────────── */
.marque-bg { background: var(--hb-primary) !important; }
.cmn-textslide { color: rgba(255,255,255,0.85) !important; }
.cmn-textslide i { color: var(--hb-yellow) !important; }

/* ── 6. Utility ───────────────────────────────────────────── */
.accent { color: var(--hb-yellow); }
.hb-eyebrow {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--hb-yellow); margin-bottom: 12px; display: block;
}
.hb-h2 {
    font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: #fff;
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px;
}
.hb-subtext { font-size: 15px; color: var(--hb-text); line-height: 1.8; }
.hb-subtext .hl { color: var(--hb-yellow); font-weight: 600; }
.hb-subtext strong { color: #fff; font-weight: 700; }
.hb-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.07); border: 1px solid var(--hb-border-strong);
    border-radius: 50px; padding: 5px 16px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.6px;
    text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 18px;
}
.hb-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hb-yellow); flex-shrink: 0; }

/* ── 7. CTA Button (yellow, on primary bg) ────────────────── */
.hb-cta-btn {
    display: inline-block; vertical-align: middle;
    background: var(--hb-yellow); border: 1px solid var(--hb-yellow);
    color: var(--hb-dark); font-size: 13px; font-weight: 700;
    padding: 8px 18px; border-radius: 8px; line-height: 1.5;
    text-decoration: none; transition: all 0.2s; cursor: pointer; white-space: nowrap;
}
.hb-cta-btn:hover { background: #ffe033; border-color: #ffe033; color: var(--hb-dark); transform: translateY(-1px); }

/* ── 8. Header (custom navbar) ────────────────────────────── */
.hb-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(9,7,26,0.94); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hb-border);
    padding: 0 40px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}
.hb-logo img { height: 32px; width: auto; }
.hb-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; }
.hb-nav ul li a {
    color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500;
    padding: 7px 13px; border-radius: 7px; transition: all 0.2s;
    text-decoration: none; white-space: nowrap;
}
.hb-nav ul li a:hover, .hb-nav ul li a.active { color: #fff; background: rgba(255,255,255,0.07); }
.hb-nav .has-sub { position: relative; }
.hb-nav .has-sub > a::after {
    content: ''; display: inline-block; width: 0; height: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.35);
    margin-left: 6px; vertical-align: middle; transition: transform 0.2s;
}
.hb-nav .has-sub:hover > a::after { transform: rotate(180deg); }
.hb-nav .sub-menu {
    position: absolute; top: calc(100% + 12px); left: 0; min-width: 200px;
    background: var(--hb-dark3); border: 1px solid var(--hb-border);
    border-radius: 12px; padding: 8px;
    opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all 0.2s;
}
.hb-nav .has-sub:hover .sub-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.hb-nav .sub-menu li a { display: block; padding: 8px 12px; border-radius: 8px; color: rgba(255,255,255,0.6); font-size: 13px; }
.hb-nav .sub-menu li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.hb-mobile-toggle { display: none; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 22px; cursor: pointer; }
@media (max-width: 991px) {
    .hb-header { padding: 0 20px; }
    .hb-nav { display: none; }
    .hb-nav.open {
        display: block; position: fixed; top: 72px; left: 0; right: 0;
        background: var(--hb-dark2); padding: 20px; border-bottom: 1px solid var(--hb-border);
    }
    .hb-nav.open ul { flex-direction: column; gap: 4px; }
    .hb-nav.open .sub-menu { position: static; opacity: 1; pointer-events: all; transform: none; background: rgba(255,255,255,0.04); margin-top: 4px; margin-left: 12px; }
    .hb-mobile-toggle { display: block; }
}

/* ── 9. Hero ──────────────────────────────────────────────── */
.hb-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hb-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hb-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(9,7,26,0.9) 0%, rgba(49,39,131,0.55) 100%);
    z-index: 1;
}
.hb-hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hb-hero h1 {
    font-size: clamp(44px, 6vw, 84px); font-weight: 900; color: #fff;
    line-height: 1.2; letter-spacing: -2.5px; margin-bottom: 24px;
}
.hb-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.75; margin-bottom: 28px; }
.hb-hero-meta { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }

/* ── 10. Page Hero (inner pages) ─────────────────────────── */
.page-hero {
    padding: 160px 0 80px; background: var(--hb-dark); text-align: center;
    border-bottom: 1px solid var(--hb-border);
}
.page-hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1.05; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--hb-text); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── 11. Sections ─────────────────────────────────────────── */
.hb-section { padding: 100px 0; }
.hb-section-sm { padding: 70px 0; }
.hb-dark-bg { background: var(--hb-dark); }
.hb-dark2-bg { background: var(--hb-dark2); }
.hb-primary-bg { background: var(--hb-primary); }

/* ── 12. Product Cards ────────────────────────────────────── */
.hb-card {
    background: rgba(255,255,255,0.04); border: 1px solid var(--hb-border);
    border-radius: 16px; overflow: hidden; height: 100%;
    transition: all 0.3s; display: flex; flex-direction: column;
}
.hb-card:hover { border-color: var(--hb-primary-border); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.hb-card-body { padding: 28px 28px 20px; flex: 1; }
.hb-card-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--hb-primary-light); border: 1px solid var(--hb-primary-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 18px; color: #fff;
}
.hb-card-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hb-yellow); margin-bottom: 8px; }
.hb-card h4 { color: #fff; margin-bottom: 10px; font-size: 17px; font-weight: 700; }
.hb-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; margin: 0; }
.hb-card-preview { position: relative; height: 150px; overflow: hidden; background: rgba(0,0,0,0.3); }
.hb-card-preview::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50px;
    background: linear-gradient(to bottom, rgba(14,11,34,0.9) 0%, transparent 100%);
    z-index: 1; pointer-events: none;
}
.hb-card-preview img { width: 100%; height: 100%; object-fit: cover; object-position: top left; opacity: 0.65; filter: brightness(0.85) saturate(0.7); transition: all 0.4s; }
.hb-card:hover .hb-card-preview img { opacity: 0.85; transform: scale(1.04); filter: brightness(0.95) saturate(0.85); }

/* ── 13. VS Comparison Table ──────────────────────────────── */
.hb-vs { width: 100%; border-collapse: separate; border-spacing: 0; }
.hb-vs th, .hb-vs td { padding: 13px 20px; font-size: 14px; }
.hb-vs thead th { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hb-vs tbody tr td { border-bottom: 1px solid rgba(255,255,255,0.05); }
.hb-vs tbody tr:last-child td { border-bottom: none; }
.hb-vs tbody tr:hover { background: rgba(255,255,255,0.02); }
.hb-vs td:first-child { color: rgba(255,255,255,0.55); }
.hb-vs .yes { color: var(--hb-yellow); font-weight: 600; }
.hb-vs .no { color: rgba(255,255,255,0.18); }
.hb-vs .hb-col-hi { background: rgba(49,39,131,0.08); }

/* ── 14. Stats Grid ───────────────────────────────────────── */
.hb-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hb-border); }
.hb-stat-card { background: var(--hb-dark2); text-align: center; padding: 44px 20px; position: relative; overflow: hidden; }
.hb-stat-card::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: var(--hb-yellow); opacity: 0; transition: opacity 0.3s; }
.hb-stat-card:hover::before { opacity: 1; }
.hb-stat-num { font-size: clamp(38px, 4.5vw, 60px); font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.hb-stat-num .y { color: var(--hb-yellow); }
.hb-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; }
.hb-stat-sub { font-size: 12px; color: rgba(255,255,255,0.25); }
@media (max-width: 767px) { .hb-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── 15. Payment Methods ──────────────────────────────────── */
.hb-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.hb-payment-item {
    background: rgba(255,255,255,0.04); border: 1px solid var(--hb-border);
    border-radius: 10px; padding: 14px 10px; text-align: center;
    font-size: 11px; color: rgba(255,255,255,0.55); transition: all 0.2s;
    display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.hb-payment-item:hover { border-color: var(--hb-border-strong); background: rgba(255,255,255,0.07); }
.hb-payment-item i { font-size: 20px; }

/* ── 16. Info Pills ───────────────────────────────────────── */
.hb-info-pill { background: rgba(255,255,255,0.05); border: 1px solid var(--hb-border); border-radius: 12px; padding: 16px 22px; }
.hb-info-pill p { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.38); margin-bottom: 4px; }
.hb-info-pill h6 { color: #fff; margin: 0; font-size: 15px; font-weight: 700; }

/* ── 17. Steps ────────────────────────────────────────────── */
.hb-steps { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
.hb-step { flex: 1; min-width: 160px; max-width: 220px; text-align: center; padding: 0 16px; }
.hb-step-num { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hb-yellow); margin-bottom: 16px; display: block; }
.hb-step-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--hb-primary-light); border: 1px solid var(--hb-primary-border); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; margin: 0 auto 16px; transition: all 0.3s; }
.hb-step:hover .hb-step-icon { background: var(--hb-primary); }
.hb-step h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.hb-step p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.65; margin: 0; }
.hb-step-arrow { color: rgba(255,255,255,0.18); font-size: 28px; padding: 0 6px; margin-top: 28px; flex-shrink: 0; }
@media (max-width: 767px) { .hb-step-arrow { display: none; } .hb-step { min-width: 130px; } }

/* ── 18. Pricing Cards ────────────────────────────────────── */
.hb-pricing-card {
    background: rgba(255,255,255,0.04); border: 1px solid var(--hb-border);
    border-radius: 20px; padding: 40px 36px;
    transition: all 0.3s; position: relative;
    display: flex; flex-direction: column; height: 100%;
}
.hb-pricing-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.18); }
.hb-pricing-card.featured { border-color: var(--hb-primary); background: rgba(49,39,131,0.12); }
.hb-popular { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--hb-yellow); color: var(--hb-dark); font-size: 10px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 18px; border-radius: 50px; white-space: nowrap; }
.hb-plan-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hb-yellow); margin-bottom: 6px; }
.hb-price { font-size: 60px; font-weight: 900; color: #fff; line-height: 1; margin: 14px 0 4px; letter-spacing: -3px; }
.hb-price sup { font-size: 26px; font-weight: 700; vertical-align: super; margin-right: 2px; letter-spacing: 0; }
.hb-price .period { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.4); letter-spacing: 0; }
.hb-activation { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
.hb-ticket-count { display: inline-flex; align-items: center; gap: 8px; background: var(--hb-yellow-dim); border: 1px solid var(--hb-primary-border); border-radius: 8px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--hb-yellow); margin-bottom: 24px; }
.hb-feat-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.hb-feat-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 14px; color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.05); }
.hb-feat-list li:last-child { border-bottom: none; }
.hb-feat-list li i { color: var(--hb-yellow); margin-top: 3px; flex-shrink: 0; font-size: 11px; }
.hb-feat-list li.feature-heading { color: rgba(255,255,255,0.35); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; padding-top: 16px; padding-bottom: 4px; border-bottom: none; }
.hb-feat-list li.feature-heading i { display: none; }
.hb-pricing-btn-wrap { margin-top: auto; }

/* ── 19. Comparison Table ─────────────────────────────────── */
.hb-cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.hb-cmp-table th { padding: 16px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: center; }
.hb-cmp-table th:first-child { text-align: left; color: rgba(255,255,255,0.4); }
.hb-cmp-table td { padding: 13px 20px; font-size: 14px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hb-cmp-table td:first-child { text-align: left; color: rgba(255,255,255,0.6); font-size: 13px; }
.hb-cmp-table tbody tr:last-child td { border-bottom: none; }
.hb-cmp-table .check { color: var(--hb-yellow); font-size: 16px; }
.hb-cmp-table .dash { color: rgba(255,255,255,0.15); font-size: 16px; }
.hb-cmp-table .val { color: #fff; font-weight: 700; font-size: 14px; }
.hb-cmp-table .cat-row td { background: rgba(49,39,131,0.12); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hb-cmp-table .col-hi { background: rgba(49,39,131,0.06); }

/* ── 20. Timeline ─────────────────────────────────────────── */
.hb-timeline-item { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 28px; position: relative; }
.hb-timeline-item:not(:last-child)::after { content: ''; position: absolute; left: 20px; top: 44px; bottom: 0; width: 1px; background: rgba(255,255,255,0.07); }
.hb-timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--hb-primary-light); border: 1px solid var(--hb-primary-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; color: var(--hb-yellow); font-size: 12px; }
.hb-timeline-item h5 { color: #fff; font-size: 15px; margin-bottom: 4px; font-weight: 700; }
.hb-timeline-item p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; line-height: 1.65; }

/* ── 21. FAQ ──────────────────────────────────────────────── */
.hb-faq .accordion-button { background: rgba(255,255,255,0.04) !important; color: #fff !important; border-radius: 10px !important; box-shadow: none !important; }
.hb-faq .accordion-button:not(.collapsed) { background: var(--hb-primary-light) !important; border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.hb-faq .accordion-item { background: transparent; border: 1px solid var(--hb-border); border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; }
.hb-faq .accordion-body { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; padding: 16px 20px; }

/* ── 22. CTA Section ──────────────────────────────────────── */
.hb-cta { background: var(--hb-primary); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.hb-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,212,5,0.08) 0%, transparent 70%); pointer-events: none; }
.hb-cta h2 { font-size: clamp(38px, 6vw, 76px); font-weight: 900; color: #fff; letter-spacing: -3px; line-height: 1.05; margin-bottom: 20px; position: relative; }
.hb-cta h2 em { color: var(--hb-yellow); font-style: normal; }
.hb-cta p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 40px; position: relative; line-height: 1.75; }

/* ── 23. Footer ───────────────────────────────────────────── */
.hb-footer { background: #06041a; border-top: 1px solid var(--hb-border); padding: 80px 0 0; }
.hb-footer-brand img { height: 28px; margin-bottom: 16px; }
.hb-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 280px; }
.hb-footer h5 { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px; }
.hb-footer ul { list-style: none; padding: 0; margin: 0; }
.hb-footer ul li { margin-bottom: 10px; }
.hb-footer ul li a { color: rgba(255,255,255,0.42); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.hb-footer ul li a:hover { color: #fff; }
.hb-footer-bottom { border-top: 1px solid var(--hb-border); margin-top: 60px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hb-footer-bottom p { color: rgba(255,255,255,0.28); font-size: 13px; margin: 0; }
.hb-footer-bottom a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.hb-footer-bottom a:hover { color: var(--hb-yellow); }
.hb-social a { color: rgba(255,255,255,0.32); font-size: 16px; margin-left: 16px; transition: color 0.2s; text-decoration: none; }
.hb-social a:hover { color: var(--hb-yellow); }

/* ── 24. About Page ───────────────────────────────────────── */
.stat-box { background: rgba(255,255,255,0.04); border: 1px solid var(--hb-border); border-radius: 16px; padding: 28px; text-align: center; }
.stat-box h2 { font-size: 44px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-box p { color: rgba(255,255,255,0.42); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.stat-box.featured { background: rgba(49,39,131,0.15); border-color: var(--hb-primary-border); }
.stat-box.featured h2 { color: var(--hb-yellow); }
.market-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--hb-border); border-radius: 8px; padding: 8px 16px; font-size: 14px; color: rgba(255,255,255,0.65); margin: 4px; }
.market-badge i { color: var(--hb-yellow); }
.hb-full-img img { width: 100%; max-height: 520px; object-fit: cover; display: block; }

/* ── 25. Legal Pages ──────────────────────────────────────── */
.hb-legal { max-width: 760px; margin: 0 auto; padding: 120px 20px 80px; }
.hb-legal h1 { font-size: 48px; font-weight: 900; color: #fff; letter-spacing: -2px; margin-bottom: 8px; }
.hb-legal .hb-legal-meta { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 60px; }
.hb-legal h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 48px 0 16px; padding-top: 48px; border-top: 1px solid var(--hb-border); }
.hb-legal h2:first-of-type { border-top: none; }
.hb-legal p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.hb-legal ul { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.85; padding-left: 20px; margin-bottom: 16px; }
.hb-legal ul li { margin-bottom: 6px; }
.hb-legal a { color: var(--hb-yellow); text-decoration: none; }
.hb-legal a:hover { text-decoration: underline; }
.hb-legal .hb-highlight-box { background: var(--hb-primary-light); border: 1px solid var(--hb-primary-border); border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.hb-legal .hb-highlight-box p { color: rgba(255,255,255,0.75); margin: 0; }
