﻿/* Megakron reusable info content sections */
@font-face {
    font-family: "Ibrand";
    src: url("../fonts/Ibrand.woff2") format("woff2"), url("../fonts/Ibrand.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roadsley";
    src: url("../fonts/Roadsley.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --info-blue: #1264bd;
    --info-blue-bright: #2a83ff;
    --info-dark: #071225;
    --info-dark-2: #101420;
    --info-white: #ffffff;
    --info-ink: #07111f;
    --info-muted: #5d6470;
}

.info-content-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.info-container {
    position: relative;
    z-index: 1;
}

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--info-blue);
    font-family: "Roadsley", "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 22px;
}

.info-eyebrow::before,
.info-eyebrow::after {
    content: "";
    display: inline-block;
    width: 54px;
    height: 13px;
    flex: 0 0 54px;
    background:
        linear-gradient(currentColor, currentColor) left 2px / 40px 2px no-repeat,
        linear-gradient(currentColor, currentColor) left 10px / 24px 1px no-repeat;
}

.info-eyebrow::after {
    background-position: right 2px, right 10px;
}

.info-title {
    font-family: "Ibrand", "Plus Jakarta Sans", sans-serif;
    letter-spacing: 0.025em;
    font-kerning: none;
    font-variant-ligatures: none;
    font-feature-settings: "kern" 0, "liga" 0;
    line-height: 1.08;
    margin-bottom: 20px;
}

.info-copy {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
}

.info-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.info-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(108, 169, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20), 0 0 34px rgba(18, 100, 189, 0.10);
}

.info-media-card img,
.info-split-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.info-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 26px 24px;
    border-radius: 10px;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--info-blue-bright), transparent);
}

.info-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #2488ff, #0b3f8a);
    color: #fff;
    box-shadow: 0 14px 28px rgba(18, 100, 189, 0.28);
}

.info-card h3 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 10px;
}

.info-card p {
    line-height: 1.65;
    margin-bottom: 0;
}

.info-card:hover {
    transform: translateY(-7px);
}

/* info-content-one: primary white option */
.info-content-one {
    background: #fff;
    padding: 96px 0;
}

.info-content-one::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -200px;
    border-radius: 50%;
    background: rgba(18, 100, 189, 0.08);
    pointer-events: none;
}

.info-content-one .info-title {
    color: var(--info-ink);
}

.info-content-one .info-copy,
.info-content-one .info-card p {
    color: var(--info-muted);
}

.info-content-one .info-card {
    border: 1px solid rgba(18, 28, 45, 0.10);
    background: linear-gradient(145deg, #ffffff, #f6f9ff);
    box-shadow: 0 18px 42px rgba(9, 20, 39, 0.08);
}

.info-content-one .info-card h3 {
    color: var(--info-ink);
}

.info-content-one .info-card:hover {
    border-color: rgba(18, 100, 189, 0.32);
    box-shadow: 0 24px 56px rgba(18, 100, 189, 0.14);
}

/* info-content-two: dark blue current/secondary option */
.info-content-two {
    min-height: 680px;
    padding: 108px 0;
    background: radial-gradient(circle at 10% 12%, rgba(42, 131, 255, 0.24), transparent 34%), linear-gradient(135deg, #081225 0%, #101420 56%, #061a3c 100%);
}

.info-content-two::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 38%, rgba(42, 131, 255, 0.08));
    pointer-events: none;
}

.info-content-two .info-eyebrow {
    color: #72adff;
}

.info-content-two .info-title {
    color: #fff;
}

.info-content-two .info-copy {
    color: rgba(230, 238, 255, 0.78);
}

.info-content-two .info-media-card {
    aspect-ratio: 16 / 7;
    margin-bottom: 32px;
}

.info-content-two .info-card {
    border: 1px solid rgba(108, 169, 255, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.info-content-two .info-card h3 {
    color: #fff;
}

.info-content-two .info-card p {
    color: rgba(230, 238, 255, 0.76);
}

.info-content-two .info-card:hover {
    border-color: rgba(108, 169, 255, 0.58);
    background: linear-gradient(145deg, rgba(18, 100, 189, 0.78), rgba(7, 17, 40, 0.98));
    box-shadow: 0 26px 62px rgba(18, 100, 189, 0.24), 0 12px 28px rgba(0, 0, 0, 0.30);
}

/* info-content-three: full-height split image options */
.info-content-three {
    min-height: 100vh;
    padding: 0;
}

.info-content-three .container-fluid,
.info-content-three .row {
    min-height: 100vh;
}

.info-content-three .row {
    margin-left: 0;
    margin-right: 0;
}

.info-content-three [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.info-content-three .info-split-media {
    height: 100vh;
    min-height: 640px;
}

.info-content-three .info-split-copy {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 90px clamp(28px, 6vw, 96px);
}

.info-content-three .info-split-inner {
    max-width: 660px;
}

.info-content-three--dark {
    background: #071225;
}

.info-content-three--dark .info-split-copy {
    background: radial-gradient(circle at 0% 10%, rgba(42, 131, 255, 0.20), transparent 35%), #071225;
}

.info-content-three--dark .info-eyebrow {
    color: #72adff;
}

.info-content-three--dark .info-title {
    color: #fff;
}

.info-content-three--dark .info-copy {
    color: rgba(230, 238, 255, 0.78);
}

.info-content-three--light .info-split-copy {
    background: #fff;
}

.info-content-three--light .info-title {
    color: var(--info-ink);
}

.info-content-three--light .info-copy {
    color: var(--info-muted);
}

/* info-content-five: designed option */
.info-content-five,
.info-content-five-dark {
    padding: 94px 0;
}

.info-content-five {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.info-content-five-dark {
    background: radial-gradient(circle at 82% 12%, rgba(42, 131, 255, 0.22), transparent 32%), #071225;
}

.info-content-five .info-title {
    color: var(--info-ink);
}

.info-content-five .info-copy {
    color: var(--info-muted);
}

.info-content-five-dark .info-eyebrow {
    color: #72adff;
}

.info-content-five-dark .info-title {
    color: #fff;
}

.info-content-five-dark .info-copy {
    color: rgba(230, 238, 255, 0.78);
}

.info-feature-list {
    display: grid;
    gap: 14px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.info-feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 700;
}

.info-feature-list i {
    color: var(--info-blue-bright);
    margin-top: 4px;
}

.info-content-five .info-feature-list li {
    color: #263241;
}

.info-content-five-dark .info-feature-list li {
    color: rgba(255, 255, 255, 0.86);
}

.info-metric-card {
    height: 100%;
    min-height: 170px;
    padding: 26px;
    border-radius: 12px;
    border: 1px solid rgba(108, 169, 255, 0.20);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.info-content-five .info-metric-card {
    background: #fff;
    box-shadow: 0 18px 42px rgba(9, 20, 39, 0.08);
}

.info-metric-card strong {
    display: block;
    color: var(--info-blue-bright);
    font-size: 38px;
    line-height: 1;
    margin-bottom: 10px;
}

.info-content-five .info-metric-card span {
    color: var(--info-muted);
}

.info-content-five-dark .info-metric-card span {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1199px) {
    .info-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .info-content-three,
    .info-content-three .container-fluid,
    .info-content-three .row,
    .info-content-three .info-split-copy {
        min-height: 0;
    }

    .info-content-three .info-split-media {
        height: 56vh;
        min-height: 360px;
    }

    .info-content-three .info-split-copy {
        padding: 64px 28px;
    }
}

@media (max-width: 767px) {
    .info-content-one,
    .info-content-two,
    .info-content-five,
    .info-content-five-dark {
        padding: 72px 0;
    }

    .info-eyebrow {
        gap: 10px;
        font-size: 16px;
    }

    .info-eyebrow::before,
    .info-eyebrow::after {
        width: 34px;
        flex-basis: 34px;
        background-size: 28px 2px, 18px 1px;
    }

    .info-card {
        min-height: 0;
        padding: 24px 22px;
    }
}

/* info-content-four: reference-style white image/content layout */
.info-content-four {
    padding: 100px 0;
    background: #fff;
}

.info-content-four .info-composition {
    position: relative;
    min-height: 520px;
}

.info-content-four .info-composition-main {
    position: absolute;
    inset: 0 0 70px 90px;
    border-radius: 12px;
    overflow: hidden;
    background: #e9edf3;
}

.info-content-four .info-composition-main img,
.info-content-four .info-composition-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content-four .info-composition-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44%;
    min-width: 220px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 24px 50px rgba(9, 20, 39, 0.14);
}

.info-content-four .info-experience-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 250px;
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    border-radius: 10px;
    background: var(--info-blue);
    color: #fff;
    box-shadow: 0 22px 44px rgba(18, 100, 189, 0.22);
}

.info-content-four .info-experience-badge strong {
    font-family: "Ibrand", "Plus Jakarta Sans", sans-serif;
    font-size: 46px;
    line-height: 1;
}

.info-content-four .info-experience-badge span {
    font-weight: 800;
    line-height: 1.25;
}

.info-content-four .info-title {
    color: var(--info-ink);
}

.info-content-four .info-copy {
    color: var(--info-muted);
}

.info-content-four .info-percent-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin: 30px 0;
}

.info-content-four .info-percent-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.info-content-four .info-percent-circle {
    width: 94px;
    height: 94px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 94px;
    border-radius: 50%;
    border: 5px solid var(--info-blue);
    color: var(--info-ink);
    font-weight: 900;
    font-size: 20px;
    box-shadow: inset 0 0 0 5px #fff, 0 12px 26px rgba(18, 100, 189, 0.14);
}

.info-content-four .info-percent-item h3 {
    color: var(--info-ink);
    font-size: 22px;
    line-height: 1.22;
    margin: 0;
}

@media (max-width: 991px) {
    .info-content-four .info-composition {
        min-height: 440px;
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .info-content-four {
        padding: 72px 0;
    }

    .info-content-four .info-composition {
        min-height: 360px;
    }

    .info-content-four .info-composition-main {
        inset: 0 0 82px 32px;
    }

    .info-content-four .info-composition-small {
        width: 52%;
        min-width: 170px;
        border-width: 7px;
    }

    .info-content-four .info-experience-badge {
        min-width: 188px;
        padding: 16px 18px;
    }

    .info-content-four .info-percent-row {
        grid-template-columns: 1fr;
    }
}

/* Half-height split preview variant */
.info-content-three--half,
.info-content-three--half .container-fluid,
.info-content-three--half .row,
.info-content-three--half .info-split-copy {
    min-height: 50vh;
}

.info-content-three--half .info-split-media {
    height: 50vh;
    min-height: 420px;
}

/* info-content-six: text-heavy SEO white */
.info-content-six {
    padding: 96px 0;
    background: #fff;
}

.info-content-six .info-title {
    color: var(--info-ink);
}

.info-content-six .info-copy,
.info-content-six .info-seo-text p {
    color: var(--info-muted);
}

.info-seo-text {
    column-count: 2;
    column-gap: 46px;
}

.info-seo-text p {
    break-inside: avoid;
    font-size: 16px;
    line-height: 1.78;
    margin-bottom: 18px;
}

.info-keyword-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.info-keyword-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(18, 100, 189, 0.09);
    color: var(--info-blue);
    font-weight: 800;
    font-size: 13px;
}

/* info-content-seven: text-heavy SEO dark */
.info-content-seven {
    padding: 104px 0;
    background: radial-gradient(circle at 78% 16%, rgba(42, 131, 255, 0.20), transparent 32%), #071225;
}

.info-content-seven .info-eyebrow {
    color: #72adff;
}

.info-content-seven .info-title {
    color: #fff;
}

.info-content-seven .info-copy,
.info-content-seven .info-seo-text p {
    color: rgba(230, 238, 255, 0.78);
}

.info-content-seven .info-keyword-row span {
    background: rgba(42, 131, 255, 0.14);
    color: #9fcaff;
    border: 1px solid rgba(108, 169, 255, 0.20);
}

/* info-content-eight: FAQ/article SEO blocks */
.info-content-eight {
    padding: 96px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.info-content-eight .info-title {
    color: var(--info-ink);
}

.info-answer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.info-answer-card {
    height: 100%;
    padding: 28px 26px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(18, 28, 45, 0.10);
    box-shadow: 0 18px 42px rgba(9, 20, 39, 0.07);
}

.info-answer-card h3 {
    color: var(--info-ink);
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.info-answer-card p {
    color: var(--info-muted);
    line-height: 1.72;
    margin-bottom: 0;
}

/* info-content-nine: image backed callout */
.info-content-nine {
    padding: 108px 0;
    background: #071225;
}

.info-image-callout {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(108, 169, 255, 0.22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.info-image-callout > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-image-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 10, 22, 0.92), rgba(4, 10, 22, 0.54), rgba(18, 100, 189, 0.18));
}

.info-image-callout-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: clamp(34px, 6vw, 72px);
}

.info-image-callout-content .info-eyebrow {
    color: #9fcaff;
}

.info-image-callout-content .info-title {
    color: #fff;
}

.info-image-callout-content .info-copy {
    color: rgba(255, 255, 255, 0.80);
}

/* info-content-ten: reference composition image/content */
.info-content-ten {
    padding: 104px 0;
    background: #fff;
}

.info-content-ten .info-title {
    color: var(--info-ink);
}

.info-content-ten .info-copy {
    color: var(--info-muted);
}

.info-ten-composition {
    position: relative;
    min-height: 560px;
}

.info-ten-main {
    position: absolute;
    left: 90px;
    top: 0;
    width: 64%;
    height: 72%;
    border-radius: 12px;
    overflow: hidden;
    background: #e7e8ea;
}

.info-ten-main img,
.info-ten-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-ten-red-angle {
    position: absolute;
    left: 58%;
    top: 0;
    width: 150px;
    height: 72%;
    background: linear-gradient(145deg, #1264bd, #003f91);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.info-ten-play {
    position: absolute;
    left: calc(58% + 54px);
    top: 30%;
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--info-blue);
    box-shadow: 0 18px 48px rgba(18, 100, 189, 0.22);
}

.info-ten-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 44%;
    border-radius: 12px;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 24px 54px rgba(9, 20, 39, 0.14);
}

.info-ten-badge {
    position: absolute;
    left: 90px;
    bottom: 0;
    min-width: 250px;
    min-height: 116px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    border-radius: 10px;
    background: var(--info-blue);
    color: #fff;
}

.info-ten-badge strong {
    font-family: "Ibrand", "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    line-height: 1;
}

.info-ten-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.info-ten-support {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-ten-support i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    border-radius: 50%;
    background: var(--info-blue);
    color: #fff;
    box-shadow: 0 16px 34px rgba(18, 100, 189, 0.20);
}

.info-ten-support h3 {
    color: var(--info-ink);
    font-size: 21px;
    margin-bottom: 6px;
}

.info-ten-support p {
    color: var(--info-muted);
    line-height: 1.58;
    margin: 0;
}

@media (max-width: 991px) {
    .info-seo-text {
        column-count: 1;
    }

    .info-answer-grid,
    .info-ten-support-grid {
        grid-template-columns: 1fr;
    }

    .info-ten-composition {
        min-height: 480px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .info-content-six,
    .info-content-seven,
    .info-content-eight,
    .info-content-nine,
    .info-content-ten {
        padding: 72px 0;
    }

    .info-content-three--half,
    .info-content-three--half .container-fluid,
    .info-content-three--half .row,
    .info-content-three--half .info-split-copy {
        min-height: 0;
    }

    .info-content-three--half .info-split-media {
        height: 42vh;
        min-height: 300px;
    }

    .info-ten-main {
        left: 28px;
        width: 72%;
    }

    .info-ten-red-angle {
        left: 62%;
        width: 92px;
    }

    .info-ten-play {
        left: calc(62% + 24px);
        width: 72px;
        height: 72px;
    }

    .info-ten-secondary {
        width: 58%;
        border-width: 7px;
    }

    .info-ten-badge {
        left: 28px;
        min-width: 190px;
        padding: 18px;
    }
}

/* 2026-06-29b refinements */

/* 2026-06 refinements for options six through eleven */
.info-content-six-dark {
    padding: 96px 0;
    background: radial-gradient(circle at 12% 12%, rgba(42, 131, 255, 0.18), transparent 34%), #071225;
}

.info-content-six-dark .info-eyebrow,
.info-content-seven .info-eyebrow,
.info-content-eleven .info-eyebrow {
    color: #72adff;
}

.info-content-six-dark .info-title,
.info-content-eleven .info-title {
    color: #fff;
}

.info-content-six-dark .info-copy,
.info-content-six-dark .info-seo-two-col p,
.info-content-eleven .info-copy {
    color: rgba(230, 238, 255, 0.78);
}

.info-seo-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.info-seo-column {
    padding: 28px;
    border-radius: 12px;
    border: 1px solid rgba(18, 100, 189, 0.14);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 42px rgba(9, 20, 39, 0.06);
}

.info-content-six-dark .info-seo-column,
.info-content-seven .info-seo-column {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(108, 169, 255, 0.20);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.info-seo-column h3 {
    color: var(--info-ink);
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.info-content-six-dark .info-seo-column h3,
.info-content-seven .info-seo-column h3 {
    color: #fff;
}

.info-seo-column p {
    color: var(--info-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.info-content-seven {
    background:
        radial-gradient(circle at 12% 20%, rgba(42, 131, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #071225 0%, #101420 62%, #061a3c 100%);
}

.info-seven-track {
    position: relative;
    padding-left: 34px;
    border-left: 2px solid rgba(108, 169, 255, 0.28);
}

.info-seven-item {
    position: relative;
    padding: 0 0 28px;
}

.info-seven-item::before {
    content: "";
    position: absolute;
    left: -43px;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2a83ff;
    box-shadow: 0 0 0 8px rgba(42, 131, 255, 0.12), 0 0 18px rgba(42, 131, 255, 0.48);
}

.info-seven-item h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.info-seven-item p {
    color: rgba(230, 238, 255, 0.78);
    line-height: 1.72;
    margin-bottom: 0;
}

.info-content-eight {
    background: #f7f9fc;
}

.info-eight-wide,
.info-eight-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(18, 100, 189, 0.18);
    background: #071225;
    box-shadow: 0 24px 56px rgba(9, 20, 39, 0.14);
}

.info-eight-wide {
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    margin-top: 38px;
}

.info-eight-card {
    min-height: 330px;
    display: flex;
    align-items: flex-end;
}

.info-eight-wide img,
.info-eight-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    transform: scale(1.02);
}

.info-eight-wide::before,
.info-eight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 28, 0.94), rgba(5, 12, 28, 0.58), rgba(18, 100, 189, 0.22));
    z-index: 1;
}

.info-eight-content {
    position: relative;
    z-index: 2;
    padding: clamp(28px, 4vw, 46px);
}

.info-eight-content h3 {
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    margin-bottom: 14px;
}

.info-eight-card .info-eight-content h3 {
    font-size: 26px;
}

.info-eight-content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 0;
}

.info-content-nine .info-image-callout > img {
    opacity: 0.58;
}

.info-content-nine .info-image-callout::before {
    background: linear-gradient(90deg, rgba(2, 7, 18, 0.94), rgba(2, 7, 18, 0.66), rgba(18, 100, 189, 0.22));
}

.info-content-nine-right {
    padding: 108px 0;
    background: #071225;
}

.info-nine-right-panel {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(108, 169, 255, 0.22);
    background: linear-gradient(135deg, #081225, #101420);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

.info-nine-right-panel .info-copy-side {
    padding: clamp(34px, 5vw, 64px);
}

.info-nine-right-panel .info-image-side {
    min-height: 500px;
    height: 100%;
    position: relative;
}

.info-nine-right-panel .info-image-side img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.info-nine-right-panel .info-eyebrow {
    color: #72adff;
}

.info-nine-right-panel .info-title {
    color: #fff;
}

.info-nine-right-panel .info-copy {
    color: rgba(230, 238, 255, 0.78);
}

.info-content-ten .info-ten-composition {
    min-height: 560px;
}

.info-content-ten .info-ten-red-angle {
    display: none;
}

.info-ten-modern-frame {
    position: absolute;
    inset: 28px 0 78px 54px;
    border-radius: 18px;
    border: 1px solid rgba(18, 100, 189, 0.20);
    background: linear-gradient(135deg, rgba(18, 100, 189, 0.10), rgba(255,255,255,0.02));
    box-shadow: 0 26px 60px rgba(9, 20, 39, 0.14);
}

.info-content-ten .info-ten-main {
    left: 84px;
    top: 0;
    width: 68%;
    height: 70%;
    border-radius: 18px;
    box-shadow: 0 24px 54px rgba(9, 20, 39, 0.16);
}

.info-content-ten .info-ten-play {
    left: auto;
    right: 72px;
    top: 40%;
    background: #1264bd;
    color: #fff;
    box-shadow: 0 18px 48px rgba(18, 100, 189, 0.34);
}

.info-content-ten .info-ten-secondary {
    right: 0;
    bottom: 22px;
    width: 46%;
    height: 38%;
    border-radius: 16px;
}

.info-content-ten .info-ten-badge {
    left: 34px;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #1264bd, #061b43);
    box-shadow: 0 22px 44px rgba(18, 100, 189, 0.25);
}

.info-content-eleven {
    padding: 108px 0;
    background:
        linear-gradient(90deg, #071225 0%, #071225 58%, #f7f9fc 58%, #f7f9fc 100%);
}

.info-eleven-panel {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(9, 20, 39, 0.16);
}

.info-eleven-copy {
    padding: clamp(34px, 5vw, 70px);
    background: radial-gradient(circle at 0% 20%, rgba(42, 131, 255, 0.14), transparent 36%), #071225;
    height: 100%;
}

.info-eleven-image {
    position: relative;
    min-height: 560px;
    height: 100%;
}

.info-eleven-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-eleven-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,18,37,0.28), transparent 44%);
    z-index: 1;
}

.info-eleven-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.info-eleven-spec {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(108, 169, 255, 0.20);
    background: rgba(255,255,255,0.08);
}

.info-eleven-spec strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 7px;
}

.info-eleven-spec span {
    color: rgba(230, 238, 255, 0.72);
    font-size: 13px;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .info-seo-two-col,
    .info-eleven-specs {
        grid-template-columns: 1fr;
    }

    .info-nine-right-panel .info-image-side,
    .info-eleven-image {
        min-height: 360px;
    }

    .info-content-eleven {
        background: #071225;
    }
}

/* 2026-06-29c reusable info-content library refinements */
.info-content-two .info-media-card {
    aspect-ratio: 16 / 9;
    min-height: 360px;
}

.info-content-two .info-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.info-content-two .info-card {
    min-height: 150px;
    padding: 22px 24px;
}

.info-content-two .info-card i {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
}

.info-content-two .info-card h3 {
    font-size: 19px;
}

.info-content-two-white {
    padding: 96px 0;
    background: #fff;
}

.info-content-two-white .info-title,
.info-content-two-white .info-two-table-row h3 {
    color: var(--info-ink);
}

.info-content-two-white .info-copy,
.info-content-two-white .info-two-table-row p,
.info-content-two-white .info-two-table-meta {
    color: var(--info-muted);
}

.info-content-two-white .info-media-card {
    height: 100%;
    min-height: 560px;
    border-radius: 16px;
}

.info-two-table-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.info-two-table-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(18, 28, 45, 0.10);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, #f6f9ff);
    box-shadow: 0 14px 34px rgba(9, 20, 39, 0.06);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.info-two-table-row:hover {
    transform: translateX(8px);
    border-color: rgba(18, 100, 189, 0.34);
    background: linear-gradient(135deg, #eef6ff, #fff);
    box-shadow: 0 20px 44px rgba(18, 100, 189, 0.14);
}

.info-two-table-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #2a83ff, #07418e);
    box-shadow: 0 14px 28px rgba(18, 100, 189, 0.22);
}

.info-two-table-row h3 {
    font-size: 19px;
    margin: 0 0 4px;
}

.info-two-table-row p {
    margin: 0;
    line-height: 1.55;
}

.info-two-table-meta {
    font-weight: 900;
    white-space: nowrap;
}

.info-content-three-full-left,
.info-content-three-full-dark-left,
.info-content-three-full-right,
.info-content-three-full-right-dark,
.info-content-three-half-left,
.info-content-three-half-dark-left,
.info-content-three-half-right,
.info-content-three-half-right-dark {
    padding: 0;
}

.info-content-three-full-left,
.info-content-three-full-dark-left,
.info-content-three-full-right,
.info-content-three-full-right-dark,
.info-content-three-full-left .container-fluid,
.info-content-three-full-dark-left .container-fluid,
.info-content-three-full-right .container-fluid,
.info-content-three-full-right-dark .container-fluid,
.info-content-three-full-left .row,
.info-content-three-full-dark-left .row,
.info-content-three-full-right .row,
.info-content-three-full-right-dark .row,
.info-content-three-full-left .info-split-copy,
.info-content-three-full-dark-left .info-split-copy,
.info-content-three-full-right .info-split-copy,
.info-content-three-full-right-dark .info-split-copy {
    min-height: 100vh;
}

.info-content-three-full-left .info-split-media,
.info-content-three-full-dark-left .info-split-media,
.info-content-three-full-right .info-split-media,
.info-content-three-full-right-dark .info-split-media {
    height: 100vh;
    min-height: 680px;
}

.info-content-three-half-left,
.info-content-three-half-dark-left,
.info-content-three-half-right,
.info-content-three-half-right-dark,
.info-content-three-half-left .container-fluid,
.info-content-three-half-dark-left .container-fluid,
.info-content-three-half-right .container-fluid,
.info-content-three-half-right-dark .container-fluid,
.info-content-three-half-left .row,
.info-content-three-half-dark-left .row,
.info-content-three-half-right .row,
.info-content-three-half-right-dark .row,
.info-content-three-half-left .info-split-copy,
.info-content-three-half-dark-left .info-split-copy,
.info-content-three-half-right .info-split-copy,
.info-content-three-half-right-dark .info-split-copy {
    min-height: 50vh;
}

.info-content-three-half-left .info-split-media,
.info-content-three-half-dark-left .info-split-media,
.info-content-three-half-right .info-split-media,
.info-content-three-half-right-dark .info-split-media {
    height: 50vh;
    min-height: 430px;
}

.info-content-four {
    padding: 96px 0;
    background: #fff;
}

.info-four-rich-panel {
    border-radius: 18px;
    padding: clamp(30px, 5vw, 64px);
    background: linear-gradient(135deg, #f7faff 0%, #fff 56%, #eef6ff 100%);
    border: 1px solid rgba(18, 100, 189, 0.14);
    box-shadow: 0 24px 64px rgba(9, 20, 39, 0.08);
}

.info-four-rich-lead {
    max-width: 900px;
}

.info-four-rich-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.info-four-rich-card {
    min-height: 245px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(18, 28, 45, 0.10);
    box-shadow: 0 16px 38px rgba(9, 20, 39, 0.07);
}

.info-four-rich-card i {
    color: var(--info-blue-bright);
    font-size: 25px;
    margin-bottom: 18px;
}

.info-four-rich-card h3 {
    color: var(--info-ink);
    font-size: 22px;
    line-height: 1.22;
    margin-bottom: 10px;
}

.info-four-rich-card p {
    color: var(--info-muted);
    line-height: 1.68;
    margin: 0;
}

.info-content-six-cards {
    padding: 96px 0;
    background: linear-gradient(180deg, #fff 0%, #f5f8fd 100%);
}

.info-six-card-grid {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.info-six-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-six-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-six-service-card {
    min-height: 210px;
    padding: 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(18, 28, 45, 0.10);
    box-shadow: 0 16px 38px rgba(9, 20, 39, 0.07);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.info-six-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 100, 189, 0.32);
    box-shadow: 0 24px 54px rgba(18, 100, 189, 0.12);
}

.info-six-service-card h3 {
    color: var(--info-ink);
    font-size: 21px;
    margin-bottom: 10px;
}

.info-six-service-card p {
    color: var(--info-muted);
    line-height: 1.65;
    margin: 0;
}

.info-content-twelve {
    padding: 100px 0;
    background: #fff;
}

.info-content-thirteen {
    padding: 104px 0;
    background: #fff;
}

@media (max-width: 1199px) {
    .info-six-card-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .info-content-two-white .info-media-card {
        min-height: 380px;
    }

    .info-content-three-full-left,
    .info-content-three-full-dark-left,
    .info-content-three-full-right,
    .info-content-three-full-right-dark,
    .info-content-three-full-left .container-fluid,
    .info-content-three-full-dark-left .container-fluid,
    .info-content-three-full-right .container-fluid,
    .info-content-three-full-right-dark .container-fluid,
    .info-content-three-full-left .row,
    .info-content-three-full-dark-left .row,
    .info-content-three-full-right .row,
    .info-content-three-full-right-dark .row,
    .info-content-three-full-left .info-split-copy,
    .info-content-three-full-dark-left .info-split-copy,
    .info-content-three-full-right .info-split-copy,
    .info-content-three-full-right-dark .info-split-copy,
    .info-content-three-half-left,
    .info-content-three-half-dark-left,
    .info-content-three-half-right,
    .info-content-three-half-right-dark,
    .info-content-three-half-left .container-fluid,
    .info-content-three-half-dark-left .container-fluid,
    .info-content-three-half-right .container-fluid,
    .info-content-three-half-right-dark .container-fluid,
    .info-content-three-half-left .row,
    .info-content-three-half-dark-left .row,
    .info-content-three-half-right .row,
    .info-content-three-half-right-dark .row,
    .info-content-three-half-left .info-split-copy,
    .info-content-three-half-dark-left .info-split-copy,
    .info-content-three-half-right .info-split-copy,
    .info-content-three-half-right-dark .info-split-copy {
        min-height: 0;
    }

    .info-content-three-full-left .info-split-media,
    .info-content-three-full-dark-left .info-split-media,
    .info-content-three-full-right .info-split-media,
    .info-content-three-full-right-dark .info-split-media,
    .info-content-three-half-left .info-split-media,
    .info-content-three-half-dark-left .info-split-media,
    .info-content-three-half-right .info-split-media,
    .info-content-three-half-right-dark .info-split-media {
        height: 54vh;
        min-height: 360px;
    }

    .info-four-rich-grid,
    .info-six-card-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .info-two-table-row {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .info-two-table-meta {
        grid-column: 2;
    }

    .info-six-card-grid--four {
        grid-template-columns: 1fr;
    }
}

/* 2026-06-29d requested option refinements */
.info-content-one .info-action-row .th-btn.style4 {
    position: relative;
    overflow: hidden;
    color: var(--info-blue) !important;
    border: 2px solid rgba(18, 100, 189, 0.38);
    background: transparent !important;
    box-shadow: inset 0 0 0 0 rgba(18, 100, 189, 0.10);
}

.info-content-one .info-action-row .th-btn.style4::before {
    content: "";
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #2a83ff, transparent) border-box;
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    transform: translateX(-115%);
    transition: transform .55s ease;
    pointer-events: none;
}

.info-content-one .info-action-row .th-btn.style4:hover {
    color: #fff !important;
    border-color: rgba(42, 131, 255, 0.72);
    box-shadow: inset 0 -80px 0 rgba(18, 100, 189, 0.96), 0 14px 34px rgba(18, 100, 189, 0.18);
}

.info-content-one .info-action-row .th-btn.style4:hover::before {
    transform: translateX(115%);
}

.info-content-two .info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.info-content-two .info-card:nth-child(-n+2) {
    min-height: 230px;
    background: linear-gradient(150deg, rgba(42, 131, 255, 0.28), rgba(255, 255, 255, 0.055) 46%, rgba(7, 18, 37, 0.82));
    border-color: rgba(108, 169, 255, 0.36);
}

.info-content-two .info-card:nth-child(n+3) {
    grid-column: 1 / -1;
    min-height: 132px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
}

.info-content-two .info-card:nth-child(n+3) i {
    grid-row: 1 / span 2;
    margin: 0;
}

.info-content-two .info-card:nth-child(n+3) h3 {
    margin: 2px 0 8px;
}

.info-content-two .info-card:nth-child(n+3) p {
    grid-column: 2;
}

.info-content-five .info-metric-card {
    color: #fff;
    border-color: rgba(108, 169, 255, 0.28);
}

.info-content-five .row.g-4 > [class*="col-"]:nth-child(1) .info-metric-card,
.info-content-five .row.g-4 > [class*="col-"]:nth-child(4) .info-metric-card {
    background: linear-gradient(145deg, #1264bd, #0a48a0);
    box-shadow: 0 20px 46px rgba(18, 100, 189, 0.22);
}

.info-content-five .row.g-4 > [class*="col-"]:nth-child(2) .info-metric-card,
.info-content-five .row.g-4 > [class*="col-"]:nth-child(3) .info-metric-card {
    background: linear-gradient(145deg, #071225, #10264f);
    box-shadow: 0 20px 46px rgba(7, 18, 37, 0.20);
}

.info-content-five .info-metric-card strong,
.info-content-five .info-metric-card span {
    color: #fff;
}

.info-content-five-bkg-img {
    padding: 96px 0;
    background: radial-gradient(circle at 80% 14%, rgba(42, 131, 255, 0.22), transparent 34%), #071225;
}

.info-content-five-bkg-img .info-eyebrow { color: #72adff; }
.info-content-five-bkg-img .info-title { color: #fff; }
.info-content-five-bkg-img .info-copy,
.info-content-five-bkg-img .info-feature-list li { color: rgba(230, 238, 255, 0.82); }

.info-bkg-img-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(108, 169, 255, 0.22);
    background: #071225;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
}

.info-bkg-img-card img,
.info-six-img-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    transition: opacity .3s ease, transform .3s ease;
}

.info-bkg-img-card::before,
.info-six-img-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 18, 37, .9), rgba(18, 100, 189, .34));
    z-index: 1;
}

.info-bkg-img-card > *,
.info-six-img-card > * {
    position: relative;
    z-index: 2;
}

.info-bkg-img-card h3,
.info-six-img-card h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 10px;
}

.info-bkg-img-card p,
.info-six-img-card p {
    color: rgba(255, 255, 255, .80);
    line-height: 1.65;
    margin: 0;
}

.info-bkg-img-card:hover img,
.info-six-img-card:hover img {
    opacity: .42;
    transform: scale(1.05);
}

.info-content-six-img-bk {
    padding: 96px 0;
    background: #fff;
}

.info-content-six-img-bk .info-title { color: var(--info-ink); }
.info-content-six-img-bk .info-copy { color: var(--info-muted); }

.info-six-img-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
}

.info-six-img-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border-radius: 14px;
    background: #071225;
    border: 1px solid rgba(18, 100, 189, 0.18);
    box-shadow: 0 20px 46px rgba(9, 20, 39, 0.10);
}

.info-content-nine .info-image-callout > img {
    opacity: 0.34;
}

.info-content-nine .info-image-callout::before {
    background: linear-gradient(90deg, rgba(0, 5, 14, 0.97), rgba(3, 10, 24, 0.82), rgba(18, 100, 189, 0.18));
}

@media (max-width: 1199px) {
    .info-content-two .info-card-grid,
    .info-six-img-grid {
        grid-template-columns: 1fr;
    }

    .info-content-two .info-card:nth-child(-n+2),
    .info-content-two .info-card:nth-child(n+3) {
        grid-column: 1;
    }
}

@media (max-width: 767px) {
    .info-content-two .info-card:nth-child(n+3) {
        grid-template-columns: 1fr;
    }

    .info-content-two .info-card:nth-child(n+3) p {
        grid-column: 1;
    }
}

/* 2026-06-30a requested section refinements */
.info-content-two .info-media-card {
    min-height: 330px;
    aspect-ratio: 16 / 8.35;
}

.info-content-two .col-xl-5 {
    align-self: flex-start;
    padding-top: 0;
}

.info-content-two .info-card-grid {
    align-content: start;
}

.info-content-two .info-card:nth-child(-n+2) {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-content-five-bkg-img .row.align-items-center > .col-lg-5 {
    flex: 0 0 auto;
    width: 54%;
}

.info-content-five-bkg-img .row.align-items-center > .col-lg-7 {
    flex: 0 0 auto;
    width: 46%;
}

.info-content-five-bkg-img-white {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.info-content-five-bkg-img-white .info-title { color: var(--info-ink); }
.info-content-five-bkg-img-white .info-copy,
.info-content-five-bkg-img-white .info-feature-list li { color: var(--info-muted); }

.info-content-five-bkg-img-white .info-bkg-img-card {
    background: #fff;
    border-color: rgba(18, 100, 189, 0.16);
    box-shadow: 0 18px 44px rgba(9, 20, 39, 0.08);
}

.info-content-five-bkg-img-white .info-bkg-img-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .38), rgba(255, 255, 255, .92) 62%, rgba(238, 246, 255, .98));
}

.info-content-five-bkg-img-white .info-bkg-img-card img {
    opacity: .22;
}

.info-content-five-bkg-img-white .info-bkg-img-card h3 { color: var(--info-ink); }
.info-content-five-bkg-img-white .info-bkg-img-card p { color: var(--info-muted); }

.info-content-six-img-bk .info-six-img-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-content-six-img-bk .info-six-img-card {
    min-height: 215px;
    padding: 24px;
}

.info-content-six-img-bk .info-six-img-card img {
    height: 46%;
    bottom: auto;
    opacity: .34;
}

.info-content-six-img-bk .info-six-img-card::before {
    background: linear-gradient(180deg, rgba(7, 18, 37, .46), rgba(7, 18, 37, .92) 46%, rgba(7, 18, 37, .98));
}

.info-six-detail-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.info-six-detail-box {
    padding: 26px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(18, 28, 45, 0.10);
    box-shadow: 0 16px 38px rgba(9, 20, 39, 0.07);
}

.info-six-detail-box h3 {
    color: var(--info-ink);
    font-size: 22px;
    margin-bottom: 16px;
}

.info-six-detail-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-six-detail-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--info-muted);
    line-height: 1.55;
    font-weight: 700;
}

.info-six-detail-list i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #2a83ff, #07418e);
    box-shadow: 0 10px 22px rgba(18, 100, 189, 0.20);
}

@media (max-width: 1199px) {
    .info-content-five-bkg-img .row.align-items-center > .col-lg-5,
    .info-content-five-bkg-img .row.align-items-center > .col-lg-7 {
        width: 100%;
    }

    .info-content-two .info-card:nth-child(-n+2) {
        min-height: 220px;
    }
}

@media (max-width: 991px) {
    .info-content-six-img-bk .info-six-img-grid,
    .info-six-detail-row {
        grid-template-columns: 1fr;
    }
}

/* 2026-06-30b align info-content-two image with top card row */
@media (min-width: 1200px) {
    .info-content-two .info-media-card,
    .info-content-two .info-card:nth-child(-n+2) {
        height: clamp(330px, 26vw, 390px);
        min-height: 0;
    }

    .info-content-two .info-media-card {
        aspect-ratio: auto;
    }
}

/* 2026-06-30c checklist cleanup, dark thirteen, fourteen variants */
.info-content-six-img-bk .info-six-detail-row {
    margin-top: 10px;
}

.info-content-six-img-bk .info-six-detail-box {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.info-content-six-img-bk .info-six-detail-box h3 {
    margin-bottom: 14px;
}

.info-content-six-img-bk .info-six-detail-list li {
    gap: 10px;
    font-weight: 700;
}

.info-content-six-img-bk .info-six-detail-list i {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    color: var(--info-blue-bright);
    background: transparent;
    box-shadow: none;
    margin-top: 4px;
}

.info-content-six-img-bk .info-six-img-grid {
    margin-bottom: 28px;
}

.info-content-thirteen {
    background: radial-gradient(circle at 16% 20%, rgba(42, 131, 255, 0.18), transparent 34%), linear-gradient(135deg, #071225 0%, #0b1d3e 58%, #06152f 100%);
}

.info-content-thirteen .info-title,
.info-content-thirteen .info-ten-support h3,
.info-content-thirteen .info-feature-list li {
    color: #fff;
}

.info-content-thirteen .info-copy,
.info-content-thirteen .info-ten-support p {
    color: rgba(230, 238, 255, 0.78);
}

.info-content-thirteen .info-ten-modern-frame {
    background: linear-gradient(135deg, rgba(42, 131, 255, 0.14), rgba(255,255,255,0.03));
    border-color: rgba(108, 169, 255, 0.22);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30), 0 0 42px rgba(42, 131, 255, 0.12);
}

.info-content-thirteen .info-ten-play {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #1264bd;
    color: #fff;
    box-shadow: 0 20px 52px rgba(18, 100, 189, 0.42), 0 0 0 14px rgba(42, 131, 255, 0.12);
}

.info-content-thirteen .info-ten-play:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.info-content-thirteen .info-ten-badge {
    background: linear-gradient(135deg, #1264bd, #06152f);
}

.info-content-thirteen .info-ten-secondary {
    border-color: #071225;
}

.info-content-fourteen,
.info-content-fourteen-dark {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 108px 0;
    background: #fff;
}

.info-content-fourteen::before,
.info-content-fourteen-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--info-fourteen-bg);
    background-size: cover;
    background-position: center;
    opacity: .18;
    transform: scale(1.02);
    z-index: -2;
}

.info-content-fourteen::after,
.info-content-fourteen-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.80), rgba(238,246,255,.92));
    z-index: -1;
}

.info-content-fourteen-dark {
    background: #071225;
}

.info-content-fourteen-dark::before {
    opacity: .32;
}

.info-content-fourteen-dark::after {
    background: linear-gradient(90deg, rgba(2,7,18,.96), rgba(7,18,37,.86), rgba(18,100,189,.34));
}

.info-fourteen-panel {
    max-width: 760px;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 18px;
    border: 1px solid rgba(18, 100, 189, 0.16);
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 64px rgba(9, 20, 39, 0.10);
}

.info-content-fourteen-dark .info-fourteen-panel {
    background: rgba(7, 18, 37, .74);
    border-color: rgba(108, 169, 255, 0.24);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.info-content-fourteen .info-title,
.info-content-fourteen .info-fourteen-list h3 {
    color: var(--info-ink);
}

.info-content-fourteen .info-copy,
.info-content-fourteen .info-fourteen-list p {
    color: var(--info-muted);
}

.info-content-fourteen-dark .info-eyebrow { color: #72adff; }
.info-content-fourteen-dark .info-title,
.info-content-fourteen-dark .info-fourteen-list h3 { color: #fff; }
.info-content-fourteen-dark .info-copy,
.info-content-fourteen-dark .info-fourteen-list p { color: rgba(230, 238, 255, .78); }

.info-fourteen-list {
    display: grid;
    gap: 16px;
    margin: 28px 0 30px;
}

.info-fourteen-list article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.info-fourteen-list i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #2a83ff, #07418e);
    box-shadow: 0 12px 26px rgba(18, 100, 189, .22);
}

.info-fourteen-list h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.info-fourteen-list p {
    margin: 0;
    line-height: 1.58;
}

@media (max-width: 767px) {
    .info-content-fourteen,
    .info-content-fourteen-dark {
        min-height: 0;
        padding: 78px 0;
    }
}

/* 2026-06-30d one-B, five-text-right, and Knight Rider divider */
.info-content-two .info-card:nth-child(-n+2) i {
    display: none;
}

.info-content-two .info-card:nth-child(-n+2) h3 {
    margin-top: 0;
}

.info-content-two .info-knight-divider {
    grid-column: 1 / -1;
    position: relative;
    height: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(42, 131, 255, 0.05), rgba(42, 131, 255, 0.22), rgba(42, 131, 255, 0.05));
    border: 1px solid rgba(108, 169, 255, 0.20);
    box-shadow: inset 0 0 18px rgba(42, 131, 255, 0.16), 0 0 24px rgba(42, 131, 255, 0.10);
}

.info-content-two .info-knight-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -22%;
    width: 22%;
    height: 4px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, #2a83ff 35%, #fff 50%, #2a83ff 65%, transparent);
    box-shadow: 0 0 18px rgba(42, 131, 255, 0.82), 0 0 34px rgba(42, 131, 255, 0.44);
    animation: infoKnightScan 2.35s ease-in-out infinite;
}

@keyframes infoKnightScan {
    0% { left: -24%; opacity: .2; }
    18% { opacity: 1; }
    50% { left: 102%; opacity: .95; }
    68% { opacity: 1; }
    100% { left: -24%; opacity: .2; }
}

.info-content-one-b {
    padding: 96px 0;
    background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
}

.info-content-one-b .info-title { color: var(--info-ink); }
.info-content-one-b .info-copy { color: var(--info-muted); }

.info-content-one-b .info-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
}

.info-content-one-b .info-card {
    min-height: 230px;
    border: 1px solid rgba(18, 100, 189, 0.16);
    background: linear-gradient(145deg, #fff, #f1f7ff);
    box-shadow: 0 18px 42px rgba(9, 20, 39, 0.08);
}

.info-content-one-b .info-card h3 { color: var(--info-ink); }
.info-content-one-b .info-card p { color: var(--info-muted); }

.info-content-five-text-right {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.info-content-five-text-right .info-title { color: var(--info-ink); }
.info-content-five-text-right .info-copy { color: var(--info-muted); }

.info-content-five-text-right .info-metric-card {
    color: #fff;
    border-color: rgba(108, 169, 255, 0.28);
}

.info-content-five-text-right .row.g-4 > [class*="col-"]:nth-child(1) .info-metric-card,
.info-content-five-text-right .row.g-4 > [class*="col-"]:nth-child(4) .info-metric-card {
    background: linear-gradient(145deg, #1264bd, #0a48a0);
    box-shadow: 0 20px 46px rgba(18, 100, 189, 0.22);
}

.info-content-five-text-right .row.g-4 > [class*="col-"]:nth-child(2) .info-metric-card,
.info-content-five-text-right .row.g-4 > [class*="col-"]:nth-child(3) .info-metric-card {
    background: linear-gradient(145deg, #071225, #10264f);
    box-shadow: 0 20px 46px rgba(7, 18, 37, 0.20);
}

.info-content-five-text-right .info-metric-card strong,
.info-content-five-text-right .info-metric-card span {
    color: #fff;
}

/* 2026-06-30e fourteen image visibility, twelve motion, thirteen simplification */
.info-content-fourteen::before,
.info-content-fourteen-dark::before {
    left: 42%;
    opacity: .46;
    background-position: center right;
    transform: none;
}

.info-content-fourteen::after {
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 42%, rgba(238,246,255,.44) 68%, rgba(238,246,255,.18) 100%);
}

.info-content-fourteen-dark::before {
    opacity: .52;
}

.info-content-fourteen-dark::after {
    background: linear-gradient(90deg, rgba(2,7,18,.98) 0%, rgba(7,18,37,.92) 42%, rgba(7,18,37,.62) 68%, rgba(18,100,189,.28) 100%);
}

.info-content-fourteen .info-fourteen-panel,
.info-content-fourteen-dark .info-fourteen-panel {
    max-width: 700px;
}

.info-content-twelve .info-composition-small {
    animation: infoFloatSmallImage 5.5s ease-in-out infinite;
    transform-origin: center;
}

.info-content-twelve .info-composition-small::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.28), transparent 68%);
    transform: translateX(-120%);
    animation: infoSmallImageSheen 4.8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes infoFloatSmallImage {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(10px, -12px, 0) rotate(.8deg); }
}

@keyframes infoSmallImageSheen {
    0%, 46% { transform: translateX(-120%); opacity: 0; }
    58% { opacity: 1; }
    82%, 100% { transform: translateX(120%); opacity: 0; }
}

.info-content-thirteen .info-ten-composition {
    min-height: 600px;
}

.info-content-thirteen .info-ten-modern-frame {
    inset: 24px 18px 52px 34px;
}

.info-content-thirteen .info-ten-main {
    left: 64px;
    top: 24px;
    width: calc(100% - 108px);
    height: 74%;
    border-radius: 22px;
}

.info-content-thirteen .info-ten-main img {
    object-fit: cover;
}

.info-content-thirteen .info-ten-secondary {
    display: none;
}

.info-content-thirteen .info-ten-badge {
    left: 34px;
    bottom: 18px;
}

@media (max-width: 991px) {
    .info-content-fourteen::before,
    .info-content-fourteen-dark::before {
        left: 0;
        opacity: .22;
    }

    .info-content-fourteen::after {
        background: rgba(255,255,255,.90);
    }

    .info-content-fourteen-dark::after {
        background: rgba(7,18,37,.90);
    }

    .info-content-thirteen .info-ten-main {
        left: 36px;
        width: calc(100% - 72px);
    }
}

/* 2026-06-30f process variants, flips, card hovers */
.info-content-four .info-four-rich-card {
    transform: translateY(0);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

.info-content-four .info-four-rich-card:hover {
    transform: translateY(-8px);
    border-color: rgba(42, 131, 255, .38);
    background: linear-gradient(145deg, #fff, #eef6ff);
    box-shadow: 0 26px 58px rgba(18, 100, 189, .16);
}

.info-content-four .info-four-rich-card:hover i {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 0 10px rgba(42, 131, 255, .34));
}

.info-content-four .info-four-rich-card i {
    transition: transform .32s ease, filter .32s ease;
}

.info-content-five-text-right .row.align-items-center > .col-lg-6:first-child {
    flex: 0 0 auto;
    width: 45%;
}

.info-content-five-text-right .row.align-items-center > .col-lg-6:last-child {
    flex: 0 0 auto;
    width: 55%;
    padding-left: clamp(36px, 5vw, 78px);
}

.info-content-six .info-seo-column {
    position: relative;
    min-height: 250px;
    transform-style: preserve-3d;
    perspective: 900px;
    transition: transform .45s ease, box-shadow .35s ease, border-color .35s ease;
}

.info-content-six .info-seo-column::after {
    content: "Built for custom convertible ragtops, classic cars, lowriders, and made-to-order material guidance.";
    position: absolute;
    inset: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 10px;
    color: #fff;
    font-weight: 800;
    line-height: 1.55;
    text-align: center;
    background: linear-gradient(145deg, #1264bd, #061b43);
    opacity: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    transition: opacity .25s ease;
}

.info-content-six .info-seo-column:nth-child(2)::after {
    content: "SEO-focused copy for Chevy Impala, Camaro, Cadillac, Lincoln, Buick, Oldsmobile, and lowrider builds.";
}

.info-content-six .info-seo-column:hover {
    transform: rotateY(180deg);
    border-color: rgba(42, 131, 255, .4);
    box-shadow: 0 28px 64px rgba(18, 100, 189, .16);
}

.info-content-six .info-seo-column:hover::after {
    opacity: 1;
}

.info-content-six .info-seo-column:hover h3,
.info-content-six .info-seo-column:hover p {
    opacity: 0;
}

.info-content-six-img-bk .info-six-detail-row {
    margin-top: 22px;
    margin-bottom: 30px;
}

.info-content-six-img-bk .info-six-img-grid {
    margin-top: 0;
}

.info-content-six-img-bk .info-six-img-card {
    border: 1px solid rgba(18, 100, 189, .18);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.info-content-six-img-bk .info-six-img-card:hover {
    transform: translateY(-8px);
    border-color: rgba(42, 131, 255, .56);
    box-shadow: 0 28px 64px rgba(18, 100, 189, .18);
}

.info-content-seven-white,
.info-content-seven-split {
    padding: 104px 0;
    background: #fff;
}

.info-content-seven-white .info-title,
.info-content-seven-split .info-title,
.info-content-seven-white .info-seven-item h3,
.info-content-seven-split .info-seven-item h3 {
    color: var(--info-ink);
}

.info-content-seven-white .info-copy,
.info-content-seven-split .info-copy,
.info-content-seven-white .info-seven-item p,
.info-content-seven-split .info-seven-item p {
    color: var(--info-muted);
}

.info-content-seven-white .info-seven-track,
.info-content-seven-split .info-seven-track {
    border-left-color: rgba(18, 100, 189, .22);
}

.info-content-seven-white .info-seven-item,
.info-content-seven-split .info-seven-item {
    padding-bottom: 24px;
}

.info-content-seven-white .info-seven-item::before,
.info-content-seven-split .info-seven-item::before {
    background: #1264bd;
}

.info-content-seven-split .info-seven-copy-col {
    flex: 0 0 auto;
    width: 60%;
}

.info-content-seven-split .info-seven-steps-col {
    flex: 0 0 auto;
    width: 40%;
}

.info-content-seven-split .info-seven-track {
    padding-left: 30px;
}

@media (max-width: 1199px) {
    .info-content-five-text-right .row.align-items-center > .col-lg-6:first-child,
    .info-content-five-text-right .row.align-items-center > .col-lg-6:last-child,
    .info-content-seven-split .info-seven-copy-col,
    .info-content-seven-split .info-seven-steps-col {
        width: 100%;
    }

    .info-content-five-text-right .row.align-items-center > .col-lg-6:last-child {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}
