﻿/* ═══════════════════════════════════════════════════════════
   SuperJoes Frontend — style.css
   Single consolidated stylesheet for all frontend pages.
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────── */
:root {
    --primary: #D1006A;
    --primary-dark: #a8005a;
    --primary-darker: #800045;
    --primary-light: #fff0f7;
    --primary-mid: #ffd6eb;
    --primary-rgb: 209, 0, 106;
    --accent: #D1006A;
    --accent-dark: #1244a8;
    --accent-light: #eef3ff;
    --magenta: #e0007a;
    --magenta-dark: #a8005a;
    --magenta-light: #fff0f7;
    --magenta-rgb: 209, 0, 106;
    --dark: #0c1832;
    --dark2: #162245;
    --ink: #0d0d0d;
    --ink-rgb: 13, 13, 13;
    --text: #334155;
    --muted: #64748b;
    --border: #e8ecf2;
    --surface: #f9fafb;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #D1006A 0%, #a8005a 55%, #800045 100%);
    --gradient-light: linear-gradient(135deg, #fff0f7 0%, #ffe4f1 100%);
    --gradient-hero: linear-gradient(135deg, #D1006A 0%, #a8005a 50%, #4a0028 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, .10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .16);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ─────────────────────────────────────────
   2. BASE / RESET
   ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

/* ─────────────────────────────────────────
   3. NAVIGATION
   ───────────────────────────────────────── */
.sj-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.sj-nav.scrolled {
    box-shadow: 0 2px 24px rgba(23, 85, 198, .10);
}

.sj-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    max-width: 1240px;
    margin: 0 auto;
}

.sj-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.sj-logo img {
    max-width: 100%;
    display: block;
}

.sj-logo .sj-logo-dark {
    display: none;
}

html[data-theme="dark"] .sj-logo .sj-logo-light {
    display: none;
}

html[data-theme="dark"] .sj-logo .sj-logo-dark {
    display: block;
}

.sj-nav-links {
    display: flex;
    align-items: center;
    gap: .1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sj-nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: .875rem;
    font-weight: 500;
    padding: .45rem .9rem;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.sj-nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.sj-nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.sj-nav-links a.sj-nav-action {
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .42rem 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: .35rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.sj-nav-links a.sj-nav-action:hover {
    background: var(--primary-light);
    border-color: var(--primary-mid);
    color: var(--primary);
}

/* ── Login dropdown (Customer / Investor) ── */
.sj-nav-dd {
    position: relative;
}

.sj-nav-dd-trigger {
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .42rem 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: .35rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    font-size: .875rem;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.sj-nav-dd-trigger:hover {
    background: var(--primary-light);
    border-color: var(--primary-mid);
}

.sj-nav-dd-caret {
    font-size: .7rem;
    transition: transform var(--transition);
}

.sj-nav-dd:hover .sj-nav-dd-caret,
.sj-nav-dd.open .sj-nav-dd-caret {
    transform: rotate(180deg);
}

.sj-nav-dd-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(12, 24, 50, .16);
    padding: .4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 200;
}

/* transparent bridge so hover doesn't drop in the gap */
.sj-nav-dd-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.sj-nav-dd:hover .sj-nav-dd-menu,
.sj-nav-dd:focus-within .sj-nav-dd-menu,
.sj-nav-dd.open .sj-nav-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sj-nav-dd-menu a {
    display: flex !important;
    align-items: center;
    gap: .75rem;
    padding: .6rem .7rem !important;
    border-radius: 10px;
    color: var(--text);
}

.sj-nav-dd-menu a:hover {
    background: var(--primary-light);
}

.sj-nav-dd-menu a strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}

.sj-nav-dd-menu a:hover strong {
    color: var(--primary);
}

.sj-nav-dd-menu a small {
    display: block;
    font-size: .74rem;
    color: var(--muted);
}

.sj-nav-dd-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.sj-nav-cta {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 55%, var(--magenta) 165%) !important;
    color: #fff !important;
    padding: .48rem 1.4rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: .875rem !important;
    box-shadow: 0 2px 14px rgba(23, 85, 198, .35) !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
    margin-left: .5rem;
}

.sj-nav-cta:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 24px rgba(23, 85, 198, .45) !important;
    color: #fff !important;
}

.sj-nav-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.sj-nav-toggle:hover {
    background: var(--surface);
}

/* ─────────────────────────────────────────
   4. UTILITIES
   ───────────────────────────────────────── */
.sj-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.sj-badge--blue {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-badge--sky {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.sj-badge--magenta {
    background: var(--magenta-light);
    color: var(--magenta-dark);
}

.sj-badge--white {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.sj-section {
    padding: 4rem 0;
}

.sj-section-sm {
    padding: 4rem 0;
}

.sj-section-surface {
    background: var(--surface);
}

.sj-section-mid {
    background: var(--primary-light);
}

.btn-sj-primary {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: .85rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .2px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-sj-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-sj-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: .82rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.btn-sj-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.btn-sj-outline-dark {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: .82rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.btn-sj-outline-dark:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sj-dark {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: .85rem 2.1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .1px;
    transition: background var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-sj-dark:hover {
    background: #262626;
    color: #fff;
    transform: translateY(-1px);
}

.sj-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sj-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(23, 85, 198, .2);
}

/* Tags */
.sj-tag {
    display: inline-block;
    padding: .2rem .65rem;
    border-radius: 50px;
    font-size: .73rem;
    font-weight: 600;
}

.sj-tag--blue {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-tag--sky {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.sj-tag--green {
    background: #f0fdf4;
    color: #15803d;
}

.sj-tag--admin {
    background: #faf5ff;
    color: #7c3aed;
}

/* ─────────────────────────────────────────
   5. FOOTER
   ───────────────────────────────────────── */
.sj-footer {
    background: #f1f5f9;
    color: #777;
    padding: 5rem 0 0;
}

@media (max-width: 991.98px) {
    .sj-footer {
        padding: 2rem 0 0;
    }
}

.sj-footer h5 {
    color: #2d2d2d;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 5px 0;
}

.sj-footer a {
    color: rgb(0 0 0 / 68%);
    text-decoration: none;
    font-size: .875rem;
    display: block;
    margin-bottom: .6rem;
    transition: color var(--transition);
}

.sj-footer a:hover {
    color: #d1006a;
}

.sj-footer-about {
    padding-right: 1.5rem;
}

.sj-footer-logo {
    margin-bottom: 0;
}

.sj-footer-logo img {
    height: 46px;
    width: auto;
}

.sj-footer-logo .sj-logo-dark {
    display: none;
}

html[data-theme="dark"] .sj-footer-logo .sj-logo-light {
    display: none;
}

html[data-theme="dark"] .sj-footer-logo .sj-logo-dark {
    display: inline;
}

.sj-footer-divider {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #d1006a, #1755c6);
    margin: 1.1rem 0;
}

.sj-footer-brand {
    font-size: .875rem;
    line-height: 1.85;
    max-width: 300px;
    color: rgb(0 0 0 / 62%);
    margin-bottom: .75rem;
}

.sj-footer-tagline {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .6px;
    color: #d1006a;
    margin-bottom: 0;
}

/* Footer accordion — mobile only */
.sj-footer-acc-col {
    border-bottom: 1px solid rgb(0 0 0 / 8%);
}

html[data-theme="dark"] .sj-footer-acc-col {
    border-bottom-color: rgba(255, 255, 255, .08);
}

.sj-footer-acc-hd {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem .75rem;
    border-radius: 8px;
    transition: background .2s;
}

.sj-footer-acc-hd:hover {
    background: rgba(0, 0, 0, .04);
}

html[data-theme="dark"] .sj-footer-acc-hd:hover {
    background: rgba(255, 255, 255, .06);
}

.sj-footer-acc-hd-left {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.sj-footer-acc-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0;
}

.sj-footer-acc-badge--platform {
    background: linear-gradient(135deg, #1755c6, #3b82f6);
}

.sj-footer-acc-badge--services {
    background: linear-gradient(135deg, #d1006a, #f43f5e);
}

.sj-footer-acc-badge--contact {
    background: linear-gradient(135deg, #059669, #10b981);
}

.sj-footer-acc-icon {
    font-size: .8rem;
    transition: transform .25s ease;
    color: #888;
}

.sj-footer-acc-hd[aria-expanded="true"] .sj-footer-acc-icon {
    transform: rotate(180deg);
}

.sj-footer-acc-body {
    padding: .25rem 1rem .75rem;
}

@media (max-width: 991.98px) {
    .col-lg-4.mb-4 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .sj-footer-acc-hd {
        cursor: default;
        pointer-events: none;
        padding: 0;
        background: none !important;
    }

    .sj-footer-acc-badge {
        display: none;
    }

    .sj-footer-acc-icon {
        display: none;
    }

    .sj-footer-acc-body {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0;
    }

    .sj-footer-acc-col {
        border-bottom: none;
    }

    .sj-footer-acc-hd .sj-footer-acc-hd-left {
        display: contents;
    }
}

.sj-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .82rem;
    border-top: 1px solid rgb(0 0 0 / 19%);
    padding: 1.5rem 0;
    margin-top: 3.5rem;
}

@media (max-width: 991.98px) {
    .sj-footer-bottom {
        margin-top: 0;
        border-top: none;
        padding: 10px 0;
    }
}

.sj-footer-social {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.sj-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0;
    transition: transform .22s ease, box-shadow .22s ease;
}

.sj-footer-social a[title="Facebook"] {
    background: #1877F2;
}

.sj-footer-social a[title="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sj-footer-social a[title="Twitter / X"] {
    background: #14171A;
}

.sj-footer-social a[title="WhatsApp"] {
    background: #25D366;
}

.sj-footer-social a:hover {
    transform: translateY(-4px) scale(1.13);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    color: #fff;
}

/* ─────────────────────────────────────────
   6. THEME TOGGLE
   ───────────────────────────────────────── */
.sj-theme-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: .65rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.sj-theme-toggle:hover {
    background: var(--surface);
    color: var(--primary);
    border-color: var(--primary-mid);
}

.sj-theme-toggle .bi-sun-fill {
    display: none;
}

html[data-theme="dark"] .sj-theme-toggle .bi-moon-stars-fill {
    display: none;
}

html[data-theme="dark"] .sj-theme-toggle .bi-sun-fill {
    display: inline-block;
}

/* ─────────────────────────────────────────
   7. DARK MODE
   ───────────────────────────────────────── */
html[data-theme="dark"] {
    --primary: #f472b6;
    --primary-dark: #f472b6;
    --magenta: #f9a8d4;
    --magenta-dark: #f472b6;
    --accent: #3d6de8;
    --accent-dark: #60a5fa;
    --primary-light: rgba(209, 0, 106, .16);
    --primary-mid: rgba(209, 0, 106, .36);
    --accent-light: rgba(23, 85, 198, .16);
    --magenta-light: rgba(209, 0, 106, .20);
    --dark: #fff;
    --text: #c2cde0;
    --muted: #8d9bb3;
    --border: #283449;
    --surface: #0c1322;
    --white: #121a2c;
    --shadow: 0 4px 20px rgba(0, 0, 0, .45);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .55);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .40);
    --gradient-light: linear-gradient(135deg, #16203a 0%, #131c33 100%);
    color-scheme: dark;
}

html[data-theme="dark"] body {
    background: #0a1120;
}

html[data-theme="dark"] .sj-nav {
    background: rgba(12, 19, 34, .92);
}

html[data-theme="dark"] .sj-nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, .55);
}

html[data-theme="dark"] .sj-nav-links {
    background: rgba(10, 17, 32, .98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}

html[data-theme="dark"] .sj-nav-dd-trigger {
    border-color: rgba(255, 255, 255, .14);
}

html[data-theme="dark"] .sj-nav-dd-menu {
    background: #0f1a2e;
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}

html[data-theme="dark"] .sj-nav-dd-menu a strong {
    color: #e7ecf5;
}

html[data-theme="dark"] .sj-footer {
    background: #000;
    color: #f1f1f1;
}

html[data-theme="dark"] .sj-footer h5 {
    color: #d5d5d5;
}

html[data-theme="dark"] .sj-footer a {
    color: #ffffffad;
}

html[data-theme="dark"] .sj-footer-brand {
    color: rgba(255, 255, 255, .6);
}

html[data-theme="dark"] .sj-footer-social a {
    opacity: .9;
}

html[data-theme="dark"] .sj-footer-bottom {
    border-top: 1px solid #ffffff30;
}

html[data-theme="dark"] .sj-service-icon--indigo {
    background: rgba(79, 70, 229, .20);
    color: #a5b4fc;
}

html[data-theme="dark"] .sj-service-icon--teal {
    background: rgba(13, 148, 136, .20);
    color: #5eead4;
}

html[data-theme="dark"] .sj-rbenefit,
html[data-theme="dark"] .sj-earn-stat {
    background: var(--white);
}

html[data-theme="dark"] .sj-rdl {
    background: #070c17;
}

html[data-theme="dark"] .sj-ov-icon--indigo {
    background: rgba(79, 70, 229, .20);
    color: #a5b4fc;
}

html[data-theme="dark"] .sj-ov-icon--teal {
    background: rgba(13, 148, 136, .20);
    color: #5eead4;
}

html[data-theme="dark"] .sj-tag--green {
    background: rgba(22, 163, 74, .20);
    color: #86efac;
}

html[data-theme="dark"] .sj-tag--admin {
    background: rgba(124, 58, 237, .22);
    color: #c4b5fd;
}

html[data-theme="dark"] .sj-hp-step-num--green {
    background: rgba(21, 128, 61, .22);
    color: #86efac;
}

html[data-theme="dark"] .sj-hp-step-num--amber {
    background: rgba(217, 119, 6, .22);
    color: #fcd34d;
}

html[data-theme="dark"] .sj-g-link-status--pending {
    background: rgba(217, 119, 6, .22);
    color: #fcd34d;
}

html[data-theme="dark"] .sj-g-link-status--done {
    background: rgba(21, 128, 61, .22);
    color: #86efac;
}

html[data-theme="dark"] .sj-escrow-dot--danger {
    background: rgba(220, 38, 38, .22);
    color: #fca5a5;
}

html[data-theme="dark"] .sj-vtype-icon--muted {
    background: rgba(148, 163, 184, .10);
    color: #94a3b8;
}

/* Hero dark overrides */
html[data-theme="dark"] .sj-hero {
    background-color: #08132b;
}

html[data-theme="dark"] .sj-hero::before {
    background: linear-gradient(to right,
            rgba(8, 19, 43, .70) 0%, rgba(8, 19, 43, .45) 40%,
            rgba(8, 19, 43, .20) 60%, rgba(8, 19, 43, .05) 80%);
}

html[data-theme="dark"] .sj-hero h1 {
    color: #fff;
}

html[data-theme="dark"] .sj-hero h1 .sj-grad {
    background: linear-gradient(120deg, #D1006A 0%, #e0007a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-theme="dark"] .sj-hero .sj-hero-sub {
    color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .sj-hero .sj-trust-item {
    color: rgba(255, 255, 255, .48);
}

html[data-theme="dark"] .sj-hero .sj-trust-item i {
    color: #d1006a;
}

html[data-theme="dark"] .sj-hero .sj-hero-trust {
    border-top-color: rgba(255, 255, 255, .1);
}

html[data-theme="dark"] .sj-hero .sj-hero-chip {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
}

/* Booking card dark overrides */
html[data-theme="dark"] .sj-booking-card {
    background: rgba(13, 26, 48, .95) !important;
}

html[data-theme="dark"] .sj-booking-card {
    background: #0d1a30;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .65), 0 4px 20px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(209, 0, 106, .12);
    border: 1.5px solid rgba(209, 0, 106, .22);
    overflow: visible;
}

html[data-theme="dark"] .sj-booking-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, #f472b6 0%, #e0007a 50%, #a8005a 100%);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

html[data-theme="dark"] .sj-booking-card-title {
    color: #e8eef8;
}

html[data-theme="dark"] .sj-bk-tabs {
    background: #081223;
}

html[data-theme="dark"] .sj-bk-tab {
    color: #7a8fad;
}

html[data-theme="dark"] .sj-bk-tab.active {
    background: #1e1428;
    color: #e8eef8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

html[data-theme="dark"] .sj-bk-field label {
    color: #7a8fad;
    letter-spacing: .6px;
}

html[data-theme="dark"] .sj-bk-input {
    background: #1a1228;
    color: #dde6f5;
    border: 1.5px solid #3a1f42;
}

html[data-theme="dark"] .sj-bk-input::placeholder {
    color: #4f6585;
}

html[data-theme="dark"] .sj-bk-input:focus {
    background: #231533;
    border-color: #f472b6;
    box-shadow: 0 0 0 3px rgba(244, 114, 182, .18);
}

html[data-theme="dark"] .sj-bk-connector {
    background: #3a1f42;
}

html[data-theme="dark"] .sj-bk-fare {
    background: rgba(209, 0, 106, .10);
    border: 1px solid rgba(209, 0, 106, .2);
}

html[data-theme="dark"] .sj-bk-fare-label {
    color: #7a8fad;
}

html[data-theme="dark"] .sj-bk-fare-val {
    color: #f472b6;
}

html[data-theme="dark"] .sj-bk-submit {
    background: #D1006A;
    color: #fff;
}

html[data-theme="dark"] .sj-bk-submit:hover:not(:disabled) {
    background: #a8005a;
    transform: translateY(-1px);
}

html[data-theme="dark"] .sj-bk-note {
    color: #4f6585;
}

/* Legal / contact dark */
html[data-theme="dark"] .sj-legal-intro,
html[data-theme="dark"] .sj-legal-section p,
html[data-theme="dark"] .sj-legal-section li,
html[data-theme="dark"] .sj-contact-card a,
html[data-theme="dark"] .sj-contact-card div {
    color: #cbd5e1;
}

html[data-theme="dark"] .sj-legal-foot {
    border-color: #1e293b;
}

html[data-theme="dark"] .sj-contact-card {
    background: #0f172a;
    border-color: #1e293b;
}

/* ── STATS BAR dark — keep dark, change text to white ── */
html[data-theme="dark"] .sj-stats-bar {
    background: #0d1b30;
}

html[data-theme="dark"] .sj-stat-num-w {
    color: #fff;
}

html[data-theme="dark"] .sj-stat-label-w {
    color: rgba(255, 255, 255, .5);
}

html[data-theme="dark"] .sj-stat-sep {
    background: rgba(255, 255, 255, .12);
}

/* ── FAQ PAGE dark ── */
/* Hero uses background:var(--dark) which becomes #fff in dark mode — pin it */
html[data-theme="dark"] .sj-faq-hero {
    background: #0c1832;
}

/* Tab pills */
html[data-theme="dark"] .sj-faq-tab {
    background: #131f36;
    border-color: #1e2f4a;
    color: #7a8fad;
}

html[data-theme="dark"] .sj-faq-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Category title */
html[data-theme="dark"] .sj-faq-category-title {
    color: #c2cde0;
    border-bottom-color: rgba(209, 0, 106, .25);
}

html[data-theme="dark"] .sj-faq-category-icon {
    background: rgba(209, 0, 106, .18);
    color: #f472b6;
}

html[data-theme="dark"] .sj-faq-category-icon--blue {
    background: rgba(23, 85, 198, .2);
    color: #7dd3fc;
}

html[data-theme="dark"] .sj-faq-category-icon--teal {
    background: rgba(13, 148, 136, .2);
    color: #5eead4;
}

html[data-theme="dark"] .sj-faq-category-icon--amber {
    background: rgba(217, 119, 6, .2);
    color: #fcd34d;
}

/* Accordion items */
html[data-theme="dark"] .sj-faq-item {
    background: #111827;
    border-color: #1e2f4a;
}

html[data-theme="dark"] .sj-faq-item:hover {
    border-color: rgba(209, 0, 106, .3);
}

html[data-theme="dark"] .sj-faq-item.open {
    border-color: rgba(209, 0, 106, .35);
    box-shadow: 0 4px 20px rgba(209, 0, 106, .12);
}

html[data-theme="dark"] .sj-faq-q {
    color: #c2cde0;
}

html[data-theme="dark"] .sj-faq-q i.sj-faq-chevron {
    color: #4f6585;
}

html[data-theme="dark"] .sj-faq-item.open .sj-faq-chevron {
    color: #f472b6;
}

html[data-theme="dark"] .sj-faq-a {
    color: #8d9bb3;
}

/* Contact CTA */
html[data-theme="dark"] .sj-faq-cta {
    background: rgba(209, 0, 106, .1);
    border-color: rgba(209, 0, 106, .22);
}

html[data-theme="dark"] .sj-faq-cta h3 {
    color: #e2e8f0;
}

/* ── INVESTOR HERO dark — also uses var(--gradient-hero), fine ── */
/* Investor stats bar uses white background with var(--border) divider — fix */
html[data-theme="dark"] .sj-stats-bar.sj-inv-stats {
    background: var(--white);
}

/* ── GENERAL CARD OVERRIDES ── */
html[data-theme="dark"] .sj-service-card,
html[data-theme="dark"] .sj-hiw-step,
html[data-theme="dark"] .sj-feat-card,
html[data-theme="dark"] .sj-escrow-card,
html[data-theme="dark"] .sj-coming-card,
html[data-theme="dark"] .sj-testi-card,
html[data-theme="dark"] .sj-ov-card,
html[data-theme="dark"] .sj-sec-card,
html[data-theme="dark"] .sj-ref-card,
html[data-theme="dark"] .sj-terms-table,
html[data-theme="dark"] .sj-hp-flow,
html[data-theme="dark"] .sj-vtype-card {
    background: #111827;
    border-color: #1e2f4a;
}

html[data-theme="dark"] .sj-coming-soon-badge {
    background: #1a2540;
    border-color: #1e2f4a;
    color: #7a8fad;
}

html[data-theme="dark"] .sj-terms-table thead th {
    background: #0d1b30;
    color: #7a8fad;
    border-bottom-color: #1e2f4a;
}

html[data-theme="dark"] .sj-terms-table tbody td {
    border-bottom-color: #1e2f4a;
}

html[data-theme="dark"] .sj-terms-table tbody tr:hover td {
    background: #0d1b30;
}

html[data-theme="dark"] .sj-hl-row td {
    background: rgba(209, 0, 106, .12) !important;
}

/* ─────────────────────────────────────────
   8. HOME — HERO
   ───────────────────────────────────────── */
.sj-hero {
    background-color: #ffffff;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    min-height: 620px;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .82) 40%,
            rgba(255, 255, 255, .10) 65%, rgba(255, 255, 255, .0) 78%);
    pointer-events: none;
    z-index: 1;
}

.sj-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sj-hero h1 {
    font-size: clamp(2.3rem, 4.5vw, 3.9rem);
    line-height: 1.07;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: -.8px;
    font-weight: 800;
}

.sj-hero h1 .sj-grad {
    background: linear-gradient(120deg, #D1006A 0%, #e0007a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.sj-hero-sub {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.8;
}

.sj-hero-actions {
    margin-bottom: 1.75rem;
}

.btn-sj-hero-cta {
    padding: 1rem 2.5rem !important;
    font-size: 1.05rem !important;
    border-radius: 50px !important;
}

.btn-sj-hero-cta:hover {
    box-shadow: 0 10px 40px rgba(209, 0, 106, .45) !important;
    transform: translateY(-2px) !important;
}

.sj-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.sj-trust-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
}

.sj-trust-item i {
    color: var(--primary);
    font-size: .95rem;
}

/* ─────────────────────────────────────────
   9. HOME — STATS BAR
   ───────────────────────────────────────── */
.sj-stats-bar {
    background: var(--dark);
    padding: 2.75rem 0;
}

.sj-stat-item-w {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.sj-stat-num-w {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .3rem;
}

.sj-stat-num-w span {
    color: var(--primary);
}

.sj-stat-label-w {
    font-size: .73rem;
    color: rgba(255, 255, 255, .5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.sj-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   10. HOME — SECTION HEADERS
   ───────────────────────────────────────── */
.sj-section-header {
    margin-bottom: 3.5rem;
}

.sj-section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: .75rem;
}

.sj-section-header p {
    font-size: 1.02rem;
    color: var(--muted);
}

.sj-section-header--center {
    text-align: center;
}

.sj-section-header--center p {
    margin: 0 auto;
}

/* ─────────────────────────────────────────
   11. HOME — SERVICE CARDS
   ───────────────────────────────────────── */
.sj-service-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    padding: 2.25rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sj-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.sj-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(209, 0, 106, .15);
}

.sj-service-card:hover::before {
    opacity: 1;
}

.sj-service-card--active {
    border-color: rgba(209, 0, 106, .2);
}

.sj-service-card--active::before {
    opacity: 1;
}

.sj-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.sj-service-icon--primary {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-service-icon--blue {
    background: var(--accent-light);
    color: var(--accent);
}

.sj-service-icon--indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.sj-service-icon--teal {
    background: #f0fdfa;
    color: #0d9488;
}

.sj-service-card h4 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.sj-service-card p {
    font-size: .875rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.sj-service-link {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: gap var(--transition);
}

.sj-service-link:hover {
    gap: .6rem;
}

.sj-coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: .3rem .85rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─────────────────────────────────────────
   12. HOME — HOW IT WORKS
   ───────────────────────────────────────── */
.sj-hiw-step {
    text-align: center;
    padding: 2.25rem 1.75rem;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 100%;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sj-hiw-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.sj-hiw-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(209, 0, 106, .18);
}

.sj-hiw-step:hover::before {
    opacity: 1;
}

.sj-hiw-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(209, 0, 106, .3);
}

.sj-hiw-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--primary-light);
    border: 1.5px solid var(--primary-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin: 0 auto 1.25rem;
}

.sj-hiw-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--dark);
}

.sj-hiw-step p {
    font-size: .875rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

/* ─────────────────────────────────────────
   13. HOME — FEATURE CARDS
   ───────────────────────────────────────── */
.sj-feat-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sj-feat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(209, 0, 106, .15);
}

.sj-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sj-feat-card h6 {
    font-size: .9rem;
    margin-bottom: .25rem;
}

.sj-feat-card p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
}

/* ─────────────────────────────────────────
   14. HOME — ESCROW EXPLAINER
   ───────────────────────────────────────── */
.sj-escrow-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    padding: 2rem;
}

.sj-escrow-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.sj-escrow-step:last-child {
    border-bottom: none;
}

.sj-escrow-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.sj-escrow-dot--danger {
    background: #fee2e2;
    color: #dc2626;
}

.sj-escrow-step h6 {
    font-size: .875rem;
    margin-bottom: .2rem;
}

.sj-escrow-step p {
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
}

/* ─────────────────────────────────────────
   15. HOME — COMING SOON CARDS
   ───────────────────────────────────────── */
.sj-coming-card {
    background: var(--white);
    border-radius: 18px;
    border: 1.5px solid var(--border);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.sj-coming-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.sj-coming-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sj-coming-icon--sky {
    background: var(--accent-light);
    color: var(--accent);
}

.sj-coming-icon--pink {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-coming-icon--teal {
    background: #f0fdfa;
    color: #0d9488;
}

.sj-coming-card h5 {
    font-size: 1rem;
    margin-bottom: .4rem;
}

.sj-coming-card p {
    font-size: .85rem;
    color: var(--muted);
    flex: 1;
    margin-bottom: 1rem;
}

.sj-badge--soon {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: #fef9c3;
    color: #92400e;
    border-radius: 50px;
    padding: .28rem .85rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────
   16. HOME — TESTIMONIALS
   ───────────────────────────────────────── */
.sj-testi-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 1.75rem;
    height: 100%;
}

.sj-testi-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: .75rem;
}

.sj-testi-text {
    font-size: .875rem;
    color: var(--text);
    margin-bottom: 1.1rem;
    line-height: 1.7;
}

.sj-testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.sj-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sj-testi-name {
    font-weight: 600;
    font-size: .875rem;
    color: var(--dark);
    margin-bottom: .1rem;
}

.sj-testi-role {
    font-size: .775rem;
    color: var(--muted);
}

/* ─────────────────────────────────────────
   17. HOME — APP DOWNLOAD BANNER
   ───────────────────────────────────────── */
.sj-app-banner {
    background: var(--gradient);
    border-radius: 28px;
    padding: 4rem 4.5rem;
    position: relative;
    overflow: hidden;
}

.sj-app-banner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    pointer-events: none;
}

.sj-app-banner::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.sj-app-banner-content {
    position: relative;
    z-index: 1;
}

.sj-app-banner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: .75rem;
}

.sj-app-banner p {
    color: rgba(255, 255, 255, .72);
    max-width: 500px;
    line-height: 1.8;
}

.sj-app-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.25rem 0 0;
}

.sj-app-pill {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.sj-store-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255, 255, 255, .10);
    border: 1.5px solid rgba(255, 255, 255, .28);
    border-radius: 14px;
    padding: .8rem 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    min-width: 165px;
}

.sj-store-btn:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    transform: translateY(-2px);
}

.sj-store-btn img {
    flex-shrink: 0;
}

.sj-store-btn img.sj-logo-white {
    filter: brightness(0) invert(1);
}

.sj-store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.sj-store-sub {
    font-size: .68rem;
    font-weight: 400;
    opacity: .75;
}

.sj-store-name {
    font-size: .95rem;
    font-weight: 700;
}

/* ─────────────────────────────────────────
   18. INVESTOR PAGE
   ───────────────────────────────────────── */
.sj-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.sj-hero-glow {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, .25) 0%, transparent 70%);
    pointer-events: none;
}

/* Investor hero card */
.sj-hero-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.sj-hero-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 1.5rem;
}

.sj-hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sj-hero-card-row:last-of-type {
    border-bottom: none;
}

.sj-hero-card-key {
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
}

.sj-hero-card-val {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}

.sj-pill-blue {
    background: rgba(14, 165, 233, .25);
    color: #7dd3fc;
    padding: .2rem .7rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
}

.sj-pill-green {
    background: rgba(16, 185, 129, .2);
    color: #6ee7b7;
    padding: .2rem .7rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
}

/* Investor stats bar */
.sj-stat-item {
    text-align: center;
}

.sj-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .3rem;
}

.sj-stat-num sup {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: super;
}

.sj-stat-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.sj-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Investor section headers */
.sj-section-header p {
    max-width: 580px;
}

/* Overview cards */
.sj-ov-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 1.75rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sj-ov-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(23, 85, 198, .2);
}

.sj-ov-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.sj-ov-icon--blue {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-ov-icon--sky {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.sj-ov-icon--indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.sj-ov-icon--teal {
    background: #f0fdfa;
    color: #0d9488;
}

.sj-ov-card h4 {
    font-size: 1rem;
    margin-bottom: .4rem;
}

.sj-ov-card p {
    font-size: .875rem;
    color: var(--muted);
    margin: 0;
}

/* Investor steps */
.sj-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.25rem;
}

.sj-step:last-child {
    margin-bottom: 0;
}

.sj-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.sj-step-line {
    width: 2px;
    height: 24px;
    background: var(--primary-mid);
    margin: 4px 0 4px 20px;
}

.sj-step-body h5 {
    font-size: .975rem;
    margin-bottom: .3rem;
}

.sj-step-body p {
    font-size: .875rem;
    color: var(--muted);
    margin: 0;
}

/* Returns table */
.sj-terms-table {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
}

.sj-terms-table table {
    margin: 0;
}

.sj-terms-table thead th {
    background: var(--surface);
    font-size: .75rem;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.sj-terms-table tbody td {
    padding: .9rem 1.25rem;
    font-size: .875rem;
    vertical-align: middle;
}

.sj-terms-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--border);
}

.sj-terms-table tbody tr:hover td {
    background: var(--surface);
}

.sj-hl-row td {
    background: var(--primary-light) !important;
    font-weight: 600;
}

/* Timeline */
.sj-timeline-panel {
    background: var(--gradient);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.sj-timeline-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.sj-tl {
    position: relative;
    padding-left: 2.25rem;
}

.sj-tl::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, .2);
}

.sj-tl-item {
    position: relative;
    margin-bottom: 1.75rem;
}

.sj-tl-item:last-child {
    margin-bottom: 0;
}

.sj-tl-dot {
    position: absolute;
    left: -2.25rem;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    color: #fff;
}

.sj-tl-item h6 {
    font-size: .875rem;
    color: #fff;
    margin-bottom: .2rem;
    font-weight: 600;
}

.sj-tl-item p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

.sj-tl-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    padding: .12rem .5rem;
    border-radius: 50px;
    background: rgba(14, 165, 233, .3);
    color: #7dd3fc;
    margin-left: .5rem;
    vertical-align: middle;
}

/* Security cards */
.sj-sec-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 1.6rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sj-sec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(23, 85, 198, .2);
}

.sj-sec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: .9rem;
}

.sj-sec-card h5 {
    font-size: .925rem;
    margin-bottom: .35rem;
}

.sj-sec-card p {
    font-size: .85rem;
    color: var(--muted);
    margin: 0;
}

/* Eligibility band */
.sj-eligibility {
    background: var(--primary-light);
    border-radius: 24px;
    padding: 4rem;
    border: 1.5px solid var(--primary-mid);
    position: relative;
    overflow: hidden;
}

.sj-eligibility::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(23, 85, 198, .06);
    pointer-events: none;
}

.sj-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sj-check-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .9rem;
    margin-bottom: .8rem;
    color: var(--text);
}

.sj-check-list li:last-child {
    margin-bottom: 0;
}

.sj-check-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}

.sj-ref-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 2rem;
}

.sj-ref-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
}

.sj-ref-row:last-child {
    border-bottom: none;
}

.sj-ref-key {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 500;
}

.sj-ref-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
}

/* Investor FAQ accordion */
.sj-faq .accordion-button {
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
    background: transparent;
    box-shadow: none;
    padding: 1.1rem 1.4rem;
}

.sj-faq .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-light);
}

.sj-faq .accordion-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: .65rem;
    overflow: hidden;
}

.sj-faq .accordion-body {
    font-size: .875rem;
    color: var(--muted);
    padding: 0 1.4rem 1.1rem;
    line-height: 1.75;
}

/* Investor CTA */
.sj-cta {
    background: var(--gradient-hero);
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.sj-cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.sj-cta-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, .2) 0%, transparent 70%);
    pointer-events: none;
}

.sj-cta-inner {
    position: relative;
    z-index: 1;
}

.sj-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.sj-cta p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.sj-wave {
    display: block;
    line-height: 0;
    background: var(--white);
}

.sj-wave svg {
    display: block;
    width: 100%;
}

/* ─────────────────────────────────────────
   19. RIDER PAGE
   ───────────────────────────────────────── */
.sj-rhero {
    background: var(--gradient-hero);
    padding: 9.5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.sj-rhero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.sj-rhero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.sj-rhero-glow {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, .28) 0%, transparent 70%);
    pointer-events: none;
}

.sj-rhero-content {
    position: relative;
    z-index: 1;
}

.sj-rhero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5.2vw, 3.9rem);
    line-height: 1.08;
    margin-bottom: 1.35rem;
    letter-spacing: -1px;
}

.sj-rhero h1 em {
    font-style: normal;
    color: #ff9fd6;
}

.sj-rhero-sub {
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
    max-width: 520px;
    margin-bottom: 2.25rem;
    line-height: 1.8;
}

.sj-app-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .22);
    border-radius: 14px;
    padding: .85rem 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: background .25s, border-color .25s, transform .25s;
}

.sj-app-btn:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    transform: translateY(-2px);
}

.sj-app-btn i {
    font-size: 1.6rem;
}

.sj-app-btn-sub {
    font-size: .68rem;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .8px;
    display: block;
}

.sj-app-btn-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

.sj-phone-mockup {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 34px;
    padding: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.sj-phone-screen {
    background: linear-gradient(160deg, #b0005a 0%, #E0007A 100%);
    border-radius: 22px;
    padding: 1.5rem;
    aspect-ratio: 9/16;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.sj-phone-row {
    background: rgba(255, 255, 255, .12);
    border-radius: 11px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
}

.sj-phone-row-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0;
}

.sj-phone-row-text {
    font-size: .72rem;
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.sj-phone-row-sub {
    font-size: .62rem;
    color: rgba(255, 255, 255, .5);
}

.sj-phone-cta {
    background: #fff;
    border-radius: 50px;
    padding: .7rem;
    text-align: center;
    font-weight: 700;
    font-size: .78rem;
    color: var(--magenta);
    margin-top: auto;
}

.sj-sec-head {
    margin-bottom: 3.5rem;
}

.sj-sec-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: .75rem;
}

.sj-sec-head p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
}

.sj-sec-head--c {
    text-align: center;
}

.sj-sec-head--c p {
    margin: 0 auto;
}

.sj-rbenefit {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.sj-rbenefit:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(23, 85, 198, .18);
}

.sj-rbenefit-ic {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.sj-rbenefit h4 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.sj-rbenefit p {
    font-size: .875rem;
    color: var(--muted);
    margin: 0;
}

.sj-path-card {
    border-radius: 24px;
    padding: 2.75rem 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    cursor: default;
}

.sj-path-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sj-path-card--standard {
    background: var(--white);
    border: 2px solid var(--border);
}

.sj-path-card--hp {
    background: linear-gradient(145deg, #D1006A 0%, #E0007A 55%, #7a003e 130%);
    border: none;
}

.sj-path-card--hp::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.sj-path-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .85rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sj-path-badge--blue {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-path-badge--white {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}

.sj-path-card--standard h3 {
    font-size: 1.55rem;
    color: var(--dark);
    margin-bottom: .6rem;
}

.sj-path-card--hp h3 {
    font-size: 1.55rem;
    color: #fff;
    margin-bottom: .6rem;
}

.sj-path-card--standard .sj-path-desc {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.sj-path-card--hp .sj-path-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 1.75rem;
}

.sj-path-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.sj-path-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
}

.sj-path-card--hp .sj-path-list li {
    border-bottom-color: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85);
}

.sj-path-card--standard .sj-path-list li {
    color: var(--text);
}

.sj-path-list li:last-child {
    border-bottom: none;
}

.sj-path-list li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.sj-path-card--hp .sj-path-list li i {
    color: #ff9fd6;
}

.sj-rstep {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.sj-rstep:last-child {
    margin-bottom: 0;
}

.sj-rstep-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.sj-rstep h5 {
    font-size: 1rem;
    margin-bottom: .3rem;
}

.sj-rstep p {
    font-size: .875rem;
    color: var(--muted);
    margin: 0;
}

.sj-hp-flow {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.sj-hp-flow-header {
    background: linear-gradient(120deg, #D1006A, #E0007A 55%, #7a003e 130%);
    padding: 2.25rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.sj-hp-flow-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.sj-hp-flow-header h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: .4rem;
    position: relative;
    z-index: 1;
}

.sj-hp-flow-header p {
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.sj-hp-steps {
    padding: 2rem 2.5rem;
}

.sj-hp-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.sj-hp-step:last-child {
    border-bottom: none;
    padding-bottom: .5rem;
}

.sj-hp-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.sj-hp-step-num--blue {
    background: var(--primary-light);
    color: var(--primary);
}

.sj-hp-step-num--magenta {
    background: var(--magenta-light);
    color: var(--magenta);
}

.sj-hp-step-num--green {
    background: #f0fdf4;
    color: #15803d;
}

.sj-hp-step-num--amber {
    background: #fffbeb;
    color: #d97706;
}

.sj-hp-step h6 {
    font-size: .95rem;
    margin-bottom: .3rem;
}

.sj-hp-step p {
    font-size: .825rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.sj-guarantor-visual {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    margin-top: .85rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.sj-g-link-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: .65rem .9rem;
}

.sj-g-link-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.sj-g-link-icon--1 {
    background: var(--magenta-light);
    color: var(--magenta);
}

.sj-g-link-icon--2 {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.sj-g-link-text {
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark);
}

.sj-g-link-sub {
    font-size: .68rem;
    color: var(--muted);
}

.sj-g-link-status {
    margin-left: auto;
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 50px;
}

.sj-g-link-status--pending {
    background: #fffbeb;
    color: #d97706;
}

.sj-g-link-status--done {
    background: #f0fdf4;
    color: #15803d;
}

.sj-vtype-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.sj-vtype-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(23, 85, 198, .2);
}

.sj-vtype-card--active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.sj-vtype-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.sj-vtype-icon--muted {
    background: #f8faff;
    color: #94a3b8;
}

.sj-vtype-card h5 {
    font-size: 1.1rem;
    margin-bottom: .4rem;
}

.sj-vtype-card p {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.sj-vtype-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.sj-earn {
    background: var(--primary-light);
    border: 1.5px solid var(--primary-mid);
    border-radius: 24px;
    padding: 3.5rem;
}

.sj-earn-stat {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.sj-earn-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: .25rem;
}

.sj-earn-label {
    font-size: .78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 500;
}

.sj-rdl {
    background: var(--dark);
    border-radius: 28px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.sj-rdl::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(209, 0, 106, .28) 0%, rgba(23, 85, 198, .2) 60%, transparent 100%);
    pointer-events: none;
}

.sj-rdl-content {
    position: relative;
    z-index: 1;
}

.sj-rdl h2 {
    color: #fff;
    margin-bottom: .75rem;
}

.sj-rdl p {
    color: rgba(255, 255, 255, .62);
}

/* ─────────────────────────────────────────
   20. FAQ PAGE
   ───────────────────────────────────────── */
.sj-faq-hero {
    background: var(--dark);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.sj-faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(209, 0, 106, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.sj-faq-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.sj-faq-hero-glow--1 {
    width: 600px;
    height: 600px;
    top: -280px;
    left: -160px;
    background: radial-gradient(circle, rgba(209, 0, 106, .3) 0%, transparent 65%);
}

.sj-faq-hero-glow--2 {
    width: 440px;
    height: 440px;
    bottom: -180px;
    right: -100px;
    background: radial-gradient(circle, rgba(23, 85, 198, .25) 0%, transparent 65%);
}

.sj-faq-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sj-faq-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    margin-bottom: .75rem;
    letter-spacing: -.5px;
}

.sj-faq-hero p {
    color: rgba(255, 255, 255, .6);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
}

.sj-faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.sj-faq-tab {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: .5rem 1.25rem;
    font-size: .83rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.sj-faq-tab:hover,
.sj-faq-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.sj-faq-category {
    margin-bottom: 3.5rem;
}

.sj-faq-category-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--primary-light);
}

.sj-faq-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sj-faq-category-icon--blue {
    background: var(--accent-light);
    color: var(--accent);
}

.sj-faq-category-icon--teal {
    background: #f0fdfa;
    color: #0d9488;
}

.sj-faq-category-icon--amber {
    background: #fffbeb;
    color: #d97706;
}

.sj-faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    margin-bottom: .75rem;
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.sj-faq-item:hover {
    border-color: rgba(209, 0, 106, .2);
}

.sj-faq-item.open {
    border-color: rgba(209, 0, 106, .25);
    box-shadow: 0 4px 20px rgba(209, 0, 106, .07);
}

.sj-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
    gap: 1rem;
    user-select: none;
}

.sj-faq-q i.sj-faq-chevron {
    color: var(--muted);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.sj-faq-item.open .sj-faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.sj-faq-a {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: .875rem;
    color: var(--text);
    line-height: 1.8;
}

.sj-faq-item.open .sj-faq-a {
    display: block;
}

.sj-faq-a ul {
    padding-left: 1.2rem;
    margin: .5rem 0 0;
}

.sj-faq-a ul li {
    margin-bottom: .35rem;
}

.sj-faq-a .sj-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border-radius: 50px;
    padding: .2rem .75rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-bottom: .35rem;
}

.sj-faq-badge--live {
    background: rgba(22, 163, 74, .1);
    color: #15803d;
}

.sj-faq-badge--soon {
    background: #fef9c3;
    color: #92400e;
}

.sj-faq-cta {
    background: var(--primary-light);
    border: 1.5px solid var(--primary-mid);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.sj-faq-cta h3 {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.sj-faq-cta p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* ─────────────────────────────────────────
   21. CONTACT / LEGAL PAGES
   ───────────────────────────────────────── */
.sj-legal {
    padding: 8rem 0 5rem;
}

.sj-legal-head {
    margin-bottom: 2rem;
}

.sj-legal-head h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--primary);
    margin: 0;
}

.sj-legal-updated {
    color: #94a3b8;
    font-size: .9rem;
    margin-top: .35rem;
}

.sj-legal-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text, #334155);
    margin: 1.4rem 0 2rem;
}

.sj-legal-section {
    margin-bottom: 1.9rem;
}

.sj-legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .6rem;
}

.sj-legal-section p,
.sj-legal-section li {
    line-height: 1.75;
    color: var(--text, #334155);
}

.sj-legal-section ul {
    padding-left: 1.2rem;
}

.sj-legal-section li {
    margin-bottom: .5rem;
}

.sj-legal-foot {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
}

.sj-contact-card {
    background: var(--surface, #f8faff);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sj-contact-card a,
.sj-contact-card div {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--text, #334155);
    text-decoration: none;
    font-weight: 500;
}

.sj-contact-card a:hover {
    color: var(--primary);
}

.sj-contact-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ─────────────────────────────────────────
   22. BOOKING FORM
   ───────────────────────────────────────── */
.sj-bk-tabs {
    display: flex;
    gap: .4rem;
    margin-bottom: 1.25rem;
    background: #f7f9fd;
    border-radius: 10px;
    padding: 4px;
}

.sj-bk-tab {
    flex: 1;
    text-align: center;
    padding: .5rem;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}

.sj-bk-tab.active {
    background: #fff;
    color: #0d0d0d;
    box-shadow: 0 2px 8px rgba(13, 13, 13, .12);
}

.sj-bk-field {
    margin-bottom: 1rem;
}

.sj-bk-field label {
    font-size: .72rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: .4rem;
    display: block;
}

.sj-bk-input-wrap {
    position: relative;
}

.sj-bk-input-wrap>i {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .95rem;
    z-index: 1;
}

.sj-bk-input {
    width: 100%;
    padding: .8rem 1rem .8rem 2.75rem;
    border: 1.5px solid transparent;
    border-radius: 8px;
    font-size: .9rem;
    color: #0c1832;
    background: #f3f4f6;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-family: 'Inter', sans-serif;
}

.sj-bk-input::placeholder {
    color: #8b94a3;
}

.sj-bk-input:focus {
    background: #fff;
    border-color: #0d0d0d;
    box-shadow: 0 0 0 3px rgba(13, 13, 13, .08);
}

.sj-bk-connector {
    width: 2px;
    height: 14px;
    background: #e2e8f0;
    margin-left: 1.05rem;
}

.sj-bk-fare {
    background: #eef3ff;
    border-radius: 10px;
    padding: .85rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sj-bk-fare-label {
    font-size: .78rem;
    color: #64748b;
    font-weight: 500;
}

.sj-bk-fare-sub {
    font-size: .72rem;
    color: #94a3b8;
}

.sj-bk-fare-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
}

.sj-bk-submit {
    width: 100%;
    background: #0d0d0d;
    color: #fff;
    border: none;
    padding: .9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: background .2s, transform .2s, opacity .2s;
}

.sj-bk-submit:hover:not(:disabled) {
    background: #262626;
    transform: translateY(-1px);
}

.sj-bk-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.sj-bk-note {
    font-size: .73rem;
    color: #94a3b8;
    text-align: center;
    margin: .75rem 0 0;
}

.pac-container {
    z-index: 99999 !important;
    border-radius: 10px;
    margin-top: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border: none;
    font-family: 'Inter', sans-serif;
}

/* ─────────────────────────────────────────
   MOBILE OFF-CANVAS MENU
   ───────────────────────────────────────── */
.sj-offcanvas {
    width: 300px !important;
    background: #fff;
    border-right: 1px solid var(--border);
}
html[data-theme="dark"] .sj-offcanvas { background: #0f172a; border-right-color: rgba(255,255,255,.08); }

.sj-offcanvas-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
}
html[data-theme="dark"] .sj-offcanvas-header { border-bottom-color: rgba(255,255,255,.08); }

.sj-offcanvas-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--text); cursor: pointer;
    transition: background .2s;
}
.sj-offcanvas-close:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

.sj-offcanvas-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0; overflow-y: auto; }

.sj-offcanvas-nav { display: flex; flex-direction: column; gap: .25rem; }

.sj-offcanvas-link {
    display: flex; align-items: center; gap: .75rem;
    padding: .75rem 1rem; border-radius: 10px;
    text-decoration: none; font-size: .95rem; font-weight: 500;
    color: var(--text); transition: background .2s, color .2s;
}
.sj-offcanvas-link:hover,
.sj-offcanvas-link.active { background: var(--primary-light); color: var(--primary); }

.sj-offcanvas-link-ic {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--surface); display: flex; align-items: center; justify-content: center;
    font-size: .95rem; color: var(--primary); flex-shrink: 0;
    transition: background .2s;
}
.sj-offcanvas-link:hover .sj-offcanvas-link-ic,
.sj-offcanvas-link.active .sj-offcanvas-link-ic { background: var(--primary-light); }

.sj-offcanvas-divider { height: 1px; background: var(--border); margin: 1rem 0; }
html[data-theme="dark"] .sj-offcanvas-divider { background: rgba(255,255,255,.08); }

.sj-offcanvas-section-label {
    font-size: .72rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--muted); margin-bottom: .6rem;
}

.sj-offcanvas-login-cards { display: flex; flex-direction: column; gap: .5rem; }

.sj-offcanvas-login-card {
    display: flex; align-items: center; gap: .85rem;
    padding: .85rem 1rem; border-radius: 12px;
    border: 1.5px solid var(--border); text-decoration: none;
    transition: border-color .2s, background .2s;
}
.sj-offcanvas-login-card:hover { border-color: var(--primary); background: var(--primary-light); }
.sj-offcanvas-login-card strong { display: block; font-size: .9rem; color: var(--text); }
.sj-offcanvas-login-card small { display: block; font-size: .75rem; color: var(--muted); }

.sj-offcanvas-card-ic {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.sj-offcanvas-card-ic--blue { background: linear-gradient(135deg,#1755c6,#3b82f6); }
.sj-offcanvas-card-ic--pink { background: linear-gradient(135deg,#d1006a,#f43f5e); }

.sj-offcanvas-account-btn {
    display: flex; align-items: center; justify-content: center;
    padding: .8rem 1.25rem; border-radius: 50px;
    background: var(--gradient); color: #fff;
    text-decoration: none; font-weight: 600; font-size: .9rem;
}

.sj-offcanvas-rider-btn {
    display: flex; align-items: center; justify-content: center;
    padding: .8rem 1.25rem; border-radius: 50px;
    border: 1.5px solid var(--border); color: var(--text);
    text-decoration: none; font-weight: 600; font-size: .9rem;
    transition: border-color .2s, background .2s;
}
.sj-offcanvas-rider-btn:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

/* ─────────────────────────────────────────
   23. RESPONSIVE — ≤ 991 px
   ───────────────────────────────────────── */
@media (max-width: 991px) {
    .sj-nav-inner {
        padding: 7px 20px;
    }

    .sj-logo img {
        height: 46px;
    }

    .sj-nav-links {
        display: none;
    }

    .sj-nav-toggle {
        display: flex;
    }

    .sj-section {
        padding: 4rem 0;
    }

    .sj-app-banner {
        padding: 40px 20px;
    }

    .sj-earn,
    .sj-rdl,
    .sj-hp-steps,
    .sj-hp-flow-header {
        padding: 2rem 1.5rem;
    }

    .sj-eligibility,
    .sj-timeline-panel {
        padding: 2.5rem 1.75rem;
    }
}

/* ─────────────────────────────────────────
   24. RESPONSIVE — ≤ 767 px  (MOBILE)
   ───────────────────────────────────────── */
@media (max-width: 767px) {

    /* Hero */
    .sj-hero {
        background-image: url('../images/hero-bg-mobile.png') !important;
        background-position: center top !important;
        min-height: unset;
        padding: 5.5rem 0 10rem;
    }

    .sj-hero::before {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, .92) 0%,
                rgba(255, 255, 255, .70) 55%,
                rgba(255, 255, 255, .10) 100%);
    }

    html[data-theme="dark"] .sj-hero::before {
        background: linear-gradient(to bottom, rgb(8 19 43 / 0%) 0%, rgb(8 19 43 / 0%) 55%, rgb(8 19 43 / 0%) 100%);
    }

    .sj-hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .sj-hero-sub {
        font-size: .875rem;
    }

    .sj-hero-trust {
        display: none;
    }

    /* Stats bar — all 5 on one row */
    .sj-stats-bar {
        padding: 1.5rem 0;
    }

    .sj-stats-bar .container>.d-flex {
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }

    .sj-stat-item-w {
        flex: 0 0 20%;
    }

    .sj-stat-num-w {
        font-size: 1.25rem;
    }

    .sj-stat-label-w {
        font-size: .58rem;
        letter-spacing: 0;
    }

    /* Investor stat divider */
    .sj-stat-divider {
        display: none;
    }

    /* Section header */
    .sj-section-header p {
        font-size: 14px;
    }

    /* App banner */
    .sj-app-banner p {
        line-height: 1.5;
        font-size: 14px;
    }

    /* Rider / investor card padding */
    .sj-path-card {
        padding: 2rem 1.5rem;
    }
}

/* ─────────────────────────────────────────
   CUSTOMER / INVESTOR PORTAL — MOBILE
   ───────────────────────────────────────── */

/* Section top padding override on mobile */
@media (max-width: 767.98px) {
    .sj-portal-section {
        padding-top: 5rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Portal nav header greeting */
.sj-portal-nav-header h2 { font-size: 1.35rem; }

/* Investor sticky bottom nav (mobile only) */
.sj-portal-bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1040;
    display: flex; align-items: stretch;
    background: #fff; border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    padding-bottom: env(safe-area-inset-bottom);
}
html[data-theme="dark"] .sj-portal-bottom-nav {
    background: #0f172a; border-top-color: rgba(255,255,255,.08);
}
.sj-portal-bottom-nav-item {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: .55rem .25rem; gap: .2rem; text-decoration: none;
    color: var(--muted); font-size: .65rem; font-weight: 600;
    letter-spacing: .3px; border: none; background: none; cursor: pointer;
    transition: color .2s;
}
.sj-portal-bottom-nav-item i { font-size: 1.25rem; line-height: 1; }
.sj-portal-bottom-nav-item.active { color: var(--primary); }
.sj-portal-bottom-nav-item:hover { color: var(--primary); }

/* Extra bottom padding so last card doesn't hide behind sticky nav */
@media (max-width: 767.98px) {
    .sj-portal-section { padding-bottom: 5rem !important; }
}

/* Customer portal inline header buttons — horizontal scroll on mobile */
@media (max-width: 767.98px) {
    .sj-portal-header-btns {
        flex-wrap: nowrap; overflow-x: auto;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
        padding-bottom: .25rem;
    }
    .sj-portal-header-btns::-webkit-scrollbar { display: none; }
    .sj-portal-header-btns > * { flex-shrink: 0; white-space: nowrap; }
}

/* Portal amount text — responsive font size */
@media (max-width: 767.98px) {
    .sj-portal-amount    { font-size: 1.05rem !important; }
    .sj-portal-amount-lg { font-size: 1.2rem  !important; }
    .sj-eligibility-badge {
        display: flex !important;
        max-width: 100%;
        white-space: normal !important;
        font-size: .72rem !important;
        padding: .3rem .55rem !important;
    }
    .sj-card { padding: 1rem !important; }
}

/* Wallet balance cards — 3-col on mobile needs smaller font */
@media (max-width: 575.98px) {
    .sj-portal-amount-lg { font-size: 1rem !important; }
    .sj-portal-amount    { font-size: .95rem !important; }
}

/* Wallet 3-col balance cards — prevent overflow on narrow screens */
@media (max-width: 767.98px) {
    .sj-portal-amount-lg {
        font-size: .88rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Wallet balance cards */
.sj-wallet-bal-card {
    display: flex; align-items: center; gap: 1rem; padding: 1.25rem !important;
}
.sj-wallet-bal-icon {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.sj-wallet-bal-info { flex: 1; min-width: 0; }
.sj-wallet-bal-label {
    display: block; font-size: .72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .6px; color: var(--muted);
    margin-bottom: .2rem;
}
.sj-wallet-bal-amount {
    font-family: 'Poppins', sans-serif; font-size: 1.5rem;
    font-weight: 800; color: var(--dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 767.98px) {
    .sj-wallet-bal-amount { font-size: 1.2rem; }
}

/* Portal pages — push scroll-to-top & footer above sticky bottom nav */
@media (max-width: 767.98px) {
    body.sj-portal-page #sjScrollTop {
        bottom: calc(1.75rem + 68px) !important;
    }
    body.sj-portal-page .sj-footer {
        padding-bottom: 72px;
    }
}

/* ═══════════════════════════════════════════════════════════
   INVESTOR PAGE — DESIGN + RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* 1. Dark gradient hero ─────────────────────────────────── */
.sj-hero.sj-inv-hero,
html[data-theme="dark"] .sj-hero.sj-inv-hero {
    background: var(--gradient-hero) !important;
    min-height: 680px;
}

.sj-hero.sj-inv-hero::before,
html[data-theme="dark"] .sj-hero.sj-inv-hero::before {
    display: none !important;
}

.sj-hero.sj-inv-hero h1,
html[data-theme="dark"] .sj-hero.sj-inv-hero h1 {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.sj-hero.sj-inv-hero .sj-hero-sub,
html[data-theme="dark"] .sj-hero.sj-inv-hero .sj-hero-sub {
    color: rgba(255, 255, 255, .72);
}

.sj-hero.sj-inv-hero .sj-hero-trust,
html[data-theme="dark"] .sj-hero.sj-inv-hero .sj-hero-trust {
    border-top-color: rgba(255, 255, 255, .15);
}

.sj-hero.sj-inv-hero .sj-trust-item {
    color: rgba(255, 255, 255, .7);
}

.sj-hero.sj-inv-hero .sj-trust-item i {
    color: rgba(255, 255, 255, .95);
}

/* 2. Investor stats bar — light background, single row ─────*/
.sj-stats-bar.sj-inv-stats {
    background: var(--white);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.sj-stats-bar.sj-inv-stats .container > .d-flex {
    flex-wrap: nowrap !important;
}

.sj-stats-bar.sj-inv-stats .sj-stat-item {
    flex: 1 1 0;
    min-width: 0;
    padding-left: .85rem !important;
    padding-right: .85rem !important;
}

html[data-theme="dark"] .sj-stats-bar.sj-inv-stats {
    background: #0f172a;
    border-bottom-color: rgba(255, 255, 255, .07);
}

/* 3. Terms table responsive scroll wrapper ──────────────── */
.sj-terms-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
}

html[data-theme="dark"] .sj-terms-table-wrap {
    border-color: #1e2f4a;
}

.sj-terms-table-wrap .sj-terms-table {
    border: none;
    border-radius: 0;
    min-width: 520px;
}

/* 4. Mobile investment chips (shown only on mobile) ────────*/
.sj-inv-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    margin: 1.5rem 0;
}

.sj-inv-chip {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: .9rem 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.sj-inv-chip-val {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}

.sj-inv-chip-label {
    display: block;
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    margin-top: .15rem;
    letter-spacing: .3px;
}

/* 5. Tablet ≤ 991px ─────────────────────────────────────── */
@media (max-width: 991.98px) {
    .sj-hero.sj-inv-hero {
        min-height: unset !important;
        padding: 5.5rem 1.25rem 3rem !important;
        align-items: flex-start;
    }

    /* Remove large Bootstrap g-5 gap on mobile — hero row only */
    .sj-hero.sj-inv-hero .row { --bs-gutter-x: 0; --bs-gutter-y: 1.5rem; }

    /* Centre all hero text */
    .sj-inv-hero-text { text-align: center; }
    .sj-inv-hero-text .sj-badge { display: inline-flex; }
    .sj-inv-hero-text .sj-hero-trust { justify-content: center; }

    /* CTA buttons — stacked, full width */
    .sj-inv-hero-text .sj-hero-actions {
        display: flex;
        flex-direction: column;
        gap: .75rem;
        align-items: stretch;
    }

    .sj-inv-btn-full { width: 100%; justify-content: center !important; }

    /* Chips — centred, max width */
    .sj-inv-chips {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* 6. Mobile ≤ 767px ─────────────────────────────────────── */
@media (max-width: 767.98px) {
    /* Investor stats — 3-col grid */
    .sj-inv-stats .container > .d-flex {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem 0 !important;
        flex-wrap: unset !important;
        padding: 0 .5rem;
    }
    .sj-inv-stats .sj-stat-divider { display: none !important; }
    .sj-inv-stats .sj-stat-item { padding: 0 !important; }
    .sj-stat-num { font-size: 1.35rem; }
    .sj-stat-label { font-size: .6rem; letter-spacing: .3px; }

    /* Overview cards */
    .sj-ov-card { padding: 1.25rem; }
    .sj-ov-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; margin-bottom: .7rem; }
    .sj-ov-card h4 { font-size: .9rem; }
    .sj-ov-card p { font-size: .8rem; }

    /* How It Works */
    .sj-step { gap: .85rem; }
    .sj-step-num { width: 36px; height: 36px; font-size: .85rem; }
    .sj-step-line { margin-left: 17px; }
    .sj-timeline-panel { padding: 1.6rem 1.25rem; }

    /* Eligibility */
    .sj-eligibility { padding: 2rem 1.5rem; border-radius: 16px; }
    .sj-eligibility::after { display: none; }

    /* CTA */
    .sj-cta { padding: 4.5rem 1rem; }
    .sj-cta p { font-size: .9rem; margin-bottom: 2rem; }
    .sj-cta .d-flex.flex-wrap { flex-direction: column !important; align-items: stretch !important; }
    .sj-cta .d-flex.flex-wrap a { width: 100%; justify-content: center; text-align: center; }
}

/* 7. Extra small ≤ 575px ────────────────────────────────── */
@media (max-width: 575.98px) {
    .sj-hero.sj-inv-hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; }
    .sj-hero.sj-inv-hero .sj-hero-sub { font-size: .82rem; }

    /* Chips tighter */
    .sj-inv-chip { padding: .75rem .6rem; border-radius: 12px; }
    .sj-inv-chip-val { font-size: 1.2rem; }
    .sj-inv-chip-label { font-size: .63rem; }

    /* Section titles */
    .sj-section-header h2,
    .sj-section-header--center h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

    /* Investor stats */
    .sj-stat-num { font-size: 1.15rem; }
    .sj-stat-num sup { font-size: .68rem; }
    .sj-stat-label { font-size: .54rem; }

    /* Cards */
    .sj-ref-card { padding: 1.25rem; }
    .sj-ref-val { font-size: 1.1rem; }
    .sj-step-body h5 { font-size: .88rem; }
    .sj-step-body p { font-size: .8rem; }
    .sj-sec-card { padding: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ PAGE — MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Hero — reduce padding & glow size on mobile */
@media (max-width: 767.98px) {
    .sj-faq-hero {
        padding: 5.5rem 1rem 2.75rem;
    }

    .sj-faq-hero h1 {
        font-size: clamp(1.65rem, 7.5vw, 2.4rem);
        letter-spacing: -.3px;
    }

    .sj-faq-hero p {
        font-size: .88rem;
        line-height: 1.7;
    }

    .sj-faq-hero-glow--1 {
        width: 260px;
        height: 260px;
        top: -90px;
        left: -70px;
    }

    .sj-faq-hero-glow--2 {
        width: 200px;
        height: 200px;
        bottom: -70px;
        right: -50px;
    }
}

/* Tabs — single-row horizontal scroll on mobile */
@media (max-width: 767.98px) {
    .sj-faq-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: .4rem;
        padding: .25rem .25rem .6rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
        /* subtle fade hint on right edge */
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .sj-faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .sj-faq-tab {
        flex-shrink: 0;
        padding: .4rem .95rem;
        font-size: .78rem;
        white-space: nowrap;
    }
}

/* Category title — wrap gracefully with badge on small screens */
@media (max-width: 575.98px) {
    .sj-faq-category-title {
        font-size: 1rem;
        gap: .5rem;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .sj-faq-category {
        margin-bottom: 2.25rem;
    }
}

/* FAQ items — tighter padding & smaller font on mobile */
@media (max-width: 767.98px) {
    .sj-faq-item {
        border-radius: 12px;
        margin-bottom: .5rem;
    }

    .sj-faq-q {
        padding: .95rem 1.1rem;
        font-size: .855rem;
        gap: .6rem;
        line-height: 1.5;
    }

    .sj-faq-q i.sj-faq-chevron {
        font-size: .9rem;
    }

    .sj-faq-a {
        padding: 0 1.1rem 1rem;
        font-size: .835rem;
        line-height: 1.75;
    }

    .sj-faq-a ul,
    .sj-faq-a ol {
        padding-left: 1rem;
    }

    .sj-faq-a ul li,
    .sj-faq-a ol li {
        margin-bottom: .3rem;
    }
}

/* CTA block — compact on mobile */
@media (max-width: 767.98px) {
    .sj-faq-cta {
        padding: 2rem 1.25rem;
        border-radius: 14px;
    }

    .sj-faq-cta h3 {
        font-size: 1.2rem;
    }

    .sj-faq-cta p {
        font-size: .875rem;
    }
}

/* Section — side padding on mobile */
@media (max-width: 575.98px) {
    .sj-faq-tabs {
        margin-left: -.25rem;
        margin-right: -.25rem;
    }
}
