:root {
    --bg-dark: #101928;
    --bg-card: #0A0C16;
    --bg-card-hover: #111827;
    --accent-red: #FF0000BF;
    --accent-red-dark: #c0271d;
    --accent-blue: #4F46E5;
    --text-primary: #f0f2ff;
    --text-secondary: #94A3B8;
    --text-muted: #475569;
    --border: rgba(255, 255, 255, 0.07);
    --border-bright: rgba(255, 255, 255, 0.13);
    --glow-red: rgba(232, 55, 44, 0.18);
    --glow-blue: rgba(59, 110, 245, 0.18);
    --font-head: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --nav-height: 70px;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── NAV ── */
.background-header-nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #101928;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.background-header-nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

/* ── LOGO ── */
.background-header-nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 2px;
}

.background-header-nav-logo-icon {
    /* width: 200px; */
    height: auto;
    object-fit: contain;
}

/* ── DESKTOP MENU ── */
.background-header-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    margin-right: auto;
    margin-left: 40px;
}

.background-header-nav-menu li:first-child a {
    padding-left: 0;
}

.background-header-nav-menu a {
    display: block;
    padding: 8px 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F8FAFC;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    font-family: 'Sora', sans-serif;
}

/* Lock header typography across all pages that reuse this nav */
.background-header-nav-wrapper .background-header-nav-menu>li>a {
    font-size: 0.875rem !important;
    line-height: 1.2;
}

.background-header-nav-menu a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* ── RIGHT ACTIONS ── */
.background-header-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.background-header-nav-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
}

.background-header-nav-search-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.background-header-nav-login-btn {
    background: none;
    border: none;
    color: #F8FAFC;
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.2s, opacity 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

.background-header-nav-wrapper .background-header-nav-login-btn {
    font-size: 0.875rem !important;
    line-height: 1.2;
}

.background-header-nav-login-btn:hover {
    color: #F8FAFC;
    opacity: 0.85;
}

.background-header-nav-cta-btn {
    background: #0078D4;
    color: #F8FAFC;
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.background-header-nav-cta-btn:hover {
    background: #0A8AE8;
    transform: translateY(-1px);
}

.background-header-nav-wrapper .background-header-nav-cta-btn {
    font-size: 0.875rem !important;
    line-height: 1.2;
}

/* ── GUEST / USER VISIBILITY ── */
.background-header-nav-guest-menu,
.background-header-nav-user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.background-header-nav-hidden {
    display: none !important;
}

/* ── USER DROPDOWN TRIGGER ── */
.background-header-nav-user-menu {
    position: relative;
}

.background-header-nav-user-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 5px 12px 5px 5px;
    border-radius: 99px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.background-header-nav-user-dropdown-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.background-header-nav-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.background-header-nav-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.background-header-nav-user-dropdown-trigger[aria-expanded="true"] .background-header-nav-chevron {
    transform: rotate(180deg);
}

/* ── DROPDOWN PANEL ── */
.background-header-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: #0c1730;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}

.background-header-nav-dropdown.background-header-nav-dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.background-header-nav-user-menu:hover .background-header-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.background-header-nav-dropdown a,
.background-header-nav-dropdown button {
    display: block;
    width: 100%;
    padding: 9px 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.background-header-nav-dropdown a:hover,
.background-header-nav-dropdown button:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.background-header-nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 5px 6px;
}

.background-header-nav-dropdown-logout {
    color: #f87171 !important;
}

.background-header-nav-dropdown-logout:hover {
    background: rgba(248, 113, 113, 0.08) !important;
    color: #f87171 !important;
}

/* ── MOBILE TOGGLE ── */
.background-header-nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.toggle-btn {
    width: 28px;
    height: 28px;
    object-fit: contain;
    cursor: pointer;
}

/* ── MOBILE DRAWER ── */
.background-header-nav-drawer {
    display: none;
    flex-direction: column;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 4px;
}

.background-header-nav-drawer.background-header-nav-drawer--open {
    display: flex;
    background: #0f1b2e;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.background-header-nav-drawer a {
    display: block;
    padding: 11px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.background-header-nav-drawer a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.background-header-nav-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 10px 0;
}

/* Mobile Guest */
.background-header-nav-drawer-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.background-header-nav-drawer-actions button {
    flex: 1;
}

/* Mobile User */
.background-header-nav-drawer-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 4px;
}

.background-header-nav-drawer-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.background-header-nav-drawer-user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.background-header-nav-drawer-logout-btn {
    width: 100%;
    padding: 11px 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f87171;
    background: none;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.background-header-nav-drawer-logout-btn:hover {
    background: rgba(248, 113, 113, 0.08);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .background-header-nav-menu {
        display: none;
    }

    .background-header-nav-actions {
        display: none;
    }

    .background-header-nav-mobile-toggle {
        display: flex;
    }
}

/* body */

.homepage-body {
    background-color: var(--bg-dark) !important;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */

/* ─── UTILITY ─── */
/* .homepage-hero {
    margin-top: 5rem;
} */

.homepage-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.homepage-section {
    padding: 75px 0;
}

.homepage-section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 12px;
}

.homepage-section-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 0.8;
    margin-bottom: 14px;
}

.homepage-section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

.homepage-text-center {
    text-align: center;
}

/* ─── HERO ─── */
.homepage-hero {
    position: relative;
    padding: 84px 0 94px;
    text-align: center;
    overflow: hidden;
    /* background: linear-gradient(0deg, #000026, #000026); */
}

/* .homepage-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(59, 110, 245, 0.12) 0%, rgba(232, 55, 44, 0.06) 40%, transparent 70%);
    pointer-events: none;
} */

/* .banner-hero-radial {
    position: absolute;
    opacity: 0.15;
    width: 450px;
    height: 280px;
    background: rgba(49, 46, 129, 0.2);
    top: 50px;
    left: 450px;
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(60px);
    border-radius: 9999px;
} */

.homepage-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    background: #99A0AE1A;
    border-radius: 9999px;
    border: 0;
    padding: 7px 16px;
    font-size: 8px;
    font-weight: 600;
    /* color: #D3DBE6; */
    margin-bottom: 24px;
}

.homepage-hero-badge-2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    font-size: 8px;
    font-weight: 600;
    color: #CBD5E1;
}


.homepage-hero-title {
    font-family: var(--font-head);
    font-size: clamp(36px, 4vw, 72px);
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.06;
    margin-bottom: 26px;
}

.homepage-hero-title em {
    font-style: italic;
    font-weight: 300;
}

.homepage-hero-description {
    font-size: 15px;
    color: #AAB6C8;
    max-width: 760px;
    margin: 0 auto 34px;
    line-height: 1.35;
    font-weight: 600;
}

.homepage-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.homepage-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.22s ease;
}

.homepage-btn-primary {
    background: #0071BC;
    color: #fff;
    box-shadow: none;
}

.homepage-btn-primary:hover {
    background: #0B67AB;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: none;
}

.homepage-btn-outline {
    background: #32415C;
    color: var(--text-primary);
    border: 0;
}

.homepage-btn-outline:hover {
    background: #2A364E;
    transform: translateY(-1px);
}

.homepage-hero-trust {
    margin-top: 14px;
    font-size: 12px;
    color: #9AA5B8;
    font-style: italic;
}

/* WHAT QCSS DOES */
.homepage-what-qcss {
    background: transparent;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.homepage-what-qcss-label {
    color: #29AAE3;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.homepage-what-qcss-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.6vw, 31px);
    line-height: 1.15;
    font-weight: 700;
    color: #F3F4F6;
    margin: 0 0 18px;
}

.homepage-what-qcss-subtitle {
    color: #CACFD8;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto 44px;
    max-width: 760px;
}

.homepage-what-qcss-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.homepage-what-qcss-card {
    background: #202D45;
    border: 1px solid #2F4367;
    border-radius: 12px;
    padding: 30px 30px 28px;
    text-align: left;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.homepage-what-qcss-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #1B4A73;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.homepage-what-qcss-card h3 {
    margin: 0;
    color: #E6EAF1;
    font-family: var(--font-head);
    font-size: 14px;
    line-height: 1.3;
}

/* ─── PROBLEM / GAP ─── */
/* .homepage-gap {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 32, 0.6) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
} */

.homepage-gap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.homepage-gap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.homepage-gap-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-3px);
}

.homepage-gap-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
    background: rgba(49, 46, 129, 0.3);
    border-radius: 4px;
}

.homepage-gap-card h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.homepage-gap-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 17px;
}

/* ─── HOW IT WORKS ─── */
.homepage-how-visual {
    background: #202D45;
    border: 1px solid #2F4367;
    border-radius: 12px;
    padding: 68px 54px;
    overflow: hidden;
    text-align: center;
    margin: 24px auto;
    max-width: 800px;
}

.homepage-how-label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.10em;
    color: #818CF8;
    margin-bottom: 8px;
}

.homepage-how-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.6vw, 31px);
    font-weight: 700;
    line-height: 1.15;
    max-width: 600px;
    margin: 0 auto 24px;
    color: #E9EDF4;
}

.homepage-how-desc {
    color: #8E9CB0;
    font-size: 14px;
    line-height: 1.45;
    max-width: 880px;
    margin: 0 auto;
}

/* WORKFLOW SECTION */
.homepage-workflow {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.homepage-workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.homepage-workflow-left {
    text-align: left;
}

.homepage-workflow-label {
    color: #0EA5E9;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.homepage-workflow-title {
    margin: 0 0 20px;
    color: #F3F4F6;
    font-family: var(--font-head);
    font-size: clamp(28px, 3.6vw, 31px);
    
    font-weight: 700;
    line-height: 1.15;
}

.homepage-workflow-subtitle {
    margin: 0;
    color: #D1D8E3;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.homepage-workflow-subtitle span {
    color:#80CCFF; 
}

.homepage-workflow-right {
    display: grid;
    gap: 12px;
}

.homepage-workflow-step {
    margin: 0;
    background: #202D45;
    border: 1px solid #2F4367;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.homepage-workflow-step-num {
    position: relative;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 6px;
    background: #1B4A73;
    color: #80CCFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
}

.homepage-workflow-step-num::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid #80CCFF;
    border-radius: 2px;
}

.homepage-workflow-step p {
    margin: 0;
    color: #E9EDF4;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* THIRD-PARTY DIFFERENTIATOR */
.homepage-third-party {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.homepage-third-party-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.homepage-third-party-label {
    color: #0EA5E9;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.homepage-third-party-title {
    margin: 0 0 18px;
    color: #F3F4F6;
    font-family: var(--font-head);
    font-size: clamp(28px, 3.6vw, 31px);
    font-weight: 700;
    line-height: 1.15;
}

.homepage-third-party-desc {
    margin: 0 0 20px;
    color: #C7CFDC;
    font-size: 14px;
    line-height: 1.5;
}

.homepage-third-party-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.homepage-third-party-points li {
    color: #E6EAF1;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.homepage-third-party-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 999px;
    background: #2DA8F6;
    color: #00192E;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.homepage-third-party-visual {
    background: #99A0AE1A;
    border-radius: 16px;
    padding: 18px;
}

.homepage-third-party-node {
    background: #0071BC29;
    border-radius: 12px;
    padding: 16px 18px;
}

.homepage-third-party-node-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.homepage-third-party-node-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 4px;
    background: #1A5F8F;
    color: #F3F7FD;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.homepage-third-party-node-head strong {
    color: #B7D5F0;
    font-size: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.homepage-third-party-pill {
    margin-left: auto;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 11px;
    font-family: var(--font-head);
    font-weight: 700;
}

.homepage-third-party-pill-safe {
    background: #99A0AE1A;
    color: #1FC16B;
}

.homepage-third-party-pill-risk {
    background: #FB374829;
    color: #FB3748;
}

.homepage-third-party-arrow {
    text-align: center;
    color: #ECF5FF;
    font-size: 34px;
    line-height: 1;
    margin: 8px 0;
}

.homepage-third-party-node-bottom p {
    margin: 10px 0 0;
    color: #D3E6F8;
    font-size: 12px;
    font-style: italic;
}

.homepage-third-party-line {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin: 18px 0 14px;
}

.homepage-third-party-footer {
    color: #DAEEFF;
    font-size: 12px;
    line-height: 1.4;
}



/* ─── PRODUCT FABRIC ─── */
/* .homepage-fabric {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 32, 0.4) 50%, transparent 100%);
} */



.homepage-fabric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.homepage-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.22s ease;
    cursor: default;
    text-align: left;
}



.homepage-product-card:hover {
    border-color: rgba(59, 110, 245, 0.35);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.homepage-product-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
}

.homepage-product-card h3 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.homepage-product-card p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.homepage-product-link {
    font-size: 12px;
    font-weight: 600;
    color: #818CF8;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.homepage-product-link:hover {
    text-decoration: underline;
}

/* ─── STEPS ─── */
.homepage-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.homepage-step {
    text-align: center;
    position: relative;
}

/* .homepage-step-line {
    position: absolute;
    top: 24px;
    right: -470px;
    width: 400px;
    height: 2px;
    display: block;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #312E81 50%, rgba(0, 0, 0, 0) 100%);

} */

.homepage-step-num {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background: #0071BC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: #F9FAFB;
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px var(--glow-red);
}

.homepage-step h3 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.homepage-step p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── PRICING TIERS / AFFORDABLE ─── */
/* .homepage-afford {
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 32, 0.5) 100%);
} */

.homepage-afford-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.homepage-afford-card {
    background: #1D2739;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
}

.homepage-afford-card h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.homepage-afford-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ─── CTA BANNER ─── */
.homepage-cta-banner {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.homepage-cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: linear-gradient(90deg, #DC2626, #FFC700, rgba(255, 0, 0, 0.75));
}

.homepage-cta-banner h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}

.homepage-cta-banner p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 auto 32px;
    position: relative;
}

.homepage-cta-banner .homepage-cta-group {
    position: relative;
}

/* ─── READY SECTION ─── */
.homepage-ready {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.homepage-ready-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.homepage-ready-left {
    text-align: left;
}

.homepage-ready-label {
    color: #0EA5E9;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.homepage-ready-title {
    margin: 0 0 16px;
    color: #F3F4F6;
    font-family: var(--font-head);
    font-size: clamp(28px, 3.6vw, 31px);
    font-weight: 700;
    line-height: 1.15;
}

.homepage-ready-desc {
    margin: 0;
    color: #C7CFDC;
    font-size: 14px;
    line-height: 1.45;
    /* font-weight: 600; */
    max-width: 690px;
}

.homepage-ready-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.homepage-ready-actions .homepage-btn {
    border-radius: 999px;
    min-height: 52px;
    padding: 0 24px;
    font-size: 14px;
}

.homepage-ready-actions .homepage-btn-outline {
    border: 1px solid #6B7A93;
    background: transparent;
}

.homepage-ready-right {
    display: grid;
    gap: 12px;
}

.homepage-ready-step {
    background: #202D45;
    border: 1px solid #2F4367;
    border-radius: 12px;
    padding: 14px 35px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.homepage-ready-step-num {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 6px;
    background: #1B4A73;
    color: #80CCFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
}

.homepage-ready-step small {
    display: block;
    color: #AEB9CA;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.homepage-ready-step p {
    margin: 0;
    color: #E9EDF4;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.28;
}



/* vigilance-container */
/* .vigilance-section {
    padding: 100px 20px;
    background:
        linear-gradient(180deg,
            #03142b 0%,
            #020c1c 100%);
} */
.vigilance-section {
  padding: 100px 0;
  overflow: hidden;
}

.vigilance-container {
  width: 100%;
}

.vigilance-scroll-wrapper {
  display: flex;
  gap: 24px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 0 80px 20px;

  scroll-behavior: smooth;

  /* Hide scrollbar by default */
  scrollbar-width: none; /* Firefox */

  transition: scrollbar-color 0.2s ease;
}

/* Hide scrollbar - Chrome, Safari */
.vigilance-scroll-wrapper::-webkit-scrollbar {
  height: 0px;
  transition: height 0.2s ease;
}

/* Show scrollbar on hover or active scrolling */
.vigilance-scroll-wrapper:hover {
  scrollbar-width: thin;
  scrollbar-color: #1b4f9c transparent;
}

.vigilance-scroll-wrapper:hover::-webkit-scrollbar {
  height: 8px;
}

.vigilance-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #1b4f9c;
  border-radius: 999px;
}

.vigilance-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.vigilance-card {
  flex: 0 0 360px;

  min-height: 480px;

  background:
    radial-gradient(circle at top center, rgba(34, 75, 180, 0.15), transparent 60%),
    #031a3b;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 22px;

  padding: 38px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: transform 0.3s ease;
}

.vigilance-card:hover {
  transform: translateY(-6px);
}

.vigilance-image-wrapper {
  width: 210px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  overflow: hidden;
}

.vigilance-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.vigilance-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 62px;
  height: 42px;

  padding: 0 16px;

  border-radius: 12px;

  background: rgba(0,0,0,0.25);

  border: 1px solid rgba(255,255,255,0.08);

  color: #fff;

  font-size: 16px;
  font-weight: 700;

  margin-bottom: 28px;
}

.vigilance-title {
  color: #fff;

  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;

  margin-bottom: 22px;
}

.vigilance-description {
  color: rgba(255,255,255,0.6);

  font-size: 17px;
  line-height: 1.7;

  font-style: italic;

  max-width: 280px;
}

.vigilance-download-btn {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 28px;

  border-radius: 10px;

  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(0,0,0,0.45);

  color: #fff;
  text-decoration: none;

  font-size: 15px;
  /* font-weight: 600; */

  transition: all 0.25s ease;
}

.vigilance-download-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 768px) {

  .vigilance-section {
    padding: 70px 0;
  }

  .vigilance-scroll-wrapper {
    padding: 0 20px 20px;
  }

  .vigilance-card {
    flex: 0 0 300px;
    min-height: 440px;
    padding: 30px 24px;
  }

  .vigilance-title {
    font-size: 22px;
  }

  .vigilance-description {
    font-size: 15px;
  }
}


/* ─── COMPLIANCE ─── */
.homepage-compliance {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 72px;
    padding-bottom: 72px;
}

.home-compliance-container{
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    background: #1D2739;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage-compliance-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;

}

.homepage-compliance-badge {
    background: #344054;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 28px;
    max-width: 90px;
}

.homepage-compliance-badge h5 {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-primary);
}

.homepage-compliance-badge p {

    font-family: var(--font-head);
    font-size: 8px;
    font-weight: 700;
    color: var(--text-secondary);
}

/* ─── RESPONSIVE ─── */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .homepage-section {
        padding: 72px 0;
    }

    .homepage-fabric-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .homepage-how-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .homepage-how-visual {
        order: -1;
        padding: 48px 30px;
    }

    .homepage-ready-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .homepage-ready-left {
        text-align: center;
    }

    .homepage-ready-actions {
        justify-content: center;
    }

    .homepage-how-title {
        font-size: 38px;
    }

    .homepage-how-desc {
        font-size: 15px;
    }

    .homepage-workflow-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .homepage-third-party-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .homepage-workflow-left {
        text-align: center;
    }

    .homepage-workflow-title {
        font-size: 24px;
    }

    .homepage-workflow-subtitle {
        font-size: 13px;
    }

    .homepage-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .homepage-step::after {
        display: none;
    }

    .homepage-gap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage-gap-grid .homepage-gap-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .homepage-afford-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage-afford-grid .homepage-afford-card:last-child {
        grid-column: span 2;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    /* .homepage-step-line {
        display: none;
    } */
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .homepage-section {
        padding: 56px 0;
    }

    .homepage-container {
        padding: 0 18px;
    }

    .homepage-hero {
        padding: 72px 0 54px;
    }

    .homepage-hero-title {
        font-size: clamp(30px, 8vw, 48px);
        line-height: 1.08;
    }

    .homepage-hero-description {
        font-size: 15px;
        max-width: 90%;
    }

    .homepage-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .homepage-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 14px;
        padding: 10px 25px;
    }

    .homepage-hero-trust {
        font-size: 12px;
    }

    .homepage-gap-grid {
        grid-template-columns: 1fr;
    }

    .homepage-what-qcss-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .homepage-what-qcss-card {
        min-height: auto;
        padding: 22px;
    }

    .homepage-what-qcss-title {
        font-size: 24px;
    }

    .homepage-what-qcss-subtitle {
        font-size: 13px;
    }

    .homepage-gap-grid .homepage-gap-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .homepage-how-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .homepage-how-visual {
        padding: 38px 22px;
    }

    .homepage-how-title {
        font-size: 28px;
    }

    .homepage-how-desc {
        font-size: 14px;
    }

    .homepage-ready-title {
        font-size: 24px;
    }

    .homepage-ready-desc {
        font-size: 13px;
    }

    .homepage-ready-actions {
        flex-direction: column;
    }

    .homepage-ready-actions .homepage-btn {
        width: 100%;
        max-width: 290px;
    }

    .homepage-ready-step {
        padding: 12px 14px;
        gap: 12px;
    }

    .homepage-ready-step-num {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 15px;
    }

    .homepage-ready-step p {
        font-size: 15px;
    }

    .homepage-workflow-title {
        font-size: 21px;
        font-family: Inter;

    }

    .homepage-workflow-subtitle {
        font-size: 13px;
    }

    .homepage-workflow-step {
        padding: 12px 14px;
        gap: 12px;
    }

    .homepage-workflow-step-num {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 15px;
    }

    .homepage-workflow-step-num::before {
        width: 16px;
        height: 16px;
    }

    .homepage-workflow-step p {
        font-size: 15px;
    }

    .homepage-third-party-title {
        font-size: 24px;
    }

    .homepage-third-party-desc {
        font-size: 13px;
    }

    .homepage-third-party-points li {
        font-size: 15px;
    }

    .homepage-fabric-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .homepage-steps-grid {
        grid-template-columns: 1fr;
    }

    .homepage-afford-grid {
        grid-template-columns: 1fr;
    }

    .homepage-afford-grid .homepage-afford-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .homepage-cta-banner {
        padding: 40px 24px;
    }

    .homepage-section-title {
        font-size: clamp(24px, 6vw, 32px);
    }
}

/* PLATFORM IN ACTION */
.homepage-platform-action {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.homepage-platform-title {
    margin: 0 0 14px;
    color: #F3F4F6;
    font-family: var(--font-head);
    font-size: clamp(34px, 4.4vw, 36px);
    font-weight: 700;
    line-height: 1.15;
}

.homepage-platform-subtitle {
    margin: 0 auto 34px;
    max-width: 860px;
    color: #C7CFDC;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.homepage-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.homepage-platform-card {
    background: #202D45;
    border: 1px solid #2F4367;
    border-radius: 26px;
    padding: 26px 24px 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    height: 100%;
}

.homepage-platform-kicker {
    color: #8995A8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.homepage-platform-card h3 {
    margin: 0 0 10px;
    color: #E9EDF4;
    font-family: var(--font-head);
    font-size: clamp(28px, 3.6vw, 31px);
    font-weight: 700;
    line-height: 1.12;
}

.homepage-platform-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.homepage-platform-title-row h3 {
    margin-bottom: 10px;
}

.homepage-platform-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #F9FAFB;
    cursor: pointer;
}

.homepage-platform-info-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 999px;
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.homepage-platform-info-btn:hover,
.homepage-platform-info-btn:focus-visible {
    color: #80CCFF;
}

.homepage-platform-quote {
    margin: 0 0 16px;
    color: #9EA9BB;
    font-size: 16px;
    line-height: 1.35;
    font-style: italic;
}

.homepage-platform-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.homepage-platform-card li {
    color: #D6DDE9;
    font-size: 16px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.homepage-platform-card li::before {
    content: "";
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 999px;
    background: #2DA8F6;
    box-shadow: inset 0 0 0 4px #202D45;
}

.homepage-platform-actions {
    margin-top: auto;
    padding-top: 14px;
}

.homepage-platform-actions.two-actions {
    display: flex;
    gap: 10px;
}

.homepage-platform-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 0 18px;
}

.homepage-platform-btn.primary {
    background: #0E78C8;
    color: #fff;
}

.homepage-platform-btn.muted {
    background: #3B4B66;
    color: #E9EDF4;
}

.homepage-platform-card-highlight {
    box-shadow: 0 0 0 1px rgba(14, 120, 200, 0.35), 0 20px 40px rgba(8, 42, 89, 0.25);
}

.homepage-platform-card-deepdive {
    position: relative;
    overflow: visible;
}

.homepage-platform-card-deepdive .homepage-platform-kicker {
    letter-spacing: 0.28em;
}

.homepage-platform-card-deepdive .homepage-platform-quote::before {
    content: open-quote;
}

.homepage-platform-card-deepdive .homepage-platform-quote::after {
    content: close-quote;
}

.homepage-platform-tooltip {
    position: absolute;
    top: 64px;
    right: 21px;
    z-index: 8;
    width: calc(100% - 36px);
    padding: 18px 20px 20px;
    background: #fff;
    color: #111827;
    border-radius: 18px;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.homepage-platform-tooltip::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 70px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 3px;
    transform: translateY(-50%) rotate(45deg);
}

.homepage-platform-tooltip strong,
.homepage-platform-tooltip span {
    display: block;
    padding-right: 28px;
}

.homepage-platform-tooltip strong {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.homepage-platform-tooltip span {
    font-size: 13px;
    line-height: 1.45;
}

.homepage-platform-tooltip-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: 0;
    background: transparent;
    color: #4B5563;
    font-size: 26px;
    font-weight: 300;
    line-height: 0.65;
    cursor: pointer;
}

.homepage-platform-card-deepdive:has(.deepdive-tooltip-trigger:hover) .homepage-platform-tooltip,
.homepage-platform-card-deepdive:has(.deepdive-tooltip-trigger:focus-visible) .homepage-platform-tooltip,
.homepage-platform-card-deepdive.is-tooltip-open .homepage-platform-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .homepage-platform-card-deepdive .homepage-platform-tooltip {
        left: 18px;
        right: auto;
    }

    .homepage-platform-card-deepdive .homepage-platform-tooltip::before {
        left: min(270px, calc(100% - 76px));
        right: auto;
    }
}

@media (max-width: 1024px) {
    .homepage-platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .homepage-platform-title {
        font-size: 36px;
    }

    .homepage-platform-card {
        min-height: 460px;
    }
}

@media (max-width: 767px) {
    .homepage-platform-grid {
        grid-template-columns: 1fr;
    }

    .homepage-platform-title {
        font-size: 30px;
    }

    .homepage-platform-subtitle {
        font-size: 13px;
    }

    .homepage-platform-card {
        border-radius: 18px;
        min-height: auto;
        padding: 18px;
    }

    .homepage-platform-kicker {
        font-size: 11px;
    }

    .homepage-platform-card h3 {
        font-size: 30px;
    }

    .homepage-platform-quote {
        font-size: 14px;
    }

    .homepage-platform-card li {
        font-size: 15px;
    }

    .homepage-platform-btn {
        font-size: 16px;
        min-height: 48px;
    }

    .homepage-platform-tooltip {
        top: 60px;
        left: 18px;
        right: auto;
        width: calc(100% - 36px);
        padding: 18px 20px 20px;
        border-radius: 18px;
    }

    .homepage-platform-tooltip::before {
        left: auto;
        right: 42px;
    }

    .homepage-platform-tooltip strong {
        font-size: 13px;
    }

    .homepage-platform-tooltip span {
        font-size: 13px;
    }

    .homepage-platform-tooltip-close {
        top: 16px;
        right: 18px;
        font-size: 26px;
    }
}

/* Small mobile (< 480px) */
@media (max-width: 480px) {
    .homepage-fabric-grid {
        grid-template-columns: 1fr;
    }

    .homepage-what-qcss-title {
        font-size: 21px;
    }

    .homepage-what-qcss-card h3 {
        font-size: 15px;
    }
}

/* ─── ANIMATIONS ─── */
@keyframes homepage-fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homepage-hero-badge {
    animation: homepage-fadeUp 0.5s ease both;
}

.homepage-hero-title {
    animation: homepage-fadeUp 0.5s 0.1s ease both;
}

.homepage-hero-description {
    animation: homepage-fadeUp 0.5s 0.2s ease both;
}

.homepage-cta-group {
    animation: homepage-fadeUp 0.5s 0.3s ease both;
}

/* VENDOR ONBOARDING */
.vendor-onboarding-section {
    /* background: radial-gradient(circle at 20% 20%, #0b1a3a 0%, #050b1f 40%, #020617 100%); */
    /* padding: 80px 20px; */
    color: #cbd5f5;
    font-family: Arial, sans-serif;
}

.vendor-onboarding-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

.vendor-onboarding-container {
  max-width: 1120px;
  margin: 0 auto;
}

.vendor-onboarding-header {
  text-align: center;
  margin-bottom: 60px;
}

.vendor-onboarding-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.vendor-onboarding-subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: #9ea7c3;
  font-size: 17px;
  line-height: 1.7;
}

.vendor-onboarding-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.vendor-onboarding-card {
background: linear-gradient(180deg, #111325 0%, #0A0C16 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 42px;
  min-height: 520px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 40px rgba(0,0,0,0.45);
}

.vendor-onboarding-card-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.vendor-onboarding-card-text {
  color: #98a3bf;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.vendor-onboarding-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vendor-onboarding-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 22px;

  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.vendor-onboarding-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: #00f0a8;
  font-size: 20px;
  font-weight: bold;
}

.vendor-onboarding-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}


.vendor-onboarding-bottom-card {
  position: relative;
  overflow: hidden;

 background: linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
linear-gradient(180deg, rgba(17, 19, 37, 0.05) 0%, rgba(10, 12, 22, 0.05) 100%);

  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
}

.vendor-onboarding-bottom-card::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(
    90deg,
    #29AAE3 0%,
    #F8931F 50%,
    #0071BC 100%
  );

  z-index: 2;
}

.vendor-onboarding-icon-box {
  width: 58px;
  height: 58px;

  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: #0d1023;

  color: #fff;
  font-size: 24px;

  box-shadow:
    0 0 22px rgba(112, 76, 255, 0.55),
    inset 0 0 10px rgba(112, 76, 255, 0.3);
}

.vendor-onboarding-bottom-card p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: rgba(255,255,255,0.75);

  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 991px) {


  .vendor-onboarding-card {
    min-height: auto;
  }

  .vendor-onboarding-title {
    font-size: 38px;
  }

  .vendor-onboarding-card-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {

  .vendor-onboarding-section {
    padding: 70px 16px;
  }

  .vendor-onboarding-grid,
  .vendor-onboarding-bottom-grid {
    grid-template-columns: 1fr;
  }

  .vendor-onboarding-title {
    font-size: 32px;
  }

  .vendor-onboarding-subtitle,
  .vendor-onboarding-card-text,
  .vendor-onboarding-list li,
  .vendor-onboarding-bottom-card p {
    font-size: 16px;
  }

  .vendor-onboarding-card {
    padding: 30px 24px;
  }
}

/* FINAL CTA (AFTER COMPLIANCE) */
.homepage-final-cta {
    padding: 92px 0 104px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.homepage-final-cta-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.homepage-final-cta-label {
    color: #1ba9ea;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.homepage-final-cta-title {
    margin: 0;
    color: #f8fafc;
    font-size: clamp(28px, 3.6vw, 31px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.homepage-final-cta-desc {
    max-width: 550px;
    margin: 16px auto 0;
    color: #d3d8e2;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.homepage-final-cta-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.homepage-final-cta-actions .homepage-btn {
    min-width: 176px;
    min-height: 56px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
}

.homepage-final-cta-sales {
    background: #3b4a66;
    color: #ffffff;
    border: 1px solid #3b4a66;
}

.homepage-final-cta-sales:hover {
    background: #455577;
    border-color: #455577;
    color: #ffffff;
}

@media (max-width: 991px) {
    .homepage-final-cta {
        padding: 76px 0 88px;
    }

    .homepage-final-cta-title {
        font-size: clamp(30px, 5vw, 48px);
    }

    .homepage-final-cta-desc {
        font-size: 15px;
        max-width: 680px;
    }
}

@media (max-width: 767px) {
    .homepage-final-cta {
        padding: 62px 0 74px;
    }

    .homepage-final-cta-title {
        font-size: clamp(28px, 8.5vw, 38px);
        line-height: 1.14;
    }

    .homepage-final-cta-desc {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.5;
    }

    .homepage-final-cta-actions {
        margin-top: 24px;
        gap: 10px;
        flex-direction: column;
    }

    .homepage-final-cta-actions .homepage-btn {
        width: 100%;
        max-width: 330px;
        min-width: 0;
        min-height: 52px;
        font-size: 16px;
    }
}
