/* ══════════════════════════════════
   BRAND TOKENS
══════════════════════════════════ */
:root {
    --bit-blue: #1455cc;
    --bit-blue-dark: #0d3a99;
    --bit-blue-mid: #1e6fe8;
    --bit-blue-light: #4a9bf5;
    --bit-blue-pale: #ebf3ff;
    --bit-teal: #00b4c8;
    --bit-teal-dark: #0090a8;
    --bit-green: #3ddb6a;
    --bit-green-lime: #69f542;
    --bit-green-tag: #2ecc5a;
    --bit-navy: #0a1f5c;
    --gray-50: #f5f8ff;
    --gray-100: #e8eff9;
    --gray-300: #b8c8e8;
    --gray-500: #6b7a99;
    --gray-700: #374151;
    --gray-900: #0f1c36;
    --bs-font-sans-serif: "Plus Jakarta Sans", sans-serif;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif !important;
    /* font-family: "Sora", sans-serif !important; */
    color: var(--gray-900);
    overflow-x: hidden;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20, 85, 204, 0.1);
    box-shadow: 0 2px 24px rgba(10, 31, 92, 0.08);
    padding: 0;
    min-height: 68px;
}
.navbar-brand {
    padding: 0;
}
.bit-logo svg {
    height: 42px;
    width: auto;
}

/* Lang switcher */
.nav-lang a {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-lang a.active {
    color: var(--bit-blue);
}
.nav-lang .sep {
    color: var(--gray-300);
    font-size: 11px;
    margin: 0 4px;
}

/* Nav links */
.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
    color: var(--bit-blue) !important;
    background: var(--bit-blue-pale);
}
.navbar-nav .nav-link .bi-chevron-down {
    font-size: 10px;
    transition: transform 0.25s;
}
.navbar-nav .nav-link.show .bi-chevron-down {
    transform: rotate(180deg);
}

/* CTA buttons */
.btn-masuk {
    border: 2px solid var(--bit-blue);
    color: var(--bit-blue);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.2s;
}
.btn-masuk:hover {
    background: var(--bit-blue-pale);
    color: var(--bit-blue);
    border-color: var(--bit-blue);
}
.btn-daftar {
    background: var(--bit-blue);
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 20px;
    border-radius: 8px;
    border: 2px solid var(--bit-blue);
    transition: all 0.2s;
}
.btn-daftar:hover {
    background: var(--bit-blue-dark);
    border-color: var(--bit-blue-dark);
    color: white;
}
.btn-coba {
    background: linear-gradient(135deg, var(--bit-green), #1db954);
    color: white;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 18px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(61, 219, 106, 0.35);
    white-space: nowrap;
}
.btn-coba:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61, 219, 106, 0.45);
    color: white;
}

/* ── MEGA DROPDOWN ── */
.mega-menu-wrapper {
    position: static !important;
}
.mega-menu-wrapper > .dropdown-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    top: 100% !important;
    border: none;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 64px rgba(10, 31, 92, 0.16);
    border-top: 1px solid var(--gray-100);
    padding: 28px 32px 32px;
    animation: dropFade 0.18s ease;
}
@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--gray-100);
}
.mega-header-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bit-blue);
    margin: 0;
}
.mega-divider {
    width: 1px;
    height: 18px;
    background: var(--gray-100);
}
.mega-header-sub {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}
.mega-header-arrow {
    margin-left: auto;
    color: var(--bit-blue);
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}

.mega-col-title {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--bit-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.mega-col .dropdown-item {
    font-size: 13.5px;
    color: var(--gray-700);
    padding: 4px 0;
    border-radius: 0;
    background: transparent;
    transition: all 0.15s;
}
.mega-col .dropdown-item:hover {
    color: var(--bit-blue);
    background: transparent;
    padding-left: 5px;
}

/* ── SMALL DROPDOWN ── */
.small-drop > .dropdown-menu {
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(10, 31, 92, 0.14);
    border: 1px solid var(--gray-100);
    padding: 8px 0;
    min-width: 210px;
    animation: dropFade 0.18s ease;
}
.small-drop .dropdown-item {
    font-size: 13.5px;
    color: var(--gray-700);
    padding: 8px 20px;
    transition: all 0.15s;
}
.small-drop .dropdown-item:hover {
    background: var(--bit-blue-pale);
    color: var(--bit-blue);
    padding-left: 24px;
}

/* Mobile nav collapse */
@media (max-width: 991.98px) {
    .navbar {
        min-height: 60px;
    }
    .navbar-collapse {
        background: white;
        border-top: 1px solid var(--gray-100);
        padding: 16px 20px 20px;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 8px 32px rgba(10, 31, 92, 0.12);
    }
    .navbar-nav .nav-link {
        border-radius: 8px;
        padding: 10px 14px !important;
    }
    .mega-menu-wrapper > .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border-radius: 12px;
        background: var(--gray-50);
        padding: 16px;
        border: 1px solid var(--gray-100);
        margin-top: 4px;
    }
    .mega-header {
        flex-wrap: wrap;
    }
    .nav-cta-wrap {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }
    .nav-cta-wrap .btn-masuk,
    .nav-cta-wrap .btn-daftar,
    .nav-cta-wrap .btn-coba {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .nav-lang-wrap {
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--gray-100);
    }
    .bit-logo svg {
        height: 34px;
    }
    .navbar-toggler {
        border: 1.5px solid var(--bit-blue);
        padding: 5px 9px;
        border-radius: 8px;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231455CC' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* ══════════════════════════════════
   HERO — Gadjian-style centered layout
══════════════════════════════════ */
.hero-section {
    background: linear-gradient(160deg, #0d3a99 0%, #1455cc 45%, #0098b4 100%);
    padding-top: 68px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: none !important;
}
/* Soft radial glow overlays */
.hero-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 180, 200, 0.18) 0%,
        transparent 65%
    );
    pointer-events: none;
    border-bottom: none !important;
}
.hero-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(20, 85, 204, 0.25) 0%,
        transparent 65%
    );
    pointer-events: none;
    border-bottom: none !important;
}

@keyframes blob {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-22px) scale(1.03);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 6px 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12.5px;
    font-weight: 600;
    animation: fadeUp 0.6s ease both;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bit-green);
    box-shadow: 0 0 6px var(--bit-green);
}

/* Headline */
.hero-title {
    font-family: "Sora", sans-serif;
    /* font-size: clamp(32px, 5vw, 36px); */
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeUp 0.7s ease both 0.1s;
}
.hero-title .hl {
    color: var(--bit-green-lime);
}

/* Sub text */
.hero-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.75;
    /* max-width: 640px; */
    margin: 0 auto;
    animation: fadeUp 0.7s ease both 0.2s;
}

/* Buttons */
.btn-hero-main {
    background: white;
    color: var(--bit-blue);
    font-weight: 800;
    font-size: 15px;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-hero-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
    color: #feffff;
}
.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.13);
    color: white;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 14px 30px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: white;
}

/* ── Circular diagram ── */
.diagram-wrap {
    position: relative;
    width: 520px;
    height: 350px;
    margin: 0 auto;
    /* animation: fadeUp 0.9s ease both 0.3s; */
}

/* Orbit ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.64);
}
.orbit-ring-1 {
    width: 420px;
    height: 420px;
}
.orbit-ring-2 {
    width: 280px;
    height: 280px;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.64);
}

/* Centre person illustration */
.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.64);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    line-height: 1;
    /* animation: blob 6s ease-in-out infinite; */
}

/* Feature nodes on orbit */
.orbit-node {
    position: absolute;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
}
.orbit-node-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto;
    transition: all 0.3s;
    cursor: pointer;
    animation: popIn 0.6s ease both;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.orbit-node-inner:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.orbit-node-label {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 6px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Node positions (clock: top=0°, right=90°, etc.) */
/* Top */
.node-top {
    top: calc(50% - 210px);
    left: 50%;
}
/* Top-right */
.node-tr {
    top: calc(50% - 130px);
    left: calc(50% + 175px);
}
/* Bot-right */
.node-br {
    top: calc(50% + 140px);
    left: calc(50% + 175px);
}
/* Bottom */
.node-bot {
    top: calc(50% + 215px);
    left: 50%;
}
/* Bot-left */
.node-bl {
    top: calc(50% + 140px);
    left: calc(50% - 175px);
}
/* Top-left */
.node-tl {
    top: calc(50% - 130px);
    left: calc(50% - 175px);
}

/* SVG connector lines */
.orbit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Stats bar below diagram */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-stat-val {
    font-family: "Sora", sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--bit-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.hero-stat-lbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: auto;
    }
    .diagram-wrap {
        width: 340px;
        height: 340px;
    }
    .orbit-ring-1 {
        width: 280px;
        height: 280px;
    }
    .orbit-ring-2 {
        width: 180px;
        height: 180px;
    }
    .diagram-center {
        width: 130px;
        height: 130px;
        font-size: 58px;
    }
    .orbit-node-inner {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    .orbit-node-label {
        font-size: 9.5px;
    }
    .node-top {
        top: calc(50% - 140px);
        left: 50%;
    }
    .node-tr {
        top: calc(50% - 82px);
        left: calc(50% + 115px);
    }
    .node-br {
        top: calc(50% + 90px);
        left: calc(50% + 115px);
    }
    .node-bot {
        top: calc(50% + 145px);
        left: 50%;
    }
    .node-bl {
        top: calc(50% + 90px);
        left: calc(50% - 115px);
    }
    .node-tl {
        top: calc(50% - 82px);
        left: calc(50% - 115px);
    }
    .hero-stats {
        gap: 28px;
    }
    .hero-stat-val {
        font-size: 26px;
    }
}

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 0;
}

.trust-logo {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #b8c8d8;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
.section-tag {
    display: inline-block;
    background: var(--bit-blue-pale);
    color: var(--bit-blue);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-title {
    font-family: "Sora", sans-serif;
    font-weight: 650;
    letter-spacing: -0.5px;
    color: var(--gray-900);
}
.section-title .ac {
    color: var(--bit-blue);
}

/* ── Feature cards ── */
.feat-card {
    background: white;
    border-radius: 20px;
    padding: 34px 26px;
    border: 1.5px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(10, 31, 92, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
/* .feat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bit-blue), var(--bit-teal));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
} */

.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 31, 92, 0.1);
    border-color: var(--bit-blue-light);
}
.feat-card:hover::after {
    transform: scaleX(1);
}
.feat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.feat-card h5 {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    color: var(--gray-900);
}
.feat-card p {
    color: var(--gray-500);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ── Solution items ── */
.sol-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-100);
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(10, 31, 92, 0.04);
}
.sol-item:hover {
    border-color: var(--bit-blue-light);
    box-shadow: 0 8px 28px rgba(20, 85, 204, 0.1);
    transform: translateX(5px);
}
.sol-ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.sol-item h6 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3px;
}
.sol-item p {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

/* App panel */
.app-panel {
    background: linear-gradient(
        160deg,
        var(--bit-blue-dark),
        var(--bit-blue),
        var(--bit-teal-dark)
    );
    border-radius: 28px;
    padding: 34px 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 31, 92, 0.28);
    height: 100%;
}
.app-panel::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(0, 180, 200, 0.2);
}
.app-panel-title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
}
.app-panel-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    position: relative;
}
.app-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13.5px;
    position: relative;
}
.app-row:last-child {
    border-bottom: none;
}
.app-label {
    color: rgba(255, 255, 255, 0.72);
}
.app-chip {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}
.app-chip.g {
    background: rgba(61, 219, 106, 0.22);
    color: #69f542;
}
.app-chip.a {
    background: rgba(255, 196, 0, 0.22);
    color: #ffd740;
}

/* ── Stats band ── */
.stats-band {
    background: linear-gradient(
        135deg,
        var(--bit-navy) 0%,
        var(--bit-blue) 60%,
        var(--bit-teal-dark) 100%
    );
    padding: 80px 0;
}
.stat-num {
    font-family: "Sora", sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--bit-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 6px;
}

/* ── App screens mockup ── */
.app-scr {
    background: white;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(10, 31, 92, 0.15);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}
.app-scr-hdr {
    background: linear-gradient(135deg, var(--bit-blue), var(--bit-teal));
    padding: 12px 14px 26px;
    color: white;
}
.app-mc {
    background: var(--bit-blue-pale);
    border-radius: 10px;
    padding: 9px;
    margin-top: -12px;
    border: 1.5px dashed var(--bit-blue-light);
}
.app-mc-tag {
    background: var(--bit-green-tag);
    color: white;
    font-size: 7px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    display: inline-block;
}

/* ── Preview points ── */
.prev-pt-ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    flex-shrink: 0;
    /* background: linear-gradient(135deg, var(--bit-blue), var(--bit-teal)); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(20, 85, 204, 0.25);
}

/* ── Testimonials ── */
.testi-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(10, 31, 92, 0.05);
    transition: all 0.3s;
    position: relative;
    height: 100%;
}
.testi-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 60px;
    color: var(--bit-blue-pale);
    font-family: Georgia, serif;
    line-height: 1;
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(10, 31, 92, 0.1);
}
.stars {
    color: #ffb300;
    font-size: 14px;
}
.t-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bit-blue), var(--bit-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--bit-blue-pale), #d6eaff);
    border-radius: 28px;
    border: 1px solid rgba(20, 85, 204, 0.12);
    box-shadow: 0 20px 60px rgba(10, 31, 92, 0.07);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(20, 85, 204, 0.1) 0%,
        transparent 70%
    );
}
.btn-cta-m {
    background: linear-gradient(135deg, var(--bit-blue), var(--bit-blue-mid));
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 24px rgba(20, 85, 204, 0.3);
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-cta-m:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(20, 85, 204, 0.4);
    color: white;
}
.btn-cta-s {
    background: white;
    color: var(--bit-blue);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1.5px solid var(--bit-blue);
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-cta-s:hover {
    background: var(--bit-blue-pale);
    color: var(--bit-blue);
}

/* ── Footer ── */
footer {
    background: #06102e;
    padding-top: 68px;
}
.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social-btn:hover {
    background: var(--bit-blue);
    color: white;
}
.footer-col-title {
    color: white !important;
    font-size: 13.5px;
    font-weight: 700;
}
.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}
.footer-link:hover {
    color: var(--bit-blue-light) !important;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12.5px;
}

/* helpers */
.bg-gray-50 {
    background-color: var(--gray-50);
}

/* CUSTOM */
.dropdown-toggle::after {
    display: none !important;
}

.trust-logos {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 64px !important;
    flex-wrap: wrap !important;
}

.trust-logo {
    height: 72px !important;
    display: flex !important;
    align-items: center !important;
}

.trust-logo img {
    max-height: 72px !important;
    width: 150px !important;
    object-fit: contain !important;
    filter: grayscale(20%) brightness(120%) !important;
    transition: 0.3s !important;
}

.trust-logo img:hover {
    filter: none !important;
    transform: scale(1.05) !important;
}

.app-panel {
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.app-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.app-panel {
    height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}

.hero-curve {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    line-height: 0 !important;
    z-index: 9999 !important;
}

.hero-curve svg {
    z-index: 9999 !important;
    display: block;
    width: 100%;
    height: 120px;
}

/* FAQ */
.faq-wrapper {
    max-width: 850px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #6b7280;
    line-height: 1.7;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-icon {
    font-size: 20px;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.app-image {
    border-radius: 10px;
    width: 580px;
    max-width: 100%;
}

/* mobile */
@media (max-width: 768px) {
    .app-image {
        width: 600px !important;
    }
}
/*  */
.prev-pt-ic {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef4ff;
    font-size: 18px;
}
.ac {
    color: var(--bit-blue);
}
