:root {
    --primary: #0d6efd;
    --primary-dark: #0754c5;
    --primary-deep: #073b8f;
    --primary-soft: #eaf3ff;
    --secondary: #6f42c1;
    --navy: #081d3d;
    --navy-light: #102b55;
    --text: #172033;
    --muted: #64748b;
    --surface: #ffffff;
    --surface-soft: #f5f8fd;
    --border: #e3eaf4;
    --success: #20c997;
    --shadow: 0 18px 45px rgba(25, 63, 111, 0.10);
    --shadow-lg: 0 28px 70px rgba(7, 39, 83, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 230, 242, 0.8);
    box-shadow: 0 4px 24px rgba(15, 45, 85, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
}

.main-header .navbar {
    min-height: 82px;
    padding: 10px 0;
}

.logo-area img {
    height: 55px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: #34445d;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px !important;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--primary);
}

.nav-btn {
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.22);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.hero-section {
    position: relative;
    min-height: 760px;
    padding: 105px 0 110px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(94, 175, 255, 0.33), transparent 24%),
        radial-gradient(circle at 12% 90%, rgba(111, 66, 193, 0.26), transparent 31%),
        linear-gradient(135deg, #073b8f 0%, #0d6efd 52%, #095bc6 100%);
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .28;
}

.hero-orb-one {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 70px;
    background: #7dc3ff;
}

.hero-orb-two {
    width: 210px;
    height: 210px;
    left: -100px;
    bottom: 40px;
    background: #7c4dff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    background: rgba(255,255,255,.10);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #70f0c3;
    box-shadow: 0 0 0 5px rgba(112, 240, 195, .14);
}

.hero-title {
    max-width: 830px;
    margin-bottom: 26px;
    font-size: clamp(44px, 5.2vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.4px;
}

.hero-title span {
    display: block;
    color: #dceeff;
}

.hero-text {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all .25s ease;
}

.hero-btn-primary {
    color: var(--primary-deep);
    box-shadow: 0 15px 30px rgba(3, 38, 89, .22);
}

.hero-btn-primary:hover {
    color: var(--primary-deep);
    transform: translateY(-2px);
}

.hero-btn-outline {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.hero-btn-outline:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
    transform: translateY(-2px);
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.hero-trust-list i {
    color: #7ef0c6;
    margin-right: 6px;
}

.hero-dashboard-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    color: var(--text);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.hero-dashboard-card::before {
    content: '';
    position: absolute;
    inset: 12px -12px -12px 12px;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 28px;
    background: rgba(8, 47, 103, .28);
}

.dashboard-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.dashboard-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.dashboard-topbar h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 30px;
    background: #e9fbf5;
    color: #087c5c;
    font-size: 11px;
    font-weight: 600;
}

.dashboard-status span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 22px 0;
}

.metric-card {
    position: relative;
    min-height: 128px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f9fbfe;
}

.metric-card-primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), #4e91ff);
}

.metric-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 13px;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
}

.metric-card-primary .metric-icon {
    color: #fff;
    background: rgba(255,255,255,.18);
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.metric-card-primary span {
    color: rgba(255,255,255,.75);
}

.metric-card strong {
    display: block;
    margin-top: 1px;
    font-size: 20px;
}

.dashboard-flow {
    padding: 18px;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
}

.flow-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 11px;
    font-size: 12px;
}

.flow-head span {
    color: #aabbd1;
}

.dashboard-flow .progress {
    height: 7px;
    background: rgba(255,255,255,.12);
}

.dashboard-flow .progress-bar {
    border-radius: 10px;
    background: linear-gradient(90deg, #36d7ad, #6de6c7);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    color: #8fa4bf;
    font-size: 9px;
}

.flow-steps .done {
    color: #6de6c7;
}

.flow-steps .active {
    color: #fff;
}

.dashboard-note {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 15px;
    border: 1px solid #dfeaf8;
    border-radius: 16px;
    background: #f2f7fd;
}

.dashboard-note > i {
    color: var(--primary);
    font-size: 23px;
}

.dashboard-note strong,
.dashboard-note span {
    display: block;
}

.dashboard-note strong {
    font-size: 12px;
}

.dashboard-note span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
}

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -32px;
}

.trust-strip-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 22px 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.trust-label {
    flex: 0 0 auto;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.trust-items {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px 20px;
    color: #52637b;
    font-size: 11px;
    font-weight: 600;
}

.trust-items i {
    margin-right: 5px;
    color: var(--primary);
}

.section-padding {
    padding: 105px 0;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -1.3px;
}

.section-desc {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

.problem-section {
    background: #fff;
}

.platform-points {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.platform-point {
    display: flex;
    gap: 16px;
}

.point-icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 20px;
}

.platform-point h3 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 650;
}

.platform-point p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.platform-visual {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1/1;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(13,110,253,.10) 0 22%, transparent 23%),
        radial-gradient(circle, transparent 0 47%, rgba(13,110,253,.12) 48% 48.4%, transparent 49%),
        radial-gradient(circle, transparent 0 68%, rgba(13,110,253,.08) 69% 69.4%, transparent 70%);
}

.platform-centre {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    box-shadow: 0 20px 45px rgba(13,110,253,.30);
    transform: translate(-50%, -50%);
}

.platform-centre i {
    margin-bottom: 3px;
    font-size: 26px;
}

.platform-centre strong {
    font-size: 26px;
}

.platform-centre span {
    color: rgba(255,255,255,.72);
    font-size: 10px;
}

.platform-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 70, 116, .10);
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
}

.platform-node i {
    color: var(--primary);
    font-size: 18px;
}

.node-one { top: 3%; left: 35%; }
.node-two { top: 24%; right: 0; }
.node-three { bottom: 21%; right: 2%; }
.node-four { bottom: 2%; left: 36%; }
.node-five { bottom: 21%; left: 0; }
.node-six { top: 24%; left: 2%; }

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

.feature-card {
    position: relative;
    height: 100%;
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(31, 70, 116, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    background: linear-gradient(90deg, var(--primary), #5e9eff);
    transition: opacity .3s ease;
}

.feature-card:hover {
    border-color: #cfdef2;
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.feature-card:hover::after {
    opacity: 1;
}

.featured-module {
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
    border-color: #ccdef7;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    border-radius: 17px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 25px;
}

.module-tag {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
}

.feature-card p {
    margin-bottom: 19px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.feature-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-card li {
    position: relative;
    padding-left: 21px;
    color: #42536b;
    font-size: 11px;
}

.feature-card li::before {
    content: '\F26A';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--success);
    font-family: 'bootstrap-icons';
}

.workflow-section {
    color: #fff;
    background:
        radial-gradient(circle at 10% 20%, rgba(13,110,253,.28), transparent 23%),
        radial-gradient(circle at 90% 80%, rgba(111,66,193,.20), transparent 25%),
        var(--navy);
}

.section-kicker-light {
    color: #79b8ff;
}

.workflow-intro {
    margin: 0;
    color: #a9bad0;
    font-size: 14px;
}

.workflow-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 12px;
}

.workflow-step {
    position: relative;
    padding: 25px 20px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 19px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(8px);
}

.step-number {
    position: absolute;
    top: 17px;
    right: 17px;
    color: rgba(255,255,255,.17);
    font-size: 22px;
    font-weight: 700;
}

.step-icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: rgba(60, 151, 255, .18);
    color: #80bdff;
    font-size: 20px;
}

.workflow-step h3 {
    margin-bottom: 9px;
    font-size: 15px;
    font-weight: 650;
}

.workflow-step p {
    margin: 0;
    color: #a9bad0;
    font-size: 11px;
    line-height: 1.7;
}

.workflow-connector {
    display: grid;
    place-items: center;
    color: #4773aa;
}

.industries-section {
    background: #fff;
}

.industry-card {
    display: flex;
    gap: 18px;
    height: 100%;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #fff;
    transition: .3s ease;
}

.industry-card:hover {
    border-color: #bed5f4;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.industry-card > i {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 29px;
}

.industry-card h3 {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 650;
}

.industry-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-card {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 70, 116, .04);
}

.why-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 16px;
    border-radius: 13px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 19px;
}

.why-card h3 {
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 650;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.stats-section {
    padding: 72px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
}

.stat-box {
    text-align: center;
}

.stat-icon {
    margin-bottom: 6px;
    color: #a9d2ff;
    font-size: 23px;
}

.stat-number {
    font-size: 42px;
    font-weight: 750;
    letter-spacing: -1px;
}

.stat-label {
    margin-top: 2px;
    color: rgba(255,255,255,.70);
    font-size: 12px;
}

.cta-section {
    background: #fff;
}

.cta-box {
    position: relative;
    padding: 62px 65px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    box-shadow: 0 25px 55px rgba(13, 84, 177, .25);
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.cta-decoration-one {
    width: 240px;
    height: 240px;
    right: -60px;
    top: -90px;
}

.cta-decoration-two {
    width: 150px;
    height: 150px;
    left: 45%;
    bottom: -105px;
}

.cta-kicker {
    display: block;
    margin-bottom: 10px;
    color: #aed4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-box h2 {
    max-width: 780px;
    margin-bottom: 12px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 750;
    line-height: 1.2;
}

.cta-box p {
    max-width: 730px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.cta-button {
    padding: 15px 27px;
    border-radius: 50px;
    color: var(--primary-deep);
    font-weight: 650;
    white-space: nowrap;
}

footer {
    padding: 58px 0 24px;
    color: #b5c1d1;
    background: #06162d;
}

.footer-brand img {
    max-height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-copy {
    max-width: 430px;
    margin: 16px 0 0;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.footer-links a,
.footer-login {
    color: #b5c1d1;
    font-size: 12px;
    font-weight: 500;
}

.footer-links a:hover,
.footer-login:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #718099;
    font-size: 11px;
}

@media (max-width: 1199.98px) {
    .workflow-track {
        grid-template-columns: repeat(5, 1fr);
    }

    .workflow-connector {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .main-header .navbar {
        min-height: 74px;
    }

    .navbar-collapse {
        padding: 18px 0 8px;
        border-top: 1px solid var(--border);
        margin-top: 10px;
    }

    .nav-btn {
        margin-top: 10px;
        display: inline-block;
    }

    .hero-section {
        min-height: auto;
        padding: 85px 0 100px;
    }

    .hero-dashboard-card {
        max-width: 610px;
        margin: 15px auto 0;
        transform: none;
    }

    .trust-strip-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .trust-items {
        justify-content: flex-start;
    }

    .platform-visual {
        margin-top: 20px;
    }

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

    .cta-box {
        padding: 50px 42px;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 76px;
    }

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

    .section-padding {
        padding: 78px 0;
    }

    .hero-title {
        letter-spacing: -1.4px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        text-align: center;
    }

    .hero-trust-list {
        display: grid;
        gap: 8px;
    }

    .hero-dashboard-card {
        padding: 20px;
        border-radius: 22px;
    }

    .dashboard-metrics {
        gap: 10px;
    }

    .metric-card {
        min-height: 116px;
        padding: 14px;
    }

    .trust-strip {
        margin-top: -25px;
    }

    .trust-strip-content {
        padding: 20px;
    }

    .trust-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .platform-visual {
        transform: scale(.92);
    }

    .workflow-track,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        min-height: 180px;
    }

    .stat-number {
        font-size: 34px;
    }

    .cta-box {
        padding: 40px 28px;
        border-radius: 22px;
    }

    .cta-button {
        width: 100%;
        margin-top: 12px;
    }

    .footer-links {
        margin-top: 8px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 40px;
    }

    .dashboard-topbar h2 {
        font-size: 18px;
    }

    .platform-visual {
        width: 430px;
        max-width: 122%;
        margin-left: -11%;
        transform: scale(.82);
    }

    .platform-node {
        padding: 10px 12px;
        font-size: 10px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 27px;
    }
}


/* Public enquiry forms */
.contact-section { background: var(--surface-soft); }
.contact-intro-card { position: relative; padding: 48px; border-radius: 28px; color: #fff; background: linear-gradient(145deg, var(--primary-deep), var(--primary)); box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-intro-card::after { content: ''; position: absolute; width: 240px; height: 240px; right: -90px; bottom: -100px; border-radius: 50%; background: rgba(255,255,255,.08); }
.contact-intro-card h2 { position: relative; margin-bottom: 18px; font-size: clamp(30px, 4vw, 43px); font-weight: 750; line-height: 1.22; }
.contact-intro-card > p { position: relative; color: rgba(255,255,255,.78); font-size: 14px; }
.contact-benefits { position: relative; display: grid; gap: 16px; margin: 30px 0; }
.contact-benefits div { display: flex; gap: 11px; align-items: flex-start; font-size: 13px; }
.contact-benefits i { color: #7ef0c6; }
.contact-assurance { position: relative; display: flex; gap: 13px; padding: 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.08); }
.contact-assurance > i { font-size: 24px; color: #a9d2ff; }
.contact-assurance strong, .contact-assurance span { display: block; }
.contact-assurance strong { font-size: 12px; }
.contact-assurance span { color: rgba(255,255,255,.68); font-size: 10px; }
.contact-form-card { padding: 42px; border: 1px solid var(--border); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.form-card-heading { margin-bottom: 25px; }
.form-card-heading > span, .modal-kicker { display: block; margin-bottom: 7px; color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.form-card-heading h2 { margin-bottom: 7px; color: var(--navy); font-size: 30px; font-weight: 700; }
.form-card-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-form-card .form-label, .demo-modal .form-label { color: var(--navy); font-size: 12px; font-weight: 600; }
.contact-form-card .form-control, .contact-form-card .form-select, .demo-modal .form-control, .demo-modal .form-select { min-height: 49px; border-color: #dce5f1; border-radius: 13px; font-size: 13px; box-shadow: none; }
.contact-form-card textarea.form-control { min-height: 135px; resize: vertical; }
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus, .demo-modal .form-control:focus, .demo-modal .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(13,110,253,.10); }
.consent-check {
    display: flex;
    align-items: center;
    margin: 8px 0 6px;
    padding: 0;
    color: #334155;
}

.consent-check .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: 10px;
    border: 2px solid #94a3b8;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: none;
}

.consent-check .form-check-label {
    margin: 0;
    color: #334155;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
}

.consent-check:hover .form-check-label {
    color: var(--navy);
}
.form-submit-button { padding: 14px 25px; border-radius: 50px; font-size: 13px; font-weight: 650; }
.website-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.demo-modal .modal-content { border: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.demo-modal .modal-header { align-items: flex-start; padding: 28px 32px 20px; border-bottom: 1px solid var(--border); }
.demo-modal .modal-title { color: var(--navy); font-size: 29px; font-weight: 750; }
.demo-modal .modal-header p { max-width: 650px; margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.demo-modal .modal-body { padding: 28px 32px 30px; }
.modal-footer-note { padding: 13px 32px; color: #52637b; background: #f4f8fd; font-size: 10px; }
.footer-demo-button { padding: 0; border: 0; background: transparent; }

@media (max-width: 767.98px) {
    .contact-intro-card,
    .contact-form-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .demo-modal .modal-header,
    .demo-modal .modal-body {
        padding-left: 21px;
        padding-right: 21px;
    }

     .consent-check {
    margin: 8px 0;
}

.consent-check .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.consent-check .form-check-label {
    font-size: 12px;
    line-height: 1.5;
}
}

/* =========================================================
   ENDEX PUBLIC PRICING PAGE
   ========================================================= */

.pricing-page {
    background: var(--surface-soft);
}

.pricing-hero {
    position: relative;
    padding: 92px 0 86px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 16%, rgba(112, 188, 255, .30), transparent 23%),
        radial-gradient(circle at 12% 90%, rgba(111, 66, 193, .24), transparent 28%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 58%, #075fcf 100%);
    overflow: hidden;
}

.pricing-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    opacity: .25;
    filter: blur(1px);
}

.pricing-orb-one {
    width: 250px;
    height: 250px;
    top: 45px;
    right: -75px;
    background: #8bc9ff;
}

.pricing-orb-two {
    width: 185px;
    height: 185px;
    left: -85px;
    bottom: 10px;
    background: #8a64ff;
}

.pricing-hero-content {
    max-width: 1020px;
    margin: 0 auto;
}

.pricing-hero-badge {
    margin-bottom: 23px;
}

.pricing-hero h1 {
    max-width: 1000px;
    margin: 0 auto 22px;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
}

.pricing-hero-content > p {
    max-width: 850px;
    margin: 0 auto;
    color: rgba(255,255,255,.84);
    font-size: 20px;
    line-height: 1.8;
}

.pricing-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.pricing-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 30px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 500;
}

.pricing-trust-row i {
    margin-right: 6px;
    color: #7ef0c6;
}

.pricing-plans-section {
    position: relative;
    padding: 0 0 95px;
    background:
        linear-gradient(to bottom, rgba(13,110,253,.05), transparent 220px),
        var(--surface-soft);
}

.billing-panel {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 980px;
    margin: -38px auto 45px;
    padding: 22px 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
}

.billing-copy span,
.billing-copy strong {
    display: block;
}

.billing-copy span {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.billing-copy strong {
    color: var(--navy);
    font-size: 16px;
    font-weight: 650;
}

.billing-switch {
    display: inline-flex;
    align-items: stretch;
    padding: 5px;
    border: 1px solid #dce6f3;
    border-radius: 50px;
    background: #f3f7fc;
}

.billing-option {
    min-width: 112px;
    padding: 10px 15px;
    border: 0;
    border-radius: 50px;
    color: #53657e;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.25;
    transition: .25s ease;
}

.billing-option small {
    display: block;
    margin-top: 2px;
    color: #198754;
    font-size: 9px;
    font-weight: 700;
}

.billing-option.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 18px rgba(13,110,253,.25);
}

.billing-option.active small {
    color: #d9edff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.public-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 31px 24px 25px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 62, 110, .07);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    overflow: hidden;
}

.public-plan-card:hover {
    border-color: #bed4f2;
    box-shadow: 0 22px 48px rgba(23, 62, 110, .14);
    transform: translateY(-7px);
}

.plan-featured {
    z-index: 2;
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, #fff, #f4f8ff);
    box-shadow: 0 22px 52px rgba(13,110,253,.18);
    transform: translateY(-9px);
}

.plan-featured:hover {
    transform: translateY(-14px);
}

.plan-founders {
    border-color: #f0c875;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 208, 104, .20), transparent 28%),
        linear-gradient(180deg, #fffefa, #fff9e9);
}

.plan-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 14px;
    color: #fff;
    background: linear-gradient(90deg, var(--primary), #4f94ff);
    text-align: center;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.founders-ribbon {
    color: #5f4304;
    background: linear-gradient(90deg, #ffd76e, #f5b930);
}

.plan-featured .plan-header,
.plan-founders .plan-header {
    padding-top: 23px;
}

.plan-header {
    min-height: 167px;
}

.plan-eyebrow {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.plan-founders .plan-eyebrow {
    color: #a66b00;
}

.plan-header h2 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 750;
    letter-spacing: -.4px;
}

.plan-header p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.founders-value {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 10px;
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid #f1d994;
    border-radius: 13px;
    background: rgba(255,247,220,.86);
}

.founders-value span,
.founders-value del,
.founders-value strong {
    font-size: 9px;
}

.founders-value span {
    color: #80631b;
}

.founders-value del {
    color: #8e7b4c;
}

.founders-value strong {
    grid-column: 1 / -1;
    color: #8a5b00;
}

.plan-price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    min-height: 58px;
    padding: 7px 0 5px;
}

.plan-currency {
    padding-bottom: 9px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.plan-price {
    color: var(--navy);
    font-size: clamp(32px, 2.7vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
}

.plan-period {
    max-width: 70px;
    padding-bottom: 6px;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.25;
}

.plan-saving {
    min-height: 20px;
    margin-bottom: 12px;
    color: #15805f;
    font-size: 10px;
    font-weight: 700;
}

.plan-saving.is-empty {
    visibility: hidden;
}

.plan-capacity {
    display: grid;
    gap: 8px;
    margin-bottom: 19px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.plan-capacity div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #33445c;
    font-size: 16px;
    font-weight: 600;
}

.plan-capacity i {
    width: 18px;
    color: var(--primary);
    font-size: 15px;
}

.plan-service-list {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.plan-service-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #52637b;
    font-size: 15px;
    line-height: 1.8;
}

.plan-service-list i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--success);
    font-size: 12px;
}

.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 12px 14px;
    border: 1px solid #bed3ef;
    border-radius: 50px;
    color: var(--primary);
    background: #f7faff;
    font-size: 15px;
    font-weight: 700;
}

.plan-button:hover {
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
}

.plan-button-primary {
    border-color: var(--primary);
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 11px 24px rgba(13,110,253,.22);
}

.plan-button-founders {
    border-color: #d5a72a;
    color: #654600;
    background: linear-gradient(135deg, #ffe28a, #f4bd3d);
}

.plan-button-founders:hover {
    border-color: #b98600;
    color: #fff;
    background: #b98600;
}

.pricing-tax-note {
    max-width: 980px;
    margin: 28px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 10px;
}

.pricing-tax-note i {
    margin-right: 6px;
    color: var(--primary);
}

.comparison-section {
    background: #fff;
}

.comparison-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-comparison-table {
    min-width: 980px;
}

.pricing-comparison-table th,
.pricing-comparison-table td {
    padding: 17px 18px;
    border-color: #e8eef6;
    color: #45566e;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
}

.pricing-comparison-table thead th {
    padding-top: 22px;
    padding-bottom: 22px;
    color: var(--navy);
    background: #f7faff;
    font-size: 16px;
    font-weight: 750;
}

.pricing-comparison-table thead th:first-child,
.pricing-comparison-table tbody th {
    text-align: left;
}

.pricing-comparison-table thead th:first-child {
    width: 27%;
}

.pricing-comparison-table tbody th {
    color: #2d3e56;
    font-weight: 650;
}

.pricing-comparison-table .recommended-column {
    background: #f2f7ff;
}

.pricing-comparison-table .founders-column {
    background: #fffaf0;
}

.pricing-comparison-table thead .recommended-column span {
    display: block;
    margin-top: 5px;
    color: var(--primary);
    font-size: 8px;
    text-transform: uppercase;
}

.comparison-group th {
    padding: 12px 18px;
    color: var(--primary) !important;
    background: #edf5ff !important;
    font-size: 10px !important;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.table-included {
    color: #1b725d;
    font-weight: 650;
}

.table-included i {
    margin-right: 6px;
    color: var(--success);
}

.pricing-value-section {
    background: var(--surface-soft);
}

.pricing-value-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 9px 26px rgba(31,70,116,.05);
    transition: .28s ease;
}

.pricing-value-card:hover {
    border-color: #bdd4f2;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.pricing-value-card > i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 22px;
}

.pricing-value-card h3 {
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 24px;
    font-weight: 700;
}

.pricing-value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.upgrade-section {
    color: #fff;
    background:
        radial-gradient(circle at 10% 30%, rgba(13,110,253,.24), transparent 22%),
        radial-gradient(circle at 90% 80%, rgba(111,66,193,.18), transparent 25%),
        var(--navy);
}

.upgrade-box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.upgrade-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 750;
    line-height: 1.2;
}

.upgrade-copy p {
    margin: 0;
    color: #a9bad0;
    font-size: 13px;
}

.upgrade-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.upgrade-track > div {
    min-width: 120px;
    padding: 18px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 17px;
    background: rgba(255,255,255,.06);
    text-align: center;
}

.upgrade-track > div.active {
    border-color: rgba(112,183,255,.55);
    background: linear-gradient(135deg, rgba(13,110,253,.38), rgba(13,110,253,.18));
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.upgrade-track span,
.upgrade-track strong,
.upgrade-track small {
    display: block;
}

.upgrade-track span {
    margin-bottom: 5px;
    color: #79b8ff;
    font-size: 9px;
    font-weight: 700;
}

.upgrade-track strong {
    font-size: 12px;
}

.upgrade-track small {
    margin-top: 3px;
    color: #9fb1c9;
    font-size: 9px;
}

.upgrade-track > i {
    color: #5277a5;
}

.enterprise-pricing-section {
    background: #fff;
}

.enterprise-pricing-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 38px 42px;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary));
    box-shadow: 0 22px 50px rgba(13,84,177,.22);
}

.enterprise-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.14);
    font-size: 27px;
}

.enterprise-pricing-card span {
    display: block;
    margin-bottom: 5px;
    color: #afd4ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.enterprise-pricing-card h2 {
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: 750;
}

.enterprise-pricing-card p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 16px;
}

.enterprise-button {
    padding: 13px 22px;
    border-radius: 50px;
    color: var(--primary-deep);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-faq-section {
    background: var(--surface-soft);
}

.pricing-faq .accordion-item {
    margin-bottom: 13px;
    border: 1px solid var(--border);
    border-radius: 16px !important;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 7px 20px rgba(31,70,116,.04);
}

.pricing-faq .accordion-button {
    padding: 19px 21px;
    color: var(--navy);
    background: #fff;
    font-size: 17px;
    font-weight: 650;
    box-shadow: none;
}

.pricing-faq .accordion-button:not(.collapsed) {
    color: var(--primary-deep);
    background: #f4f8ff;
}

.pricing-faq .accordion-button:focus {
    box-shadow: none;
}

.pricing-faq .accordion-body {
    padding: 0 21px 21px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.pricing-final-cta {
    background: #fff;
}

@media (max-width: 1399.98px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-7px);
    }
}

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

    .upgrade-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .pricing-hero {
        padding: 78px 0 80px;
    }

    .billing-panel {
        align-items: stretch;
        flex-direction: column;
        margin-top: -30px;
    }

    .billing-switch {
        align-self: flex-start;
    }

    .enterprise-pricing-card {
        grid-template-columns: auto 1fr;
    }

    .enterprise-button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .upgrade-track {
        flex-wrap: wrap;
        justify-content: center;
    }

    .upgrade-track > i {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .pricing-hero h1 {
        font-size: 42px;
        letter-spacing: -1.3px;
    }

    .pricing-hero-content > p {
        font-size: 15px;
    }

    .pricing-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-trust-row {
        display: grid;
        justify-content: start;
        text-align: left;
    }

    .billing-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .billing-switch {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        border-radius: 18px;
    }

    .billing-option {
        min-width: 0;
        padding: 10px 7px;
        border-radius: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .public-plan-card {
        padding: 30px 25px 25px;
    }

    .plan-header {
        min-height: auto;
    }

    .upgrade-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upgrade-track > div {
        min-width: 0;
    }

    .enterprise-pricing-card {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }

    .enterprise-button {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 575.98px) {
    .pricing-hero {
        padding-top: 66px;
    }

    .pricing-hero h1 {
        font-size: 37px;
    }

    .pricing-plans-section {
        padding-bottom: 75px;
    }

    .billing-copy strong {
        font-size: 11px;
    }

    .billing-option {
        font-size: 10px;
    }

    .plan-price {
        font-size: 39px;
    }

    .upgrade-track {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ENDEX PARTNER PROGRAM PAGE
   ========================================================= */

.partner-page {
    background: var(--surface-soft);
}

.partner-hero {
    position: relative;
    padding: 96px 0 105px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(112, 188, 255, .30), transparent 24%),
        radial-gradient(circle at 12% 90%, rgba(111, 66, 193, .25), transparent 29%),
        linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 58%, #075fcf 100%);
    overflow: hidden;
}

.partner-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.partner-orb {
    position: absolute;
    border-radius: 50%;
    opacity: .24;
}

.partner-orb-one {
    width: 270px;
    height: 270px;
    top: 45px;
    right: -85px;
    background: #8bc9ff;
}

.partner-orb-two {
    width: 190px;
    height: 190px;
    left: -90px;
    bottom: 15px;
    background: #8a64ff;
}

.partner-hero h1 {
    max-width: 820px;
    margin-bottom: 23px;
    font-size: clamp(45px, 5.2vw, 70px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2.2px;
}

.partner-hero .col-lg-7 > p {
    max-width: 760px;
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.85;
}

.partner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 31px;
}

.partner-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
    margin-top: 28px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
}

.partner-hero-trust i {
    margin-right: 6px;
    color: #7ef0c6;
}

.partner-opportunity-card {
    padding: 29px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 28px;
    color: var(--text);
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow-lg);
}

.partner-card-heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.partner-card-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    font-weight: 750;
    line-height: 1.35;
}

.partner-mini-flow {
    display: grid;
    gap: 8px;
    margin: 23px 0;
}

.partner-mini-flow > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #f8fbff;
    color: var(--navy);
    font-size: 12px;
    font-weight: 650;
}

.partner-mini-flow > div i {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
}

.partner-mini-flow > div.active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), #4e91ff);
}

.partner-mini-flow > div.active i {
    color: #fff;
    background: rgba(255,255,255,.17);
}

.partner-mini-flow > i {
    margin-left: 25px;
    color: #a4b6cc;
    font-size: 12px;
}

.partner-card-note {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 15px;
    color: #42536b;
    background: #eff6ff;
}

.partner-card-note > i {
    color: var(--primary);
    font-size: 22px;
}

.partner-card-note strong,
.partner-card-note span {
    display: block;
}

.partner-card-note strong {
    color: var(--navy);
    font-size: 11px;
}

.partner-card-note span {
    margin-top: 2px;
    font-size: 9px;
    line-height: 1.55;
}

.partner-highlight-strip {
    position: relative;
    z-index: 2;
    margin-top: -36px;
}

.partner-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.partner-highlight-grid > div {
    position: relative;
    min-height: 145px;
    padding: 25px;
    border-right: 1px solid var(--border);
}

.partner-highlight-grid > div:last-child {
    border-right: 0;
}

.partner-highlight-grid i {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 25px;
}

.partner-highlight-grid strong,
.partner-highlight-grid span {
    display: block;
}

.partner-highlight-grid strong {
    color: var(--navy);
    font-size: 13px;
}

.partner-highlight-grid span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.partner-benefits-section {
    background: var(--surface-soft);
}

.partner-benefit-card {
    height: 100%;
    padding: 29px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(31,70,116,.05);
    transition: .3s ease;
}

.partner-benefit-card:hover {
    border-color: #cbdcf3;
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.partner-benefit-card > i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 19px;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 23px;
}

.partner-benefit-card h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.partner-benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.partner-who-section,
.partner-portal-section {
    background: #fff;
}

.partner-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.partner-audience-grid > div {
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(31,70,116,.04);
}

.partner-audience-grid i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 13px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 18px;
}

.partner-audience-grid h3 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 650;
}

.partner-audience-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.7;
}

.partner-journey-section {
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(13,110,253,.28), transparent 25%),
        radial-gradient(circle at 88% 82%, rgba(111,66,193,.20), transparent 27%),
        var(--navy);
}

.partner-light-desc {
    max-width: 730px;
    margin: 0 auto;
    color: #a9bad0;
    font-size: 14px;
    line-height: 1.8;
}

.partner-journey-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}

.partner-journey-track > div {
    position: relative;
    min-height: 230px;
    padding: 25px 20px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 19px;
    background: rgba(255,255,255,.055);
}

.partner-journey-track span {
    position: absolute;
    top: 15px;
    right: 17px;
    color: rgba(255,255,255,.18);
    font-size: 21px;
    font-weight: 700;
}

.partner-journey-track i {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 22px;
    border-radius: 14px;
    color: #80bdff;
    background: rgba(60,151,255,.18);
    font-size: 20px;
}

.partner-journey-track h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 650;
}

.partner-journey-track p {
    margin: 0;
    color: #a9bad0;
    font-size: 10px;
    line-height: 1.7;
}

.partner-terms-note {
    max-width: 900px;
    margin: 27px auto 0;
    color: #8398b3;
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
}

.partner-portal-points {
    display: grid;
    gap: 15px;
    margin-top: 29px;
}

.partner-portal-points > div {
    display: flex;
    gap: 11px;
    color: #42536b;
    font-size: 12px;
}

.partner-portal-points i {
    color: var(--success);
}

.partner-portal-preview {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(180deg, #fff, #f5f9ff);
    box-shadow: var(--shadow);
}

.portal-preview-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 19px;
    border-bottom: 1px solid var(--border);
}

.portal-preview-top span {
    display: block;
    color: var(--primary);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.portal-preview-top h3 {
    margin: 4px 0 0;
    color: var(--navy);
    font-size: 21px;
    font-weight: 700;
}

.portal-preview-top small {
    padding: 6px 10px;
    border-radius: 50px;
    color: #087c5c;
    background: #e9fbf5;
    font-size: 9px;
    font-weight: 650;
}

.portal-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    padding: 21px 0;
}

.portal-preview-grid > div {
    min-height: 120px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #fff;
}

.portal-preview-grid i {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    margin-bottom: 13px;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-soft);
}

.portal-preview-grid span,
.portal-preview-grid strong {
    display: block;
}

.portal-preview-grid span {
    color: var(--muted);
    font-size: 9px;
}

.portal-preview-grid strong {
    margin-top: 2px;
    color: var(--navy);
    font-size: 16px;
}

.portal-preview-note {
    padding: 13px 14px;
    border-radius: 13px;
    color: #52637b;
    background: #edf5ff;
    font-size: 9px;
    line-height: 1.6;
}

.portal-preview-note i {
    margin-right: 6px;
    color: var(--primary);
}

.partner-registration-section,
.partner-faq-section {
    background: var(--surface-soft);
}

.partner-registration-intro {
    position: relative;
    padding: 47px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, var(--primary-deep), var(--primary));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.partner-registration-intro::after {
    content: '';
    position: absolute;
    right: -85px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.partner-registration-intro h2 {
    position: relative;
    margin-bottom: 17px;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 750;
    line-height: 1.22;
}

.partner-registration-intro > p {
    position: relative;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.8;
}

.partner-form-benefits {
    position: relative;
    display: grid;
    gap: 15px;
    margin: 28px 0;
}

.partner-form-benefits > div {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.partner-form-benefits i {
    color: #7ef0c6;
}

.partner-form-card textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.partner-form-disclaimer {
    margin: 18px 0 0;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 9px;
    line-height: 1.65;
    text-align: center;
}

.partner-final-cta {
    background: #fff;
}

@media (max-width: 1199.98px) {
    .partner-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-highlight-grid > div:nth-child(2) {
        border-right: 0;
    }

    .partner-highlight-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .partner-journey-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .partner-hero {
        padding: 80px 0 95px;
    }

    .partner-opportunity-card {
        max-width: 620px;
        margin: 0 auto;
    }

    .partner-journey-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .partner-hero h1 {
        font-size: 42px;
        letter-spacing: -1.3px;
    }

    .partner-hero .col-lg-7 > p {
        font-size: 15px;
    }

    .partner-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .partner-hero-trust {
        display: grid;
    }

    .partner-highlight-grid,
    .partner-audience-grid,
    .partner-journey-track,
    .portal-preview-grid {
        grid-template-columns: 1fr;
    }

    .partner-highlight-grid > div,
    .partner-highlight-grid > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .partner-highlight-grid > div:last-child {
        border-bottom: 0;
    }

    .partner-registration-intro {
        padding: 31px 24px;
        border-radius: 22px;
    }
}

@media (max-width: 575.98px) {
    .partner-hero {
        padding-top: 66px;
    }

    .partner-hero h1 {
        font-size: 37px;
    }

    .partner-opportunity-card {
        padding: 22px;
        border-radius: 22px;
    }

    .partner-card-heading h2 {
        font-size: 21px;
    }
}

/* =========================================================
   PARTNER PROGRAM HEADER NAVIGATION
   ========================================================= */

.partner-nav-item {
    margin-left: 4px;
    margin-right: 4px;
}

.navbar-nav .partner-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px !important;
    border: 1px solid #b9d6ff;
    border-radius: 50px;
    color: var(--primary-deep);
    background: linear-gradient(135deg, #f4f9ff, #e7f2ff);
    box-shadow: 0 7px 18px rgba(13, 110, 253, 0.10);
    font-weight: 700;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.navbar-nav .partner-nav-link i {
    color: var(--primary);
    font-size: 15px;
}

.navbar-nav .partner-nav-link::after {
    content: '';
    position: absolute;
    top: 7px;
    right: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.13);
}

.navbar-nav .partner-nav-link:hover,
.navbar-nav .partner-nav-link:focus {
    color: #ffffff;
    border-color: var(--primary);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    box-shadow: 0 11px 24px rgba(13, 110, 253, 0.22);
    transform: translateY(-2px);
}

.navbar-nav .partner-nav-link:hover i,
.navbar-nav .partner-nav-link:focus i {
    color: #ffffff;
}

.navbar-nav .partner-nav-link.active {
    color: #ffffff;
    border-color: var(--primary);
    background: linear-gradient(
        135deg,
        var(--primary-deep),
        var(--primary)
    );
    box-shadow: 0 11px 26px rgba(13, 110, 253, 0.24);
}

.navbar-nav .partner-nav-link.active i {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .partner-nav-item {
        margin: 5px 0;
    }

    .navbar-nav .partner-nav-link {
        justify-content: flex-start;
        width: 100%;
        padding: 12px 16px !important;
    }
}


/* =========================================================
   ENDEX CORPORATE FOOTER
   ========================================================= */

.corporate-footer {
    position: relative;
    padding: 0;
    color: #b9c6d8;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(13, 110, 253, 0.16),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 85%,
            rgba(111, 66, 193, 0.11),
            transparent 24%
        ),
        #06162d;
    overflow: hidden;
}

.corporate-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.3) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
    pointer-events: none;
}

.footer-top {
    position: relative;
    z-index: 1;
    padding: 72px 0 58px;
}

.footer-company {
    max-width: 390px;
}

.corporate-footer .footer-brand img {
    width: auto;
    max-height: 58px;
    filter: brightness(0) invert(1);
}

.footer-company-copy {
    max-width: 370px;
    margin: 19px 0 22px;
    color: #a9b8cc;
    font-size: 13px;
    line-height: 1.85;
}

.footer-company-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 25px;
}

.footer-company-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50px;
    color: #bed3ec;
    background: rgba(255, 255, 255, 0.05);
    font-size: 9px;
    font-weight: 600;
}

.footer-company-badges i {
    color: #72e8c1;
    font-size: 12px;
}

.footer-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #4e91ff;
    border-radius: 50px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    box-shadow: 0 12px 27px rgba(13, 110, 253, 0.23);
    font-size: 11px;
    font-weight: 650;
    transition: 0.25s ease;
}

.footer-primary-button:hover,
.footer-primary-button:focus {
    color: #ffffff;
    border-color: #75aaff;
    background: linear-gradient(
        135deg,
        #2781ff,
        var(--primary)
    );
    transform: translateY(-2px);
}

.footer-column-kicker {
    display: block;
    margin-bottom: 7px;
    color: #69adff;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column h2 {
    margin: 0 0 23px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.footer-navigation {
    display: grid;
    gap: 12px;
}

.footer-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #aebdd0;
    font-size: 11px;
    font-weight: 500;
    transition: 0.22s ease;
}

.footer-navigation a i {
    color: #4d83c8;
    font-size: 9px;
    transition: 0.22s ease;
}

.footer-navigation a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-navigation a:hover i {
    color: #72b4ff;
}

.footer-contact-list {
    display: grid;
    gap: 19px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(107, 172, 255, 0.22);
    border-radius: 12px;
    color: #79b9ff;
    background: rgba(13, 110, 253, 0.11);
    font-size: 16px;
}

.footer-contact-icon.whatsapp-icon {
    color: #67dfb5;
    border-color: rgba(65, 210, 162, 0.22);
    background: rgba(32, 201, 151, 0.10);
}

.footer-contact-item span,
.footer-contact-item a {
    display: block;
}

.footer-contact-item span {
    margin-bottom: 3px;
    color: #71849e;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer-contact-item a {
    margin-bottom: 2px;
    color: #d7e1ee;
    font-size: 11px;
    font-weight: 550;
    transition: color 0.22s ease;
}

.footer-contact-item a:hover {
    color: #79b9ff;
}

.footer-address {
    display: flex;
    gap: 13px;
    margin: 0 0 18px;
    color: inherit;
    font-style: normal;
}

.footer-address-icon {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(107, 172, 255, 0.22);
    border-radius: 13px;
    color: #79b9ff;
    background: rgba(13, 110, 253, 0.11);
    font-size: 18px;
}

.footer-address strong,
.footer-address span {
    display: block;
}

.footer-address strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 650;
}

.footer-address span {
    color: #9eafc4;
    font-size: 10px;
    line-height: 1.85;
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 21px;
    color: #7dbbff;
    font-size: 10px;
    font-weight: 650;
    transition: 0.22s ease;
}

.footer-map-link:hover {
    color: #ffffff;
}

.footer-map-link .bi-arrow-up-right {
    font-size: 9px;
}

.footer-office-hours {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.footer-office-hours > i {
    color: #71b3ff;
    font-size: 18px;
}

.footer-office-hours span,
.footer-office-hours strong {
    display: block;
}

.footer-office-hours span {
    color: #71849e;
    font-size: 8px;
    text-transform: uppercase;
}

.footer-office-hours strong {
    margin-top: 2px;
    color: #cbd6e4;
    font-size: 9px;
    font-weight: 550;
}

.footer-bottom-area {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.13);
}

.corporate-footer .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 21px 0;
    border: 0;
    color: #71839c;
    font-size: 9px;
}

.footer-bottom-centre {
    color: #8395ad;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 17px;
}

.footer-legal-links a {
    color: #8193aa;
    font-size: 9px;
    transition: color 0.22s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* Footer tablet */

@media (max-width: 991.98px) {
    .footer-top {
        padding: 60px 0 48px;
    }

    .footer-company {
        max-width: 100%;
    }

    .corporate-footer .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-centre {
        display: none;
    }
}

/* Footer mobile */

@media (max-width: 767.98px) {
    .footer-top {
        padding: 52px 0 40px;
    }

    .footer-column h2 {
        margin-bottom: 18px;
    }

    .footer-company-copy {
        font-size: 12px;
    }

    .footer-primary-button {
        width: 100%;
        justify-content: center;
    }

    .corporate-footer .footer-bottom {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        padding: 19px 0;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}

/* =========================================================
   PARTNER PAGE TYPOGRAPHY IMPROVEMENTS
   ========================================================= */

.partner-page{
    font-size:16px;
}

/* Hero */
.partner-card-heading span{
    font-size:14px;
}

.partner-card-heading h2{
    font-size:38px;
    line-height:1.25;
}

.partner-hero .col-lg-7>p{
    font-size:18px;
    line-height:1.9;
}

.partner-hero-trust{
    font-size:15px;
}

/* Hero Registration Flow */
.partner-mini-flow>div{
    font-size:18px;
    font-weight:700;
}

.partner-mini-flow>div i{
    width:46px;
    height:46px;
    font-size:20px;
}

.partner-mini-flow>i{
    font-size:18px;
}

.partner-card-note strong{
    font-size:17px;
}

.partner-card-note span{
    font-size:15px;
    line-height:1.7;
}

/* Highlight Strip */
.partner-highlight-grid strong{
    font-size:18px;
}

.partner-highlight-grid span{
    font-size:15px;
    line-height:1.7;
}

/* Benefits */
.partner-benefit-card h3{
    font-size:24px;
}

.partner-benefit-card p{
    font-size:16px;
    line-height:1.8;
}

/* Audience */
.partner-audience-grid h3{
    font-size:20px;
}

.partner-audience-grid p{
    font-size:15px;
    line-height:1.8;
}

/* Journey */
.partner-light-desc{
    font-size:17px;
}

.partner-journey-track h3{
    font-size:20px;
}

.partner-journey-track p{
    font-size:15px;
    line-height:1.8;
}

.partner-terms-note{
    font-size:14px;
}

/* Portal */
.partner-portal-points>div{
    font-size:16px;
}

.portal-preview-top span{
    font-size:12px;
}

.portal-preview-top h3{
    font-size:28px;
}

.portal-preview-top small{
    font-size:13px;
}

.portal-preview-grid span{
    font-size:14px;
}

.portal-preview-grid strong{
    font-size:22px;
}

.portal-preview-note{
    font-size:14px;
}

/* Registration */
.partner-registration-intro>p{
    font-size:17px;
}

.partner-form-benefits>div{
    font-size:16px;
}

.partner-form-disclaimer{
    font-size:14px;
    line-height:1.8;
}

/* FAQ */
.pricing-faq .accordion-body{
    font-size:16px;
}

/* =========================================================
   PARTNER HERO REGISTRATION LINK
   ========================================================= */

.partner-mini-flow .partner-flow-registration-link {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 14px 15px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary),
        #4e91ff
    );
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.24);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.partner-mini-flow .partner-flow-registration-link > i:first-child {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    font-size: 17px;
}

.partner-flow-registration-copy {
    display: flex;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    min-width: 0;
}

.partner-flow-registration-copy strong,
.partner-flow-registration-copy span {
    display: block;
}

.partner-flow-registration-copy strong{
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    line-height:1.3;
}

.partner-flow-registration-copy span{
    margin-top:4px;
    color:rgba(255,255,255,.90);
    font-size:15px;
    font-weight:500;
    line-height:1.5;
}


.partner-mini-flow .partner-flow-link-arrow {
    flex: 0 0 auto;
    margin-left: auto;
    color: #ffffff;
    background: transparent;
    font-size: 20px;
}

.partner-mini-flow .partner-flow-registration-link:hover,
.partner-mini-flow .partner-flow-registration-link:focus {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.32);
    transform: translateY(-3px);
}

.partner-mini-flow .partner-flow-registration-link:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

@media (max-width: 575.98px) {
    .partner-mini-flow .partner-flow-registration-link {
        padding: 13px;
    }

    .partner-flow-registration-copy strong {
        font-size: 11px;
    }
}

/* =========================================================
   PARTNER HERO ALIGNMENT AND COMPACT OPPORTUNITY CARD
   ========================================================= */

/* Top-align hero content instead of vertically centring it */
.partner-hero-row {
    align-items: flex-start !important;
}

/* Reduce unnecessary hero vertical space */
.partner-hero {
    padding-top: 68px;
    padding-bottom: 78px;
}

/* Compact corporate card */
.partner-opportunity-card {
    padding: 24px;
    border-radius: 24px;
}

/* Card heading */
.partner-card-heading span {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.4;
}

.partner-card-heading h2 {
    max-width: 440px;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Compact flow spacing */
.partner-mini-flow {
    gap: 5px;
    margin: 18px 0;
}

.partner-mini-flow > div {
    gap: 12px;
    min-height: 58px;
    padding: 10px 13px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 700;
}

/* Smaller icons without losing readability */
.partner-mini-flow > div i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 17px;
}

/* Compact connector arrows */
.partner-mini-flow > i {
    margin-left: 19px;
    font-size: 13px;
    line-height: 1;
}

/* Registration CTA */
.partner-mini-flow .partner-flow-registration-link {
    min-height: 64px;
    padding: 11px 13px;
    border-radius: 13px;
}

.partner-mini-flow .partner-flow-registration-link > i:first-child {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 17px;
}

.partner-flow-registration-copy strong {
    font-size: 18px;
    line-height: 1.25;
}

.partner-flow-registration-copy span {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.4;
}

.partner-mini-flow .partner-flow-link-arrow {
    font-size: 20px;
}

/* Compact onboarding note */
.partner-card-note {
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    border-radius: 13px;
}

.partner-card-note > i {
    flex: 0 0 auto;
    font-size: 20px;
}

.partner-card-note strong {
    font-size: 14px;
    line-height: 1.4;
}

.partner-card-note span {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.55;
}

/* Keep left hero content aligned with the card */
.partner-hero .hero-badge {
    margin-top: 5px;
}

/* Tablet */
@media (max-width: 991.98px) {
    .partner-hero {
        padding-top: 60px;
        padding-bottom: 72px;
    }

    .partner-opportunity-card {
        margin-top: 5px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .partner-hero {
        padding-top: 48px;
        padding-bottom: 65px;
    }

    .partner-card-heading h2 {
        font-size: 26px;
    }

    .partner-opportunity-card {
        padding: 20px;
        border-radius: 21px;
    }

    .partner-mini-flow > div {
        min-height: 55px;
        font-size: 15px;
    }

    .partner-flow-registration-copy strong {
        font-size: 17px;
    }

    .partner-flow-registration-copy span {
        font-size: 12px;
    }
}
