:root {
    --primary: #DC143C;
    --primary-dark: #A9092B;
    --primary-soft: #FFF0F2;
    --orange-primary: #FF5722;
    --orange-dark: #E64A19;
    --orange-soft: #FFF2EE;
    --secondary: #FFA500;
    --secondary-dark: #DF8700;
    --dark: #111827;
    --dark-soft: #1F2937;
    --heading: #111827;
    --text: #1F2937;
    --border: #FEE2E2;
    --surface: #FFFFFF;
    --light: #FFF8F6;
    --success: #10B981;
    --shadow-sm: 0 10px 30px rgba(220, 20, 60, 0.06);
    --shadow-lg: 0 25px 60px rgba(220, 20, 60, 0.12);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--surface);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 70px 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    width: 26px;
    height: 2px;
    content: "";
    background: var(--secondary);
    border-radius: 20px;
}

.section-eyebrow.light {
    color: #ffffff;
}

.section-title {
    margin-bottom: 22px;
    color: var(--heading);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2.1px;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    max-width: 680px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

.section-heading {
    margin-bottom: 55px;
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
}

.primary-button {
    color: #ffffff;
    border: 1px solid var(--primary);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.22);
}

.primary-button:hover {
    color: #ffffff;
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(220, 20, 60, 0.3);
}

.secondary-button {
    color: var(--heading);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.92);
}

.secondary-button:hover {
    color: var(--primary);
    background: #ffffff;
    transform: translateY(-3px);
}

/* Header */

.site-header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
}

.topbar {
    color: rgba(255, 255, 255, 0.78);
    background: var(--dark);
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-contact,
.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-contact a:hover,
.topbar-social a:hover {
    color: var(--secondary);
}

.topbar-contact i {
    margin-right: 5px;
    color: var(--secondary);
}

.topbar-divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.18);
}

.topbar-social span {
    color: rgba(255, 255, 255, 0.55);
}

.topbar-social a {
    color: #ffffff;
}

.funding-navbar {
    min-height: 86px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(25, 22, 29, 0.07);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    transition: 0.3s ease;
}

.site-header.is-sticky .funding-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: 74px;
    box-shadow: 0 10px 35px rgba(28, 18, 24, 0.08);
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.funding-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 13px;
    background: linear-gradient(
        145deg,
        var(--secondary),
        var(--primary)
    );
    box-shadow: 0 9px 20px rgba(220, 20, 60, 0.2);
}

.logo-symbol i {
    font-size: 22px;
}

.logo-text {
    color: var(--heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text > span:first-child {
    color: var(--primary);
}

.logo-text > span:nth-child(2) {
    color: var(--heading);
}

.logo-text strong {
    color: var(--secondary-dark);
    font-weight: 800;
}

.funding-navbar .nav-link {
    position: relative;
    margin: 0 7px;
    padding: 12px 4px !important;
    color: #413a44;
    font-size: 14px;
    font-weight: 700;
}

.funding-navbar .nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 5px;
    left: 50%;
    height: 2px;
    content: "";
    background: var(--primary);
    transition: 0.3s ease;
}

.funding-navbar .nav-link:hover,
.funding-navbar .nav-link.active {
    color: var(--primary);
}

.funding-navbar .nav-link:hover::after,
.funding-navbar .nav-link.active::after {
    right: 4px;
    left: 4px;
}

.header-button {
    color: #ffffff;
    border: 1px solid var(--primary);
    background: var(--primary);
}

.header-button:hover {
    color: #ffffff;
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.custom-toggler {
    width: 46px;
    height: 42px;
    padding: 8px;
    border: 0;
    box-shadow: none !important;
}

.custom-toggler span {
    width: 26px;
    height: 2px;
    display: block;
    margin: 5px auto;
    background: var(--heading);
    border-radius: 20px;
}

/* Hero */

.hero-section {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 20px 0;
    background:
        linear-gradient(
            115deg,
            #fff9f8 0%,
            #ffffff 44%,
            #fff5ef 100%
        );
}

.hero-section::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    content: "";
    opacity: 0.7;
    background:
        linear-gradient(
            145deg,
            rgba(220, 20, 60, 0.08),
            rgba(255, 165, 0, 0.1)
        );
    clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
}

.hero-shape-one {
    top: 30px;
    right: 8%;
    width: 310px;
    height: 310px;
    opacity: 0.14;
    background: var(--secondary);
}

.hero-shape-two {
    right: 35%;
    bottom: -180px;
    width: 420px;
    height: 420px;
    opacity: 0.08;
    background: var(--primary);
}

.hero-dots {
    position: absolute;
    top: 82px;
    left: 3%;
    width: 130px;
    height: 130px;
    opacity: 0.26;
    background-image: radial-gradient(
        var(--primary) 1.3px,
        transparent 1.3px
    );
    background-size: 14px 14px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding: 8px 14px 8px 8px;
    color: var(--primary-dark);
    border: 1px solid rgba(220, 20, 60, 0.13);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(35, 21, 28, 0.05);
}

.badge-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary);
}

.hero-content h1,
.hero-main-title {
    max-width: 770px;
    margin-bottom: 16px;
    color: var(--heading);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-content h1 span,
.hero-main-title span {
    display: block;
    color: var(--primary);
}

.hero-description {
    max-width: 650px;
    margin-bottom: 20px;
    color: #615a64;
    font-size: 16px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 36px;
}

.hero-avatar-group {
    display: flex;
}

.hero-avatar-group span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -9px;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: var(--dark-soft);
    font-size: 10px;
    font-weight: 800;
}

.hero-avatar-group span:first-child {
    margin-left: 0;
    background: var(--primary);
}

.hero-avatar-group span:nth-child(2) {
    background: var(--secondary-dark);
}

.hero-stars {
    color: var(--secondary);
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-trust p {
    margin: 3px 0 0;
    color: #6b646d;
    font-size: 13px;
    font-weight: 600;
}

.hero-dashboard-card {
    position: relative;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(15px);
}

.dashboard-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.dashboard-card-header span {
    color: #8b838d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.dashboard-card-header h3 {
    margin: 3px 0 0;
    color: var(--heading);
    font-size: 19px;
    font-weight: 800;
}

.dashboard-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    color: var(--success) !important;
    border-radius: 30px;
    background: rgba(20, 134, 94, 0.09);
}

.dashboard-live span {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 134, 94, 0.35);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(20, 134, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(20, 134, 94, 0);
    }
}

.funding-score {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px;
    border-radius: 19px;
    background: #fff8f5;
}

.score-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-circle circle {
    fill: none;
    stroke-width: 10;
}

.score-background {
    stroke: #f1e3df;
}

.score-progress {
    stroke: var(--primary);
    stroke-linecap: round;
    stroke-dasharray: 364;
    stroke-dashoffset: 76;
}

.score-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-content strong {
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    font-weight: 800;
}

.score-content span {
    color: #847b84;
    font-size: 11px;
    font-weight: 600;
}

.score-details {
    display: grid;
    gap: 11px;
}

.score-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee4e1;
}

.score-detail-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.score-detail-item span {
    color: #716971;
    font-size: 12px;
}

.score-detail-item strong {
    color: var(--success);
    font-size: 11px;
}

.dashboard-chart {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.chart-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.chart-heading span {
    color: #918891;
    font-size: 11px;
}

.chart-heading strong {
    display: block;
    margin-top: 3px;
    color: var(--success);
    font-size: 16px;
}

.chart-bars {
    height: 95px;
    display: flex;
    align-items: flex-end;
    gap: 11px;
    margin-top: 16px;
}

.chart-bars span {
    flex: 1;
    min-width: 12px;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(
        180deg,
        var(--secondary),
        var(--primary)
    );
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #a199a2;
    font-size: 9px;
}

.dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
}

.dashboard-footer > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #777078;
    font-size: 11px;
}

.dashboard-footer i {
    color: var(--success);
}

.dashboard-footer a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.floating-model-card {
    position: absolute;
    right: -58px;
    bottom: 78px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 11px;
    background: var(--primary);
}

.floating-model-card strong {
    display: block;
    color: var(--heading);
    font-size: 16px;
}

.floating-model-card div span {
    color: #8d858e;
    font-size: 10px;
}

.hero-scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #837b84;
    font-size: 11px;
    font-weight: 700;
    transform: translateX(-50%);
}

.hero-scroll i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid rgba(220, 20, 60, 0.25);
    border-radius: 50%;
}

/* Statistics */

.statistics-section {
    position: relative;
    z-index: 5;
    margin-top: -48px;
}

.statistics-wrapper {
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, 0.08);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.statistic-card {
    min-height: 180px;
    padding: 32px 25px;
    border-right: 1px solid var(--border);
}

.statistics-wrapper .col-lg-3:last-child .statistic-card {
    border-right: 0;
}

.statistic-card strong {
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: 36px;
    font-weight: 800;
}

.statistic-card h3 {
    margin: 8px 0 6px;
    color: var(--heading);
    font-size: 16px;
    font-weight: 800;
}

.statistic-card p {
    margin: 0;
    color: #8a828b;
    font-size: 13px;
}

/* About */

.about-section {
    overflow: hidden;
    background: #ffffff;
}

.about-visual {
    position: relative;
    min-height: 530px;
    padding: 35px;
}

.about-visual::before {
    position: absolute;
    inset: 0 70px 40px 0;
    content: "";
    border-radius: 50px 16px 50px 16px;
    background:
        linear-gradient(
            145deg,
            rgba(220, 20, 60, 0.09),
            rgba(255, 165, 0, 0.13)
        );
}

.about-main-card {
    position: relative;
    z-index: 2;
    min-height: 430px;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
}

.about-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.about-card-top .section-eyebrow {
    margin-bottom: 0;
    font-size: 10px;
}

.growth-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: var(--success);
    border-radius: 30px;
    background: rgba(20, 134, 94, 0.08);
    font-size: 10px;
    font-weight: 700;
}

.about-main-card h3 {
    max-width: 430px;
    margin: 28px 0;
    color: var(--heading);
    font-size: 29px;
    font-weight: 800;
    line-height: 1.28;
}

.business-model-visual {
    position: relative;
    min-height: 225px;
}

.model-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 125px;
    height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 8px solid #fff1f3;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        var(--primary),
        var(--primary-dark)
    );
    box-shadow: 0 20px 45px rgba(220, 20, 60, 0.2);
    transform: translate(-50%, -50%);
}

.model-center span {
    font-size: 25px;
}

.model-center strong {
    margin-top: 5px;
    font-size: 12px;
}

.model-point {
    position: absolute;
    min-width: 88px;
    padding: 9px 13px;
    color: var(--heading);
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.point-one {
    top: 10px;
    left: 16%;
}

.point-two {
    top: 20px;
    right: 12%;
}

.point-three {
    right: 13%;
    bottom: 8px;
}

.point-four {
    bottom: 4px;
    left: 15%;
}

.about-success-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 18px;
    background: var(--dark);
    box-shadow: var(--shadow-lg);
}

.about-success-card > span {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border-radius: 12px;
    background: var(--secondary);
}

.about-success-card strong {
    color: #ffffff;
    font-size: 21px;
}

.about-success-card p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
}

.about-experience-card {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 5px;
    display: flex;
    max-width: 245px;
    align-items: center;
    gap: 9px;
    padding: 13px 16px;
    color: var(--heading);
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    font-size: 11px;
    font-weight: 700;
}

.about-experience-card i {
    color: var(--primary);
    font-size: 20px;
}

.about-benefits {
    display: grid;
    gap: 19px;
    margin: 29px 0 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-item > span {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 10px;
    background: var(--primary);
}

.benefit-item h3 {
    margin: 0 0 4px;
    color: var(--heading);
    font-size: 16px;
    font-weight: 800;
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.text-button span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary);
}

.text-button:hover {
    color: var(--primary);
}

.text-button:hover span {
    transform: translateX(4px);
}

/* Services */

.services-section {
    background: var(--light);
}

.service-card {
    height: 100%;
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
    transition: 0.35s ease;
}

.service-card:hover {
    border-color: rgba(220, 20, 60, 0.25);
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 15px;
    background: var(--primary-soft);
    font-size: 25px;
    transition: 0.35s ease;
}

.service-card:hover .service-icon {
    color: #ffffff;
    background: var(--primary);
    transform: rotate(-5deg) scale(1.05);
}

.service-number {
    color: #ded9de;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 13px;
    color: var(--heading);
    font-size: 21px;
    font-weight: 800;
}

.service-card p {
    min-height: 88px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.72;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.service-card a:hover {
    gap: 11px;
}

/* Funding */

.funding-section {
    background: #ffffff;
}

.funding-panel {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 32px;
    background:
        linear-gradient(
            125deg,
            #161219 0%,
            #2a1720 54%,
            #4c1525 100%
        );
    box-shadow: var(--shadow-lg);
}

.funding-pattern {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.funding-pattern::before,
.funding-pattern::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 165, 0, 0.1);
    border-radius: 50%;
}

.funding-pattern::before {
    inset: 70px;
}

.funding-pattern::after {
    inset: 145px;
}

.funding-content h2 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(36px, 4.5vw, 55px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -2.2px;
}

.funding-content > p {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 16px;
    line-height: 1.8;
}

.funding-checklist {
    display: grid;
    gap: 13px;
    margin: 28px 0 33px;
}

.funding-checklist div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
}

.funding-checklist i {
    color: var(--secondary);
}

.light-button {
    color: var(--heading);
    border: 1px solid #ffffff;
    background: #ffffff;
}

.light-button:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.funding-metrics {
    padding-left: 30px;
}

.metric-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(15px);
}

.metric-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.metric-card-heading span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.metric-card-heading h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.metric-card-heading > i {
    color: var(--secondary);
    font-size: 28px;
}

.readiness-list {
    display: grid;
    gap: 18px;
}

.readiness-item > div:first-child {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.readiness-item span,
.readiness-item strong {
    color: rgba(255, 255, 255, 0.77);
    font-size: 11px;
}

.progress-track {
    height: 7px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        var(--secondary),
        var(--primary)
    );
}

.metric-card-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.metric-small-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.metric-small-card > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--secondary);
    border-radius: 12px;
    background: rgba(255, 165, 0, 0.12);
}

.metric-small-card strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 14px;
}

.metric-small-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.55;
}

/* Process */

.process-section {
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #ffffff;
}

.process-card {
    position: relative;
    min-height: 295px;
    padding: 31px;
    border-right: 1px solid var(--border);
}

.process-card:last-child {
    border-right: 0;
}

.process-number {
    color: #ddd6dc;
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.process-icon {
    position: absolute;
    top: 27px;
    right: 27px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 50%;
    background: var(--primary-soft);
    transition: 0.3s ease;
}

.process-card:hover .process-icon {
    color: #ffffff;
    background: var(--primary);
    transform: rotate(45deg);
}

.process-card h3 {
    margin: 80px 0 13px;
    color: var(--heading);
    font-size: 19px;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.72;
}

/* Term sheet */

.term-sheet-section {
    overflow: hidden;
    background: #ffffff;
}

.term-list {
    display: grid;
    gap: 17px;
    margin: 28px 0 32px;
}

.term-list > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.term-list > div > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border-radius: 12px;
    background: var(--primary-soft);
    font-size: 19px;
}

.term-list h3 {
    margin: 0 0 4px;
    color: var(--heading);
    font-size: 16px;
    font-weight: 800;
}

.term-list p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.term-sheet-card {
    position: relative;
    padding: 30px 0 30px 30px;
}

.term-sheet-card::before {
    position: absolute;
    top: 0;
    right: -120px;
    bottom: 0;
    left: 80px;
    content: "";
    border-radius: 35px 0 0 35px;
    background:
        linear-gradient(
            145deg,
            rgba(220, 20, 60, 0.1),
            rgba(255, 165, 0, 0.13)
        );
}

.document-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
}

.document-window-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: #faf8fa;
}

.document-window-header > div {
    display: flex;
    gap: 6px;
}

.document-window-header > div span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d7d1d6;
}

.document-window-header > div span:first-child {
    background: var(--primary);
}

.document-window-header > div span:nth-child(2) {
    background: var(--secondary);
}

.document-window-header > div span:nth-child(3) {
    background: var(--success);
}

.document-window-header small {
    color: #817981;
    font-size: 10px;
    font-weight: 700;
}

.document-window-header > i {
    justify-self: end;
    color: var(--success);
}

.document-body {
    padding: 27px;
}

.document-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.document-title-row span {
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.document-title-row h3 {
    margin: 5px 0 0;
    color: var(--heading);
    font-size: 20px;
    font-weight: 800;
}

.document-logo {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 12px;
    background: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.document-line {
    height: 7px;
    margin-bottom: 9px;
    border-radius: 20px;
    background: #eee9ed;
}

.document-line.large {
    width: 83%;
}

.document-line.medium {
    width: 60%;
    margin-bottom: 25px;
}

.document-term {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 11px;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.document-term.selected {
    border-color: rgba(220, 20, 60, 0.18);
    background: var(--primary-soft);
}

.document-term span {
    display: block;
    color: var(--heading);
    font-size: 12px;
    font-weight: 800;
}

.document-term small {
    color: #978f98;
    font-size: 9px;
}

.document-term strong {
    color: var(--primary);
    font-size: 9px;
    text-transform: uppercase;
}

.document-footer-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 11px;
    color: #756e76;
    border-radius: 10px;
    background: #faf8fa;
    font-size: 9px;
}

.document-footer-note i {
    color: var(--primary);
}

.review-badge {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: -6px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    border-radius: 14px;
    background: var(--dark);
    box-shadow: var(--shadow-lg);
}

.review-badge i {
    color: var(--secondary);
    font-size: 24px;
}

.review-badge strong {
    display: block;
    color: #ffffff;
    font-size: 12px;
}

.review-badge span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

/* Audience */

.audience-section {
    background: var(--light);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.audience-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #ffffff;
    transition: 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-sm);
}

.audience-card > span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    border-radius: 14px;
    background: var(--primary-soft);
    font-size: 22px;
}

.audience-card h3 {
    margin-bottom: 10px;
    color: var(--heading);
    font-size: 18px;
    font-weight: 800;
}

.audience-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.68;
}

/* Final CTA */

.final-cta-section {
    padding: 0 0 110px;
    background: var(--light);
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    padding: 65px;
    border-radius: 30px;
    background:
        linear-gradient(
            125deg,
            var(--primary-dark),
            var(--primary) 55%,
            #ed5a22
        );
    box-shadow: var(--shadow-lg);
}

.final-cta-card::before {
    position: absolute;
    top: -80px;
    right: -30px;
    width: 330px;
    height: 330px;
    content: "";
    border: 70px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.final-cta-content h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(36px, 4.8vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -2.2px;
}

.final-cta-content p {
    max-width: 710px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    line-height: 1.76;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.final-primary-button {
    color: var(--heading);
    border: 1px solid #ffffff;
    background: #ffffff;
}

.final-primary-button:hover {
    color: var(--primary);
    background: #fff8f8;
    transform: translateY(-3px);
}

.final-secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.final-secondary-button:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.final-cta-icon {
    position: absolute;
    z-index: 1;
    right: 110px;
    bottom: -20px;
    opacity: 0.13;
}

.final-cta-icon span {
    color: #ffffff;
    font-size: 210px;
}

/* Footer */

.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background: var(--dark);
}

.footer-cta {
    padding-top: 70px;
}

.footer-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-cta-card h2 {
    max-width: 750px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.footer-cta-button {
    flex: 0 0 auto;
    color: #ffffff;
    border: 1px solid var(--primary);
    background: var(--primary);
}

.footer-cta-button:hover {
    color: var(--heading);
    border-color: var(--secondary);
    background: var(--secondary);
}

.footer-main {
    padding: 75px 0 55px;
}

.footer-logo .logo-text {
    color: #ffffff;
}

.footer-logo .logo-text > span:nth-child(2) {
    color: #ffffff;
}

.footer-description {
    max-width: 520px;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
}

.footer-social a:hover {
    color: #ffffff;
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.footer-links,
.footer-contact-list {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--secondary);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact-list i {
    margin-top: 2px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
}

.footer-bottom-inner p {
    margin: 0;
}

.footer-bottom-inner > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* Animation */

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(35px);
}

.js-enabled .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #ffffff;
    border: 0;
    border-radius: 13px;
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.25);
    transition: 0.3s ease;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 1199px) {
    .funding-navbar .nav-link {
        margin: 0 4px;
        font-size: 13px;
    }

    .hero-content h1 {
        letter-spacing: -3px;
    }

    .floating-model-card {
        right: -10px;
    }

    .funding-panel {
        padding: 55px 45px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 85px 0;
    }

    .topbar {
        display: none;
    }

    .funding-navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        margin-top: 13px;
        padding: 17px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: #ffffff;
        box-shadow: var(--shadow-sm);
    }

    .funding-navbar .nav-link {
        margin: 0;
        padding: 10px 2px !important;
    }

    .funding-navbar .nav-link::after {
        display: none;
    }

    .hero-section {
        padding-top: 0 !important;
    }

    .hero-section::before {
        width: 100%;
        opacity: 0.32;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-dashboard-card {
        max-width: 620px;
        margin: auto;
    }

    .statistics-section {
        margin-top: -30px;
    }

    .statistic-card {
        border-bottom: 1px solid var(--border);
    }

    .statistics-wrapper .col-6:nth-child(2) .statistic-card {
        border-right: 0;
    }

    .about-visual {
        max-width: 660px;
        margin: auto;
    }

    .funding-metrics {
        padding-left: 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card:nth-child(2) {
        border-right: 0;
    }

    .process-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: -1.4px;
    }

    .hero-section {
        min-height: auto;
        padding: 62px 0 100px;
    }

    .hero-content h1 {
        font-size: 46px;
        letter-spacing: -2.3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        align-items: center;
        flex-direction: column;
    }

    .funding-score {
        grid-template-columns: 1fr;
    }

    .score-circle {
        margin: auto;
    }

    .floating-model-card {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .statistic-card {
        min-height: 160px;
        padding: 24px 17px;
    }

    .statistic-card strong {
        font-size: 29px;
    }

    .about-visual {
        min-height: 500px;
        padding: 14px;
    }

    .about-visual::before {
        inset: 0 25px 40px 0;
    }

    .about-main-card {
        padding: 22px;
    }

    .about-main-card h3 {
        font-size: 23px;
    }

    .model-point {
        min-width: 72px;
        padding: 8px;
        font-size: 9px;
    }

    .about-success-card {
        right: 0;
    }

    .about-experience-card {
        display: none;
    }

    .funding-panel {
        padding: 42px 25px;
        border-radius: 25px;
    }

    .funding-content h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .metric-card-row {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .process-card:last-child {
        border-bottom: 0;
    }

    .process-card h3 {
        margin-top: 45px;
    }

    .term-sheet-card {
        padding-left: 0;
    }

    .review-badge {
        left: -6px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-card {
        padding: 44px 25px;
    }

    .final-cta-icon {
        display: none;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }

    .footer-cta-card {
        padding: 28px;
    }

    .footer-bottom-inner {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .logo-symbol {
        width: 39px;
        height: 39px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .hero-dashboard-card {
        padding: 17px;
    }

    .dashboard-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .statistics-wrapper .col-6 {
        width: 100%;
    }

    .statistic-card {
        border-right: 0;
    }

    .about-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .business-model-visual {
        min-height: 255px;
    }

    .model-center {
        width: 110px;
        height: 110px;
    }

    .document-body {
        padding: 18px;
    }

    .document-term {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ==========================================================================
   Red & Orange Light Theme - Debt Processing & Channel Partner Platform
   ========================================================================== */

:root {
    --red-primary: #DC143C;
    --red-dark: #B91C1C;
    --orange-bright: #FF5722;
    --orange-dark: #E64A19;
    --amber-gold: #FFA500;
    --red-orange-gradient: linear-gradient(135deg, #DC143C 0%, #FF5722 100%);
    --card-border: #FEE2E2;
}

.text-primary-custom { color: #DC143C !important; }
.text-success-custom { color: #FF5722 !important; }
.text-info-custom { color: #E64A19 !important; }
.text-emerald { color: #DC143C !important; }

/* Hero Section Enhancements */
.hero-section {
    padding: 10px 0;
}

.hero-main-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--heading);
    margin-bottom: 16px;
}

.hero-main-title span {
    background: linear-gradient(135deg, #DC143C 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-stage-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0;
    flex-wrap: wrap;
}

.stage-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #1F2937;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.05);
}

.stage-pill.active {
    background: linear-gradient(135deg, #DC143C 0%, #FF5722 100%);
    color: #ffffff;
    border-color: #DC143C;
}

.pill-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF5722;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.stage-pill.active .pill-num {
    background: #ffffff;
    color: #DC143C;
}

.pill-arrow {
    color: #FF5722;
    font-size: 14px;
}

.hero-tagline-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #FFF2EE;
    border: 1px solid #FFD8C9;
    border-radius: 12px;
    font-size: 13px;
    color: #C2410C;
    margin-bottom: 20px;
}

.hero-tagline-bar i {
    font-size: 16px;
    color: #FF5722;
}

/* Laptop Mockup Styles */
.hero-laptop-wrapper {
    position: relative;
    padding: 10px 0;
}

.laptop-frame {
    position: relative;
    background: #7F1D1D;
    border-radius: 18px 18px 0 0;
    padding: 10px 10px 0 10px;
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.2);
    border: 2px solid #991B1B;
}

.laptop-screen {
    background: #FFF8F6;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    min-height: 350px;
    border: 1px solid #FEE2E2;
}

.laptop-base {
    height: 16px;
    background: linear-gradient(180deg, #991B1B 0%, #7F1D1D 100%);
    border-radius: 0 0 22px 22px;
    position: relative;
}

.laptop-base::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 4px;
    background: #B91C1C;
    border-radius: 0 0 6px 6px;
}

/* Mock Dashboard inside laptop */
.mock-dashboard {
    padding: 14px;
    font-size: 12px;
}

.mock-dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #FEE2E2;
    margin-bottom: 12px;
}

.mock-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #111827;
}

.mock-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #DC143C 0%, #FF5722 100%);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.mock-user {
    font-size: 11px;
    color: #9A3412;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #FF5722;
    border-radius: 50%;
    display: inline-block;
}

.mock-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mock-metric-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.mock-metric-card span {
    display: block;
    font-size: 10px;
    color: #6B7280;
}

.mock-metric-card strong {
    font-size: 17px;
    font-weight: 800;
    display: block;
    margin: 2px 0;
    color: #111827;
}

.mock-metric-card .sub {
    font-size: 9px;
    color: #9CA3AF;
}

.mock-charts-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8px;
}

.mock-chart-left, .mock-chart-right {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 8px;
    padding: 8px;
}

.mock-chart-header {
    font-size: 10px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 90px;
    padding-top: 8px;
}

.mock-bar {
    width: 14%;
    height: var(--height);
    background: linear-gradient(180deg, #DC143C 0%, #FF5722 100%);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.mock-bar span {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #6B7280;
}

.mock-pie-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mock-pie-donut {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: conic-gradient(
        #DC143C 0% 42%,
        #FF5722 42% 70%,
        #FFA500 70% 90%,
        #991B1B 90% 100%
    );
    position: relative;
}

.mock-pie-donut::after {
    content: "";
    position: absolute;
    inset: 12px;
    background: #ffffff;
    border-radius: 50%;
}

.mock-pie-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 9px;
    color: #4B5563;
}

.mock-pie-legend li {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.legend-dot.in-process { background: #DC143C; }
.legend-dot.approved { background: #FF5722; }
.legend-dot.disbursed { background: #FFA500; }
.legend-dot.referred { background: #991B1B; }

/* Floating Shield Badge */
.floating-shield-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, #7F1D1D 0%, #DC143C 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 25px rgba(220, 20, 60, 0.3);
    border: 2px solid #FF5722;
    z-index: 10;
}

.shield-icon {
    width: 32px;
    height: 32px;
    background: #FF5722;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.shield-text strong {
    display: block;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #FFA500;
}

.shield-text span {
    font-size: 9px;
    color: #FEE2E2;
}

/* Ecosystem Partners Ticker Bar */
.ecosystem-bar {
    background: #FFF8F6;
    border: 1px solid #FEE2E2;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ecosystem-title {
    font-weight: 700;
    font-size: 12px;
    color: #9A3412;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecosystem-items {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ecosystem-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #ffffff;
    border: 1px solid #FFD8C9;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #1F2937;
}

.ecosystem-chip i {
    color: #DC143C;
}

/* Section Subtitle Badges */
.section-subtitle-badge {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #DC143C 0%, #FF5722 100%);
    color: #ffffff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.section-badge-pill {
    display: inline-block;
    padding: 4px 12px;
    background: #FFF0F2;
    color: #DC143C;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* 5 Column Grid Utility */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}
@media (min-width: 768px) {
    .col-md-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Why Partner Redesign Box */
.why-partner-box {
    background: #ffffff;
    border: 2px solid #DC143C;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.08);
    position: relative;
}

.why-partner-header {
    background: linear-gradient(135deg, #B91C1C 0%, #DC143C 50%, #FF5722 100%);
    padding: 16px 24px;
    text-align: center;
    border-bottom: 3px solid #FFA500;
}

.why-partner-header h2 {
    color: #ffffff;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.why-partner-body {
    padding: 28px 24px;
}

.why-grid-item {
    text-align: center;
    padding: 12px 8px;
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-grid-item:hover {
    background: #FFF8F6;
    transform: translateY(-3px);
}

.why-grid-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    background: #FFF2EE;
    color: #FF5722;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid #FFD8C9;
}

.why-grid-item h3 {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.why-grid-item p {
    font-size: 11px;
    color: #4B5563;
    margin: 0;
    line-height: 1.4;
}

.why-partner-footer-swoosh {
    height: 10px;
    background: linear-gradient(90deg, #DC143C 0%, #FF5722 50%, #FFA500 100%);
}

/* Global Presence Section */
.global-presence-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.04);
}

.global-card-header {
    text-align: center;
    margin-bottom: 22px;
}

.global-card-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 3px solid #FF5722;
    padding-bottom: 4px;
}

.global-pin-card {
    background: #FFF8F6;
    border: 1px solid #FEE2E2;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.global-pin-card:hover {
    background: #ffffff;
    border-color: #FF5722;
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.12);
    transform: translateY(-3px);
}

.pin-icon {
    font-size: 24px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.flag-span {
    font-size: 18px;
}

.pin-city {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.pin-tag {
    font-size: 11px;
    color: #4B5563;
    margin: 0;
    line-height: 1.3;
}

/* Global Investor Ecosystem */
.global-ecosystem-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.04);
}

.ecosystem-tagline-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #FFF2EE;
    border: 1px solid #FFD8C9;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #C2410C;
    margin-top: 12px;
}

.investor-ring-visual {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border: 2px dashed #FFD8C9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-center-globe {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #991B1B 0%, #DC143C 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    border: 3px solid #FF5722;
}

.ring-center-globe span {
    font-size: 8px;
    font-weight: 800;
    color: #FFA500;
    margin-top: 2px;
}

.ring-nodes {
    position: absolute;
    inset: 0;
}

.ring-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    border: 1px solid #FFD8C9;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.08);
    white-space: nowrap;
}

.ring-node i {
    color: #FF5722;
}

.node-1 { top: -14px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 30px; right: -25px; }
.node-3 { top: 105px; right: -35px; }
.node-4 { bottom: 30px; right: -20px; }
.node-5 { bottom: -14px; left: 50%; transform: translateX(-50%); }
.node-6 { bottom: 30px; left: -25px; }
.node-7 { top: 60px; left: -35px; }

/* Intelligent Analysis & Ratios */
.intelligent-analysis-section {
    background: #FFF8F6;
}

.ratio-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.ratio-card:hover {
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.06);
    transform: translateY(-2px);
}

.ratio-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ratio-top h3 {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.ratio-val {
    font-size: 20px;
    font-weight: 800;
}

.analysis-visual-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.04);
}

.bureau-integration-banner {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.04);
}

.bureau-footer {
    color: #FF5722;
    font-weight: 700;
}

/* Digitized Documents Suite (Section 03) */
.documents-suite-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F6 50%, #FFFFFF 100%);
    position: relative;
}

.section-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #FFF2EE;
    border: 1px solid #FFD8C9;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #C2410C;
    margin-top: 8px;
    box-shadow: 0 4px 14px rgba(255, 87, 34, 0.08);
}

.doc-preview-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.doc-preview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC143C 0%, #FF5722 50%, #FFA500 100%);
}

.doc-preview-card:hover {
    border-color: #FF5722;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(255, 87, 34, 0.16);
}

.doc-card-head {
    background: linear-gradient(135deg, #991B1B 0%, #DC143C 100%);
    color: #ffffff;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 2px solid #FFA500;
}

.doc-card-head span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFA500;
    display: block;
    margin-bottom: 2px;
}

.doc-card-head h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.doc-card-body {
    padding: 18px 16px;
    flex-grow: 1;
    background: #FFFFFF;
}

.doc-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #FEE2E2;
    font-size: 12px;
}

.doc-field:last-child {
    border-bottom: none;
}

.doc-field label {
    color: #6B7280;
    font-weight: 600;
    margin: 0;
}

.doc-field span {
    color: #111827;
    font-weight: 700;
}

.doc-field strong.text-emerald {
    color: #059669 !important;
    background: #ECFDF5;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 800;
    border: 1px solid #A7F3D0;
}

.doc-letter-preview {
    font-size: 11px;
    color: #4B5563;
    line-height: 1.5;
    background: #FFF8F6;
    border: 1px solid #FEE2E2;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
}

.terms-list {
    padding-left: 18px;
    margin: 0;
    font-size: 12px;
    color: #374151;
}

.terms-list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.doc-card-foot {
    background: #FFF8F6;
    padding: 12px 16px;
    border-top: 1px solid #FEE2E2;
}

.signatory-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #059669;
}

.sign-sig {
    font-style: italic;
    color: #4B5563;
}

/* High-Tech Platform Features Card */
.platform-features-card {
    background: linear-gradient(145deg, #111827 0%, #1F2937 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid rgba(255, 165, 0, 0.25);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.18);
    position: relative;
    overflow: hidden;
}

.platform-features-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.platform-features-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    border-bottom: 2px solid #FFA500;
    padding-bottom: 12px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    transition: all 0.3s ease;
}

.pf-item:hover {
    background: rgba(255, 165, 0, 0.12);
    border-color: #FFA500;
    transform: translateX(5px);
}

.pf-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.3), rgba(255, 87, 34, 0.3));
    color: #FFA500;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.pf-text {
    font-size: 13px;
    font-weight: 700;
    color: #F3F4F6;
}



/* Industries We Serve Grid */
.industries-card-wrapper {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.04);
}

.industry-chip-card {
    background: #FFF8F6;
    border: 1px solid #FEE2E2;
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.industry-chip-card:hover {
    background: #ffffff;
    border-color: #FF5722;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.12);
    transform: translateY(-2px);
}

.ind-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #FFF2EE;
    color: #FF5722;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 8px auto;
}

.operate-hub-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.03);
    transition: all 0.3s ease;
}

.operate-hub-card:hover {
    border-color: #FF5722;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.1);
}

.workflow-step-card {
    background: #ffffff;
    border: 1px solid #FEE2E2;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.03);
    transition: all 0.3s ease;
}

.workflow-step-card:hover {
    border-color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 87, 34, 0.08);
}

.step-circle-badge {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #DC143C 0%, #FF5722 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    border: 3px solid #FFA500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.step-icon-wrap {
    width: 38px;
    height: 38px;
    background: #FFF2EE;
    color: #FF5722;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-bullet-list i {
    color: #FF5722;
}

/* ==========================================================================
   Interactive Enhancements, Scroll Reveal & Back-to-Top
   ========================================================================== */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--orange-primary));
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.45);
    color: #ffffff;
}

/* Sticky Header Elevation */
.site-header.scrolled {
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .funding-navbar {
    min-height: 72px;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

/* Hero Stage Flow Pills */
.hero-stage-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.stage-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    color: var(--dark-soft);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.stage-pill.active,
.stage-pill:hover {
    border-color: var(--orange-primary);
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.pill-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.stage-pill.active .pill-num {
    background: var(--orange-primary);
    color: #ffffff;
}

.pill-arrow {
    color: var(--primary);
    font-size: 14px;
}

/* Laptop Dashboard Mockup */
.hero-laptop-wrapper {
    position: relative;
    padding: 20px 0;
}

.laptop-frame {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.laptop-screen {
    background: var(--dark);
    border-radius: 16px 16px 0 0;
    padding: 12px;
    border: 3px solid #374151;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.laptop-base {
    height: 16px;
    background: linear-gradient(180deg, #4B5563 0%, #1F2937 100%);
    border-radius: 0 0 16px 16px;
    position: relative;
}

.laptop-base::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #6B7280;
    border-radius: 0 0 4px 4px;
}

.floating-shield-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.15);
    animation: floatSmooth 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatSmooth {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.shield-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--orange-primary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.shield-text strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: 0.5px;
}

.shield-text span {
    font-size: 10px;
    color: var(--orange-primary);
    font-weight: 700;
}

/* Metric Card Active State */
.mock-metric-card.active-card {
    border-color: var(--orange-primary) !important;
    background: rgba(255, 87, 34, 0.08) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* ==========================================================================
   Mobile & Responsive Media Queries
   ========================================================================== */

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 20px 0 30px;
    }

    .hero-section::before {
        width: 100%;
        opacity: 0.4;
    }

    .hero-main-title {
        font-size: clamp(26px, 4.5vw, 36px);
        letter-spacing: -1px;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Responsive Investor Ring */
    .investor-ring-visual {
        width: 100%;
        max-width: 340px;
        height: auto;
        min-height: 280px;
        border-radius: 24px;
        padding: 24px 16px;
    }

    .ring-nodes {
        position: relative;
        inset: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-top: 20px;
    }

    .ring-node {
        position: static !important;
        transform: none !important;
    }

    .ring-center-globe {
        margin: 0 auto;
    }

    .doc-preview-card {
        margin-bottom: 16px;
    }

    .workflow-step-card {
        padding: 16px;
    }

    .step-num-col {
        margin-bottom: 12px;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stage-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .pill-arrow {
        display: none;
    }

    .bureau-logos {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .bureau-divider {
        display: none;
    }

    .statistic-card {
        padding: 20px 10px;
        text-align: center;
    }

    .statistic-card strong {
        font-size: 32px;
    }

    .floating-shield-badge {
        position: static;
        margin-top: 15px;
        animation: none;
    }

    .final-cta-card {
        padding: 28px 20px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-description {
        font-size: 15px;
    }

    .ratio-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .ratio-top {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .why-partner-body {
        padding: 16px 12px;
    }

    .why-grid-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}



