
:root {
    --crimson: #b20f2c;
    --crimson-dark: #860b21;
    --navy: #0b1c3d;
    --navy-deep: #06142e;
    --ink: #182033;
    --muted: #647084;
    --surface: #f5f7fb;
    --line: #dfe5ee;
    --white: #fff;
    --shadow: 0 1rem 2.5rem rgba(6, 20, 46, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .76);
    font-size: .86rem;
}

.navbar {
    box-shadow: 0 .3rem 1.5rem rgba(6, 20, 46, .08);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--navy) !important;
}

.navbar-brand .brand-mark {
    color: var(--crimson);
}

.nav-link {
    color: var(--navy) !important;
    font-weight: 600;
}

.nav-link:hover, .nav-link.active {
    color: var(--crimson) !important;
}

.btn-crimson {
    background: var(--crimson);
    border-color: var(--crimson);
    color: #fff;
}

.btn-crimson:hover {
    background: var(--crimson-dark);
    border-color: var(--crimson-dark);
    color: #fff;
}

.btn-outline-light:hover {
    color: var(--navy);
}

.section-pad {
    padding: 5.5rem 0;
}

.section-kicker {
    color: var(--crimson);
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 800;
}

.section-title {
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -.035em;
}

.lead-copy {
    color: var(--muted);
    max-width: 760px;
}

.hero {
    height: 650px;
    background: var(--navy-deep);
    color: #fff;
    overflow: hidden;
}

.hero .carousel, .hero .carousel-inner, .hero .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem max(2rem, calc((100vw - 1320px) / 2));
    padding-right: 3.5rem;
}

.hero-copy .eyebrow {
    color: #ffbdc9;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .8rem;
}

.hero-copy h1 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.055em;
    margin: 1rem 0 1.25rem;
}

.hero-copy p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    max-width: 640px;
    min-height: 5.2rem;
}

.hero-image {
    position: relative;
    height: 100%;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--navy-deep) 0%, rgba(6, 20, 46, .72) 12%, transparent 45%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    justify-content: flex-start;
    margin-left: max(2rem, calc((100vw - 1320px) / 2));
    margin-right: 0;
}

.feature-card, .solution-card, .industry-card, .resource-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 .55rem 1.8rem rgba(6, 20, 46, .06);
    transition: .25s ease;
}

.feature-card:hover, .solution-card:hover, .industry-card:hover, .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-badge {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(178, 15, 44, .1);
    color: var(--crimson);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.split-panel {
    min-height: 520px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 1rem;
}

.bg-soft {
    background: var(--surface);
}

.bg-navy {
    background: var(--navy-deep);
    color: #fff;
}

.bg-navy .section-title {
    color: #fff;
}

.bg-navy .lead-copy {
    color: rgba(255, 255, 255, .75);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: .46rem 0 .46rem 2rem;
    position: relative;
}

.check-list li::before {
    font-family: "bootstrap-icons";
    content: "\f26e";
    position: absolute;
    left: 0;
    color: var(--crimson);
    font-weight: 700;
}

.page-hero {
    background: linear-gradient(120deg, var(--navy-deep), #122d61);
    color: #fff;
    padding: 5rem 0;
}

.page-hero h1 {
    font-weight: 850;
    letter-spacing: -.045em;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero p {
    color: rgba(255, 255, 255, .78);
    max-width: 780px;
    font-size: 1.15rem;
}

.metric {
    font-size: 2.6rem;
    font-weight: 850;
    color: var(--navy);
}

.pci-panel {
    border-left: 6px solid var(--crimson);
}

.form-frame {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    min-height: 900px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.form-frame iframe {
    width: 100%;
    min-height: 900px;
    border: 0;
    display: block;
}

.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, .72);
}

.footer h5, .footer a {
    color: #fff;
}

.footer a:hover {
    color: #ffbdc9;
}

.footer .brand {
    font-size: 1.35rem;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .hero {
        height: auto;
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns:1fr;
    }

    .hero-copy {
        padding: 4rem 1.5rem 2.5rem;
    }

    .hero-image {
        min-height: 340px;
    }

    .hero-copy p {
        min-height: 0;
    }

    .carousel-indicators {
        margin-left: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .section-pad {
        padding: 4rem 0;
    }

    .hero-copy h1 {
        font-size: 2.65rem;
    }

    .page-hero {
        padding: 4rem 0;
    }
}

.crimson-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.crimson-logo img {
    display: block;
    height: 58px;
    width: auto;
    transition: transform .25s ease;
}

.crimson-logo:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .crimson-logo img {
        height: 48px;
    }
}

@media (max-width: 576px) {
    .crimson-logo img {
        height: 40px;
    }
}

