/* =========================================================
ROOT
========================================================= */

:root {

    --navy: #071a2b;
    --navy-soft: #10283d;
    --navy-light: #17364f;

    --blue: #1f5eff;
    --blue-dark: #1648cc;

    --aqua: #17bebb;
    --aqua-dark: #0f9898;

    --cream: #f7f7f3;
    --cream-dark: #efefe8;

    --white: #ffffff;

    --text: #243544;
    --muted: #6f7c86;

    --line: #dde3e7;

    --serif: "DM Serif Display", serif;
    --sans: "Inter", sans-serif;

    --shadow:
        0 20px 60px rgba(7, 26, 43, 0.08);

    --shadow-lg:
        0 30px 100px rgba(7, 26, 43, 0.14);

}


/* =========================================================
GENERAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: var(--sans);
}

::selection {
    background: var(--blue);
    color: white;
}

.section-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-kicker.light {
    color: #66deda;
}


/* =========================================================
HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(247, 247, 243, 0.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(7, 26, 43, 0.07);
    transition: 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(7, 26, 43, 0.06);
}

.site-header .navbar {
    min-height: 84px;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    background: var(--aqua);
    border-radius: 50%;
    right: -2px;
    top: 2px;
    border: 3px solid var(--cream);
}

.brand-mark span {
    font-family: var(--serif);
    font-size: 22px;
}

.brand-copy strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
}

.brand-copy small {
    display: block;
    color: var(--blue);
    font-size: 12px;
    margin-top: 2px;
    font-weight: 700;
}

.navbar-nav {
    gap: 2px;
}

.nav-link {
    color: #384b59;
    font-size: 13px;
    font-weight: 600;
    padding: 27px 12px !important;
}

.nav-link:hover {
    color: var(--blue);
}

.header-cta {
    margin-left: 22px;
    background: var(--navy);
    color: white;
    padding: 13px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    gap: 9px;
    align-items: center;
}

.header-cta:hover {
    color: white;
    background: var(--blue);
}


/* =========================================================
HERO
========================================================= */

.hero {
    position: relative;
    min-height: 710px;
    padding: 105px 0 105px;
    background: var(--cream);
    overflow: hidden;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.42;

    background-image:
        linear-gradient(
            rgba(7, 26, 43, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 26, 43, 0.035) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 85%
        );
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(31, 94, 255, 0.08),
            transparent 68%
        );
    left: -180px;
    top: -150px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(7, 26, 43, 0.12);
    border-radius: 100px;
    padding: 8px 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    font-size: 10px;
    color: var(--navy);
    background: rgba(255,255,255,.45);
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--aqua);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(56px, 6vw, 86px);
    color: var(--navy);
    line-height: 0.98;
    letter-spacing: -2.2px;
    max-width: 820px;
    margin: 28px 0 28px;
    font-weight: 400;
}

.hero-title em {
    color: var(--blue);
    font-style: italic;
}

.hero-text {
    max-width: 670px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 100px;
    padding: 15px 23px;
    background: var(--blue);
    color: white;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-button:hover {
    background: var(--blue-dark);
    color: white;
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 100px;
    border: 1px solid #cfd7dc;
    color: var(--navy);
    background: transparent;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
}

.secondary-button:hover {
    background: white;
    color: var(--navy);
}

.secondary-button i {
    color: #16a967;
    font-size: 16px;
}

.indexing-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 42px;
    font-size: 11px;
    color: #87919a;
}

.indexing-line strong {
    color: #52616c;
}

.index-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a3adb5;
}


/* JOURNEY */

.journey-panel {
    position: relative;
    background: var(--navy);
    color: white;
    border-radius: 5px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.journey-panel::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 94%;
    right: -18px;
    bottom: -18px;
    border: 1px solid rgba(31, 94, 255, 0.23);
    z-index: -1;
}

.journey-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-bottom: 24px;
}

.panel-label {
    display: block;
    color: #68dcd8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.6px;
    margin-bottom: 8px;
}

.journey-panel h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    margin: 0;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    color: #a7bac7;
    white-space: nowrap;
}

.panel-status span {
    width: 7px;
    height: 7px;
    background: var(--aqua);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(23,190,187,.08);
}

.journey-progress {
    padding: 24px 0 3px;
}

.journey-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    position: relative;
    padding-bottom: 20px;
}

.journey-step::after {
    content: "";
    width: 1px;
    height: calc(100% - 33px);
    position: absolute;
    left: 20px;
    top: 33px;
    background: rgba(255,255,255,.12);
}

.journey-step:last-child::after {
    display: none;
}

.journey-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fa4b3;
    font-size: 10px;
    font-weight: 700;
    background: var(--navy);
    position: relative;
    z-index: 2;
}

.journey-step.completed .journey-number {
    background: var(--aqua);
    color: var(--navy);
    border-color: var(--aqua);
}

.journey-step.active .journey-number {
    border-color: var(--blue);
    background: var(--blue);
    color: white;
}

.journey-step small {
    color: #718a9c;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 8px;
}

.journey-step h3 {
    font-size: 13px;
    font-weight: 700;
    margin: 2px 0 3px;
}

.journey-step p {
    margin: 0;
    color: #91a5b4;
    font-size: 10px;
    line-height: 1.5;
}

.journey-link {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 20px;
    font-size: 11px;
    font-weight: 700;
}

.journey-link:hover {
    color: #69dfdb;
}


/* =========================================================
PATHWAYS
========================================================= */

.pathway-section {
    padding: 95px 0;
    background: white;
}

.pathway-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 45px;
}

.pathway-intro h2 {
    margin: 0;
    font-family: var(--serif);
    color: var(--navy);
    font-size: 48px;
    font-weight: 400;
}

.pathway-intro > p {
    max-width: 390px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 14px;
    margin: 0 0 5px;
}

.path-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 330px;
    padding: 27px;
    border: 1px solid var(--line);
    background: white;
    position: relative;
    transition: 0.3s ease;
    color: var(--navy);
}

.path-card:hover {
    color: var(--navy);
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.path-icon {
    width: 47px;
    height: 47px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 19px;
    margin-bottom: 40px;
}

.path-number {
    position: absolute;
    top: 25px;
    right: 24px;
    color: #a0aab1;
    font-size: 10px;
    font-weight: 700;
}

.path-card h3 {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 13px;
}

.path-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.path-action {
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
    display: flex;
    justify-content: space-between;
}

.path-card-dark {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
}

.path-card-dark:hover {
    color: white;
}

.path-card-dark p {
    color: #96a9b8;
}

.path-card-dark .path-icon {
    border-color: rgba(255,255,255,.15);
    color: #65ddd8;
}

.path-card-dark .path-action {
    color: #65ddd8;
}


/* =========================================================
ASSESSMENT
========================================================= */

.assessment-section {
    background: var(--navy);
    padding: 105px 0;
    position: relative;
    overflow: hidden;
}

.assessment-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    left: -210px;
    bottom: -250px;
}

.assessment-shell {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.assessment-info {
    color: white;
}

.assessment-info h2 {
    font-family: var(--serif);
    font-size: 49px;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 22px;
}

.assessment-info > p {
    color: #9eb0bc;
    line-height: 1.85;
    font-size: 14px;
}

.assessment-benefits {
    margin-top: 30px;
}

.assessment-benefits div {
    color: #d2dde4;
    font-size: 12px;
    margin-bottom: 12px;
}

.assessment-benefits i {
    color: var(--aqua);
    margin-right: 9px;
}

.assessment-note {
    display: flex;
    gap: 13px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.assessment-note > i {
    color: #62dbd6;
    font-size: 24px;
}

.assessment-note strong,
.assessment-note span {
    display: block;
}

.assessment-note strong {
    color: white;
    font-size: 12px;
    margin-bottom: 4px;
}

.assessment-note span {
    color: #8096a5;
    font-size: 10px;
    line-height: 1.5;
}

.assessment-form-wrap {
    background: white;
    padding: 38px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.form-progress {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.form-progress-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9aa5ad;
    letter-spacing: 0.7px;
}

.form-progress-item span {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    border: 1px solid #ccd5db;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-progress-item.active {
    color: var(--navy);
}

.form-progress-item.active span {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.progress-line {
    height: 1px;
    background: var(--line);
    flex: 1;
    margin: 0 14px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: formFade .3s ease;
}

@keyframes formFade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-title {
    margin-bottom: 28px;
}

.form-title > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.form-title h3 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--navy);
    font-size: 30px;
    margin-top: 6px;
}

.back-step {
    border: 0;
    padding: 0;
    background: transparent;
    display: block;
    color: #7d8991;
    font-size: 10px;
    margin-bottom: 15px;
}

.assessment-form-wrap label {
    font-size: 10px;
    font-weight: 700;
    color: #4b5e6b;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.assessment-form-wrap .form-control,
.assessment-form-wrap .form-select {
    min-height: 49px;
    border-radius: 0;
    border: 1px solid #dbe2e6;
    font-size: 12px;
    color: var(--navy);
}

.assessment-form-wrap textarea.form-control {
    min-height: auto;
}

.assessment-form-wrap .form-control:focus,
.assessment-form-wrap .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(31,94,255,.07);
}

.form-primary-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    background: var(--blue);
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.form-primary-btn:hover {
    background: var(--blue-dark);
}

.file-upload-box {
    position: relative;
    min-height: 76px;
    padding: 15px 17px;
    border: 1px dashed #bfcbd3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fafbfb;
}

.file-upload-box > i {
    font-size: 27px;
    color: var(--blue);
}

.file-upload-box strong {
    display: block;
    font-size: 11px;
    color: var(--navy);
}

.file-upload-box small {
    color: #8a969e;
    font-size: 9px;
}

.file-upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.form-privacy {
    text-align: center;
    font-size: 9px;
    color: #8e999f;
    margin-top: 17px;
}


/* =========================================================
SERVICES
========================================================= */

.services-section {
    background: var(--cream);
    padding: 110px 0;
}

.services-heading {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-heading h2 {
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--navy);
    margin: 0;
    max-width: 650px;
}

.services-heading h2 em {
    color: var(--blue);
    font-weight: 400;
}

.services-heading > p {
    max-width: 390px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(265px, auto);
    gap: 15px;
}

.bento-card {
    background: white;
    border: 1px solid var(--line);
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 265px;
    transition: .3s ease;
}

.bento-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.bento-large {
    grid-column: span 2;
    background: #e9edff;
}

.bento-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    overflow: hidden;
}

.bento-number {
    color: #9aa5ac;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.bento-card h3 {
    font-family: var(--serif);
    font-size: 27px;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.1;
    margin: 25px 0 12px;
}

.bento-large h3 {
    font-size: 38px;
    max-width: 430px;
}

.bento-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 12px;
    max-width: 470px;
}

.bento-card a {
    margin-top: auto;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
}

.bento-icon {
    margin-top: 30px;
    font-size: 25px;
    color: var(--blue);
}

.bento-accent {
    background: #eaf9f7;
}

.bento-navy {
    background: var(--navy);
    border-color: var(--navy);
}

.bento-navy h3 {
    color: white;
}

.bento-navy p {
    color: #93a6b4;
}

.bento-navy .bento-icon {
    color: #5edbd6;
}

.bento-navy a {
    color: #5edbd6;
}

.document-stack {
    position: relative;
}

.doc-card {
    position: absolute;
    width: 145px;
    height: 185px;
    padding: 18px;
    border: 1px solid #dce2e6;
    background: white;
    box-shadow: 0 10px 30px rgba(7,26,43,.08);
    right: 0;
    bottom: -65px;
}

.doc-card::after {
    content: "";
    display: block;
    width: 65%;
    height: 1px;
    background: #dce2e6;
    margin-top: 16px;
    box-shadow:
        0 15px #dce2e6,
        0 30px #dce2e6,
        0 45px #dce2e6;
}

.doc-card span {
    font-size: 7px;
    font-weight: 800;
    color: var(--navy);
}

.doc-one {
    transform: rotate(-8deg);
    right: 100px;
}

.doc-two {
    transform: rotate(4deg);
    right: 45px;
}

.doc-three {
    transform: rotate(10deg);
    right: -10px;
}


/* =========================================================
REJECTION
========================================================= */

.rejection-feature {
    background: var(--navy);
    padding: 110px 0;
    color: white;
}

.rejection-feature h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 55px;
    line-height: 1.05;
    max-width: 650px;
}

.rejection-feature h2 em {
    display: block;
    font-weight: 400;
    color: #68dbd7;
}

.rejection-feature .col-lg-6 > p {
    color: #96aab8;
    line-height: 1.85;
    max-width: 580px;
    font-size: 14px;
    margin: 25px 0 32px;
}

.light-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: white;
    color: var(--navy);
    border-radius: 100px;
    padding: 15px 22px;
    font-size: 12px;
    font-weight: 800;
}

.light-button:hover {
    color: var(--blue);
}

.rejection-roadmap {
    border-top: 1px solid rgba(255,255,255,.13);
}

.roadmap-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.roadmap-row > span {
    color: #62d9d5;
    font-size: 9px;
    font-weight: 800;
}

.roadmap-row strong {
    display: block;
    color: white;
    font-size: 13px;
    margin-bottom: 5px;
}

.roadmap-row p {
    margin: 0;
    color: #8096a5;
    font-size: 11px;
}


/* =========================================================
REVIEWER
========================================================= */

.reviewer-section {
    padding: 110px 0;
    background: white;
}

.reviewer-shell {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    border: 1px solid var(--line);
}

.reviewer-quote {
    background: #e9edff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    font-family: var(--serif);
    font-size: 70px;
    color: var(--blue);
    height: 55px;
}

.reviewer-quote p {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 29px;
    line-height: 1.3;
}

.reviewer-quote span {
    margin-top: 25px;
    color: #7d8994;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviewer-content {
    padding: 60px;
}

.reviewer-content h2 {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--navy);
    font-size: 42px;
    line-height: 1.08;
}

.reviewer-content h2 em {
    color: var(--blue);
    font-weight: 400;
}

.reviewer-content > p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}

.reviewer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 30px;
}

.reviewer-tags span {
    border: 1px solid var(--line);
    padding: 8px 11px;
    border-radius: 100px;
    font-size: 9px;
    color: #596973;
}

.text-link {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.text-link:hover {
    color: var(--blue-dark);
}


/* =========================================================
PROCESS
========================================================= */

.process-section {
    padding: 110px 0;
    background: var(--cream);
}

.process-sticky {
    position: sticky;
    top: 130px;
}

.process-sticky h2 {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 51px;
    line-height: 1.05;
    font-weight: 400;
}

.process-sticky > p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
    max-width: 400px;
    margin: 25px 0 30px;
}

.timeline {
    border-top: 1px solid #cfd7dc;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 25px;
    padding: 37px 0;
    border-bottom: 1px solid #cfd7dc;
}

.timeline-number {
    font-family: var(--serif);
    color: #abb4ba;
    font-size: 33px;
}

.timeline-copy span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.timeline-copy h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--navy);
    margin: 6px 0 9px;
}

.timeline-copy p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
    max-width: 570px;
    margin: 0;
}


/* =========================================================
WHY US
========================================================= */

.why-section {
    padding: 110px 0;
    background: white;
}

.why-header {
    max-width: 730px;
    margin-bottom: 50px;
}

.why-header h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 50px;
    color: var(--navy);
    line-height: 1.05;
}

.why-card {
    min-height: 280px;
    border-top: 2px solid var(--navy);
    padding: 25px 5px;
}

.why-card > span {
    display: block;
    color: #9ba6ad;
    font-size: 9px;
    font-weight: 800;
}

.why-card > i {
    color: var(--blue);
    font-size: 26px;
    display: block;
    margin: 42px 0 20px;
}

.why-card h3 {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 24px;
    font-weight: 400;
}

.why-card p {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.75;
}


/* =========================================================
TRANSPARENCY
========================================================= */

.transparency-section {
    background: var(--cream);
    padding: 105px 0;
}

.transparency-shell {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.transparency-heading h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 45px;
    line-height: 1.05;
    color: var(--navy);
}

.transparency-heading p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.transparency-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.transparency-card {
    padding: 30px;
    min-height: 310px;
}

.transparency-card.positive {
    background: #e8f8f5;
}

.transparency-card.neutral {
    background: white;
    border: 1px solid var(--line);
}

.transparency-card h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 25px;
    color: var(--navy);
    margin-bottom: 25px;
}

.transparency-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transparency-card li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: #53636f;
    font-size: 11px;
}

.transparency-card.positive i {
    color: var(--aqua-dark);
}

.transparency-card.neutral i {
    color: #9fa9af;
}


/* =========================================================
FAQ
========================================================= */

.faq-section {
    padding: 110px 0;
    background: white;
}

.faq-heading h2 {
    font-family: var(--serif);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--navy);
}

.faq-heading p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
    margin: 22px 0;
}

.faq-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
}

.faq-accordion .accordion-button {
    padding: 23px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue);
}

.faq-accordion .accordion-body {
    padding: 0 0 25px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
FINAL CTA
========================================================= */

.final-cta-section {
    background: white;
    padding: 0 0 90px;
}

.final-cta-shell {
    background: var(--blue);
    padding: 55px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta-shell > div:first-child {
    max-width: 690px;
}

.final-cta-shell span {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 9px;
    color: #cdd8ff;
}

.final-cta-shell h2 {
    font-family: var(--serif);
    font-size: 45px;
    font-weight: 400;
}

.final-cta-shell p {
    margin: 0;
    color: #d8e1ff;
    font-size: 12px;
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    gap: 9px;
    flex-shrink: 0;
}

.white-button,
.outline-light-button {
    border-radius: 100px;
    padding: 14px 19px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.white-button {
    background: white;
    color: var(--blue);
}

.outline-light-button {
    border: 1px solid rgba(255,255,255,.6);
    color: white;
}

.outline-light-button:hover {
    background: white;
    color: var(--blue);
}


/* =========================================================
FOOTER
========================================================= */

.footer {
    background: var(--navy);
    padding: 75px 0 30px;
    color: #93a7b5;
}

.footer .brand-mark {
    background: white;
    color: var(--navy);
}

.footer .brand-mark::after {
    border-color: var(--navy);
}

.footer .brand-copy strong {
    color: white;
}

.footer .brand-copy small {
    color: #69dbd7;
}

.footer-about {
    max-width: 340px;
    font-size: 11px;
    line-height: 1.8;
    margin-top: 20px;
}

.footer h3 {
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer a:not(.footer-brand) {
    display: block;
    color: #8ca1af;
    margin: 11px 0;
    font-size: 10px;
}

.footer a:hover {
    color: white;
}

.footer p {
    font-size: 11px;
    line-height: 1.8;
}

.footer-assessment-link {
    color: #64dad5 !important;
    font-weight: 800 !important;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 55px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-disclaimer {
    margin-top: 25px;
    font-size: 8px;
    line-height: 1.7;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #718897;
}


/* =========================================================
FLOATING WHATSAPP - LEFT SIDE
========================================================= */

.floating-whatsapp {
    position: fixed;

    left: 22px;
    right: auto;

    bottom: 22px;

    z-index: 1050;

    min-height: 58px;

    background: #20c66b;

    color: #ffffff;

    padding: 8px 17px 8px 8px;

    border-radius: 100px;

    display: flex;
    align-items: center;
    gap: 11px;

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.floating-whatsapp:hover {
    color: #ffffff;

    background: #18b65e;

    transform: translateY(-4px);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.24);
}


/* ICON */

.whatsapp-icon-wrap {
    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.16);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    flex-shrink: 0;
}


.whatsapp-icon-wrap > i {
    font-size: 23px;
}


/* ONLINE DOT */

.whatsapp-online-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    right: 0;
    top: 0;

    background: #ffffff;

    border-radius: 50%;

    border: 2px solid #20c66b;
}


/* TEXT */

.whatsapp-widget-text {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}


.whatsapp-widget-text small {
    color: rgba(255, 255, 255, 0.82);

    font-size: 8px;

    margin-bottom: 3px;
}


.whatsapp-widget-text strong {
    color: #ffffff;

    font-size: 11px;

    font-weight: 800;
}


/* PULSE EFFECT */

.floating-whatsapp::before {
    content: "";

    position: absolute;

    width: 50px;
    height: 50px;

    left: 4px;
    top: 4px;

    border-radius: 50%;

    border: 2px solid rgba(32, 198, 107, 0.35);

    animation: whatsappPulse 2s infinite;

    pointer-events: none;
}


@keyframes whatsappPulse {

    0% {

        transform: scale(0.9);

        opacity: 1;

    }

    70% {

        transform: scale(1.45);

        opacity: 0;

    }

    100% {

        transform: scale(1.45);

        opacity: 0;

    }

}


/* =========================================================
MOBILE CTA
========================================================= */

.mobile-conversion-bar {
    display: none;
}


/* =========================================================
SUCCESS MODAL
========================================================= */

.success-modal {
    border: 0;
    border-radius: 4px;
    padding: 35px;
    text-align: center;
}

.success-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #e7f8f4;
    color: var(--aqua-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px auto 20px;
    font-size: 26px;
}

.success-modal h3 {
    font-family: var(--serif);
    color: var(--navy);
    font-weight: 400;
    font-size: 31px;
}

.success-modal p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 12px;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 1199px) {

    .hero-title {
        font-size: 62px;
    }

    .assessment-shell {
        gap: 45px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large,
    .bento-wide {
        grid-column: span 2;
    }

}


/* =========================================================
MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    body {
        padding-bottom: 66px;
    }

    .site-header .navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        padding-bottom: 22px;
    }

    .nav-link {
        padding: 11px 0 !important;
    }

    .header-cta {
        margin: 10px 0 0;
    }

    .hero {
        padding: 70px 0 90px;
    }

    .journey-panel {
        max-width: 600px;
    }

    .pathway-intro,
    .services-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .assessment-shell {
        grid-template-columns: 1fr;
    }

    .reviewer-shell {
        grid-template-columns: 1fr;
    }

    .transparency-shell {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-sticky {
        position: static;
    }

    .final-cta-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .mobile-conversion-bar {
        position: fixed;
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        left: 0;
        right: 0;
        bottom: 0;
        height: 66px;
        z-index: 1100;
        box-shadow: 0 -8px 30px rgba(7,26,43,.14);
    }

    .mobile-conversion-bar a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        font-size: 11px;
        font-weight: 800;
    }

    .mobile-whatsapp {
        background: #20c66b;
        color: white;
    }

    .mobile-assessment {
        background: var(--blue);
        color: white;
    }

@media (max-width: 991px) {

    .floating-whatsapp {

        display: flex;

        width: 54px;
        height: 54px;

        min-height: 54px;

        padding: 5px;

        left: 15px;

        bottom: 80px;

        border-radius: 50%;

        justify-content: center;

    }


    .floating-whatsapp::before {

        width: 50px;
        height: 50px;

        left: 2px;
        top: 2px;

    }


    .whatsapp-icon-wrap {

        width: 44px;
        height: 44px;

        background: transparent;

    }


    .whatsapp-widget-text {
        display: none;
    }

}    

}


/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 767px) {

    .brand-copy strong {
        font-size: 12px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
    }

    .indexing-line {
        line-height: 1.8;
    }

    .journey-panel {
        padding: 24px;
    }

    .journey-panel h2 {
        font-size: 24px;
    }

    .pathway-section,
    .services-section,
    .reviewer-section,
    .process-section,
    .why-section,
    .transparency-section,
    .faq-section,
    .rejection-feature,
    .assessment-section {
        padding: 80px 0;
    }

    .pathway-intro h2,
    .services-heading h2,
    .why-header h2,
    .faq-heading h2,
    .transparency-heading h2,
    .process-sticky h2 {
        font-size: 38px;
    }

    .assessment-info h2,
    .rejection-feature h2 {
        font-size: 41px;
    }

    .assessment-form-wrap {
        padding: 25px 19px;
    }

    .bento-grid {
        display: block;
    }

    .bento-card {
        margin-bottom: 14px;
    }

    .bento-large h3 {
        font-size: 30px;
    }

    .bento-wide {
        display: block;
        min-height: 420px;
    }

    .document-stack {
        min-height: 180px;
        margin-top: 20px;
    }

    .reviewer-quote,
    .reviewer-content {
        padding: 35px 25px;
    }

    .reviewer-quote p {
        font-size: 24px;
    }

    .reviewer-content h2 {
        font-size: 34px;
    }

    .timeline-item {
        grid-template-columns: 55px 1fr;
        gap: 14px;
    }

    .timeline-copy h3 {
        font-size: 24px;
    }

    .transparency-columns {
        grid-template-columns: 1fr;
    }

    .final-cta-shell {
        padding: 36px 25px;
    }

    .final-cta-shell h2 {
        font-size: 36px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .final-cta-actions a {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}