:root {
    --navy: #081a2b;
    --navy-2: #0d2740;
    --blue: #108de5;
    --blue-2: #62c9ff;
    --red: #d93a3a;
    --orange: #ff7a1a;
    --orange-2: #ffb23d;
    --text: #102033;
    --muted: #5e7185;
    --line: rgba(16, 32, 51, .10);
    --white: #ffffff;
    --surface: #f6fbff;
    --shadow: 0 24px 80px rgba(6, 24, 39, .14);
    --radius: 28px;
    --container: 1180px;
    --brand-gradient: linear-gradient(135deg, var(--red) 0%, var(--orange) 45%, var(--blue) 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 36px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: #fff;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 9999;
}

.skip-link:focus {
    left: 12px;
}

.top-strip {
    background: linear-gradient(90deg, rgba(217,58,58,.95), rgba(255,122,26,.95), rgba(16,141,229,.95));
    color: rgba(255,255,255,.92);
    font-size: 13px;
}

.top-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 32, 51, .06);
    transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.95);
    box-shadow: 0 16px 42px rgba(6, 24, 39, .08);
}

.nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand__mark {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: var(--brand-gradient);
    box-shadow: 0 16px 34px rgba(16, 32, 51, .14);
    padding: 3px;
}

.brand__mark::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 19px;
    z-index: 0;
}

.brand__mark img,
.brand__mark span {
    position: relative;
    z-index: 1;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.brand__mark span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--navy);
}

.brand__text {
    display: grid;
    line-height: 1.12;
}

.brand__text strong {
    font-size: 17px;
    letter-spacing: -.02em;
}

.brand__text small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 800;
    color: #22384e;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-call {
    color: #fff !important;
    background: var(--brand-gradient);
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(255,122,26,.22);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 99px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8,26,43,.98), rgba(12,44,71,.96)),
        radial-gradient(circle at 15% 20%, rgba(16,141,229,.28), transparent 35%);
    padding: 96px 0 78px;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(217,58,58,.10), transparent 34%),
        linear-gradient(220deg, rgba(255,122,26,.10), transparent 34%),
        linear-gradient(300deg, rgba(16,141,229,.10), transparent 34%);
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: .65;
}

.hero__glow--one {
    width: 420px;
    height: 420px;
    right: -90px;
    top: 20px;
    background: radial-gradient(circle, rgba(16,141,229,.35), transparent 62%);
}

.hero__glow--two {
    width: 340px;
    height: 340px;
    left: -90px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(255,122,26,.24), transparent 62%);
}

.hero__glow--three {
    width: 320px;
    height: 320px;
    left: 40%;
    top: -120px;
    background: radial-gradient(circle, rgba(217,58,58,.18), transparent 62%);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .88fr);
    align-items: center;
    gap: 52px;
}

.hero-brand-chip {
    display: inline-grid;
    grid-template-columns: 72px auto;
    gap: 14px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    margin-bottom: 20px;
}

.hero-brand-chip__logo {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    padding: 3px;
    border-radius: 22px;
    background: var(--brand-gradient);
}

.hero-brand-chip__logo img,
.hero-brand-chip__logo span {
    width: 100%;
    height: 100%;
    border-radius: 19px;
    background: #fff;
    object-fit: contain;
    padding: 8px;
}

.hero-brand-chip__logo span {
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
}

.hero-brand-chip__text strong {
    display: block;
    font-size: 15px;
    letter-spacing: -.02em;
}

.hero-brand-chip__text span {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue-2);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.hero h1,
.section h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(38px, 6vw, 74px);
    line-height: .96;
    letter-spacing: -.06em;
}

.hero__lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.80);
    font-size: clamp(17px, 2vw, 22px);
}

.hero__actions,
.final-cta__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 18px 38px rgba(255,122,26,.28);
}

.btn--secondary,
.btn--ghost {
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
}

.hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
    max-width: 760px;
}

.hero__proof div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
}

.hero__proof strong {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.hero__proof span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 28px 90px rgba(0,0,0,.25);
}

.hero-visual__logo {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 88px;
    height: 88px;
    z-index: 2;
    border-radius: 24px;
    padding: 4px;
    background: var(--brand-gradient);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.hero-visual__logo img,
.hero-visual__logo span {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    object-fit: contain;
    padding: 8px;
}

.hero-visual__logo span {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
    font-size: 20px;
}

.hero-visual img {
    width: 100%;
    border-radius: 26px;
}

.hero-visual__badge {
    position: absolute;
    min-width: 200px;
    padding: 16px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.hero-visual__badge span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 900;
}

.hero-visual__badge strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: -.03em;
}

.hero-visual__badge--top {
    top: -18px;
    right: -16px;
    background: rgba(255,255,255,.95);
    color: var(--navy);
}

.hero-visual__badge--top span {
    color: var(--blue);
}

.hero-visual__badge--bottom {
    left: -18px;
    bottom: -18px;
    color: #fff;
    background: var(--brand-gradient);
}

.hero-visual__badge--bottom span {
    color: rgba(255,255,255,.82);
}

.brand-ribbon {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.brand-ribbon__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.brand-ribbon__item {
    display: block;
    padding: 20px 18px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    color: #1e3449;
    border-left: 1px solid var(--line);
}

.brand-ribbon__item:last-child {
    border-right: 1px solid var(--line);
}

.section {
    padding: 92px 0;
}

.section--light {
    background:
        radial-gradient(circle at 10% 10%, rgba(16,141,229,.06), transparent 34%),
        var(--surface);
}

.section--white {
    background: #fff;
}

.section--dark {
    color: #fff;
    background:
        linear-gradient(135deg, #081a2b, #0e2c47),
        radial-gradient(circle at 80% 10%, rgba(98,201,255,.14), transparent 34%);
}

.section--portal {
    color: #fff;
    background:
        linear-gradient(135deg, #0c2134, #091b2d),
        radial-gradient(circle at 0% 30%, rgba(217,58,58,.12), transparent 34%);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 36px;
}

.section-heading h2,
.split h2,
.maintenance h2,
.portal h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    letter-spacing: -.055em;
}

.section-heading p,
.split p,
.maintenance p,
.portal p {
    color: var(--muted);
    font-size: 18px;
}

.section--dark p,
.section--portal p {
    color: rgba(255,255,255,.74);
}

.visual-grid {
    display: grid;
    grid-template-columns: 1.08fr .86fr .86fr;
    gap: 18px;
    margin-bottom: 18px;
}

.visual-card,
.equipment-card,
.service-card,
.mini-card {
    background: #fff;
    border: 1px solid rgba(16,32,51,.09);
    box-shadow: 0 18px 60px rgba(6,24,39,.06);
}

.visual-card,
.equipment-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.visual-card img,
.equipment-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.visual-card div {
    padding: 24px;
}

.visual-card span,
.portal__timeline span,
.image-panel__overlay span {
    display: inline-flex;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.visual-card h3,
.equipment-card h3 {
    margin: 8px 0 8px;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.visual-card p,
.equipment-card p {
    margin: 0;
    color: var(--muted);
}

.service-grid,
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    min-height: 245px;
    border-radius: var(--radius);
}

.service-card::before,
.visual-card::before,
.equipment-card::before,
.mini-card::before {
    content: "";
    display: block;
    height: 4px;
    background: var(--brand-gradient);
}

.service-card--featured {
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(98,201,255,.22), transparent 36%),
        linear-gradient(135deg, #091f33, #103757);
}

.service-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--brand-gradient);
    font-weight: 900;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(16,32,51,.12);
}

.service-card h3 {
    margin: 22px 0 10px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-card--featured p {
    color: rgba(255,255,255,.76);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(390px, .82fr);
    gap: 46px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.check-list span {
    position: relative;
    padding-left: 34px;
    color: rgba(255,255,255,.84);
    font-weight: 700;
}

.check-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--brand-gradient);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.image-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 70px rgba(0,0,0,.20);
}

.image-panel__overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(8,26,43,.88);
    backdrop-filter: blur(12px);
}

.image-panel__overlay span {
    color: var(--blue-2);
}

.image-panel__overlay strong {
    display: block;
    margin-top: 5px;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.equipment-card {
    padding-bottom: 24px;
    background: #fbfdff;
}

.equipment-card h3,
.equipment-card p {
    padding-inline: 24px;
}

.equipment-card h3 {
    margin-top: 22px;
}

.maintenance {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(360px, .8fr);
    gap: 26px;
    align-items: stretch;
}

.maintenance__panel {
    padding: 36px;
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8,26,43,.98), rgba(14,52,84,.95)),
        radial-gradient(circle at 85% 15%, rgba(98,201,255,.18), transparent 35%);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.maintenance__panel::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,122,26,.18), transparent 65%);
}

.maintenance__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mini-card {
    padding: 24px;
    border-radius: 22px;
    overflow: hidden;
}

.mini-card strong {
    display: block;
    font-size: 20px;
    letter-spacing: -.035em;
}

.mini-card span {
    display: block;
    color: var(--muted);
    margin-top: 7px;
}

.coverage .section-heading {
    text-align: center;
    margin-inline: auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 850px;
    margin: 0 auto;
}

.coverage-grid span {
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(16,32,51,.08);
    text-align: center;
    font-weight: 900;
    color: #1d344b;
    box-shadow: 0 10px 25px rgba(6,24,39,.04);
}

.portal {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(380px, .85fr);
    gap: 42px;
    align-items: start;
}

.portal__timeline {
    display: grid;
    gap: 16px;
}

.portal__timeline div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}

.portal__timeline span {
    color: var(--blue-2);
}

.portal__timeline strong {
    display: block;
    margin-top: 8px;
    font-size: 23px;
    letter-spacing: -.04em;
}

.portal__timeline p {
    margin: 8px 0 0;
}

.final-cta {
    padding: 90px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8,26,43,.98), rgba(12,44,71,.96)),
        radial-gradient(circle at 25% 20%, rgba(16,141,229,.24), transparent 30%);
}

.final-cta__inner {
    max-width: 960px;
    text-align: center;
    margin-inline: auto;
}

.final-cta__logo {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    border-radius: 26px;
    padding: 4px;
    background: var(--brand-gradient);
    box-shadow: 0 18px 40px rgba(0,0,0,.20);
}

.final-cta__logo img,
.final-cta__logo span {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: #fff;
    object-fit: contain;
    padding: 10px;
}

.final-cta__logo span {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
    font-size: 22px;
}

.final-cta__actions {
    justify-content: center;
}

.site-footer {
    padding: 34px 0 110px;
    color: rgba(255,255,255,.76);
    background: #061320;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .6fr .8fr;
    gap: 20px;
    align-items: start;
}

.site-footer strong,
.site-footer a {
    color: #fff;
    font-weight: 900;
}

.site-footer p {
    margin: 8px 0 0;
}

.site-footer span {
    display: block;
    color: rgba(255,255,255,.48);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 900;
    margin-bottom: 6px;
}

.mobile-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 120;
    display: none;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 12px 18px;
    color: #fff;
    background: var(--brand-gradient);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(6,24,39,.28);
    line-height: 1.05;
}

.mobile-call span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    white-space: nowrap;
}

.mobile-call strong {
    display: block;
    font-size: clamp(17px, 5vw, 22px);
    letter-spacing: -.02em;
    white-space: nowrap;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay {
    transition-delay: .12s;
}

@media (max-width: 1080px) {
    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

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

    .brand-ribbon__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: #fff;
        border: 1px solid rgba(16,32,51,.08);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px 12px;
    }

    .nav-call {
        text-align: center;
        margin-top: 6px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero__grid,
    .split,
    .maintenance,
    .portal {
        grid-template-columns: 1fr;
    }

    .hero__proof,
    .service-grid,
    .equipment-grid,
    .brand-ribbon__inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 680px) {
    .top-strip__inner {
        justify-content: flex-start;
        gap: 12px;
        padding: 8px 0;
        font-size: 12px;
    }

    .brand__mark {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .brand__text strong {
        font-size: 14px;
    }

    .brand__text small {
        max-width: 190px;
    }

    .nav {
        min-height: 76px;
    }

    .hero-brand-chip {
        grid-template-columns: 64px auto;
    }

    .hero-brand-chip__logo {
        width: 64px;
        height: 64px;
    }

    .hero h1,
    .section h2,
    .final-cta h2 {
        letter-spacing: -.05em;
    }

    .hero__proof,
    .service-grid,
    .maintenance__items,
    .coverage-grid,
    .equipment-grid,
    .brand-ribbon__inner {
        grid-template-columns: 1fr;
    }

    .hero-visual__badge {
        position: static;
        margin-top: 10px;
        width: 100%;
    }

    .section {
        padding: 68px 0;
    }

    .service-card {
        min-height: auto;
    }

    .image-panel__overlay {
        position: static;
        border-radius: 0;
    }

    .maintenance__panel {
        padding: 28px;
    }

    .site-footer {
        padding-bottom: 104px;
    }

    .mobile-call {
        display: grid;
    }
}

@media (max-width: 390px) {
    .mobile-call {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 14px;
        gap: 8px;
    }

    .mobile-call span {
        font-size: 11px;
        letter-spacing: .08em;
    }

    .mobile-call strong {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* === LMS SEO / TRUST / REQUEST UPGRADE === */

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.trust-strip__grid div {
    padding: 24px 18px;
    text-align: center;
    border-left: 1px solid var(--line);
}

.trust-strip__grid div:last-child {
    border-right: 1px solid var(--line);
}

.trust-strip strong {
    display: block;
    font-size: 19px;
    letter-spacing: -.03em;
    color: var(--navy);
}

.trust-strip span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.service-request {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,122,26,.18), transparent 34%),
        radial-gradient(circle at 90% 20%, rgba(16,141,229,.18), transparent 34%),
        linear-gradient(135deg, #081a2b, #0d2e4b);
}

.service-request__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
    gap: 36px;
    align-items: center;
}

.service-request__content h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -.055em;
}

.service-request__content p {
    color: rgba(255,255,255,.76);
    font-size: 18px;
}

.request-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.request-card__logo {
    width: 82px;
    height: 82px;
    padding: 4px;
    border-radius: 24px;
    background: var(--brand-gradient);
    margin-bottom: 18px;
}

.request-card__logo img,
.request-card__logo span {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    object-fit: contain;
    padding: 8px;
}

.request-card__logo span {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
}

.request-card h3 {
    margin: 0 0 8px;
    font-size: 30px;
    letter-spacing: -.04em;
}

.request-card p {
    color: rgba(255,255,255,.76);
    margin: 0;
}

.request-card__btn {
    width: 100%;
    margin-top: 22px;
}

.request-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}

.request-card__list span {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 800;
}

.coverage-layout {
    display: grid;
    grid-template-columns: minmax(300px, .76fr) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.coverage-map {
    position: relative;
    min-height: 360px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.95), rgba(255,255,255,.75)),
        linear-gradient(135deg, rgba(217,58,58,.16), rgba(255,122,26,.14), rgba(16,141,229,.16));
    border: 1px solid rgba(16,32,51,.10);
    box-shadow: 0 18px 60px rgba(6,24,39,.08);
}

.coverage-map::before {
    content: "";
    position: absolute;
    inset: 28px;
    border-radius: 28px;
    border: 1px dashed rgba(16,32,51,.18);
}

.coverage-map__ring {
    position: absolute;
    inset: 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(16,141,229,.22);
}

.coverage-map__ring--one {
    width: 170px;
    height: 170px;
}

.coverage-map__ring--two {
    width: 260px;
    height: 260px;
    border-color: rgba(255,122,26,.24);
}

.coverage-map__pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 122px;
    height: 122px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 34px;
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 18px 45px rgba(8,26,43,.22);
    text-align: center;
}

.coverage-map__pin strong {
    display: block;
    font-size: 30px;
    letter-spacing: -.05em;
    line-height: 1;
}

.coverage-map__pin span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.seo-section {
    position: relative;
}

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

.seo-grid div,
.faq-card {
    padding: 26px;
    border-radius: 24px;
    background: #f8fcff;
    border: 1px solid rgba(16,32,51,.09);
    box-shadow: 0 14px 42px rgba(6,24,39,.05);
}

.seo-grid h3,
.faq-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -.035em;
    color: var(--navy);
}

.seo-grid p,
.faq-card p {
    margin: 0;
    color: var(--muted);
}

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

@media (max-width: 980px) {
    .trust-strip__grid,
    .service-request__grid,
    .coverage-layout,
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        min-height: 300px;
    }
}

@media (max-width: 680px) {
    .trust-strip__grid,
    .request-card__list,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-request {
        padding: 68px 0;
    }

    .request-card {
        padding: 24px;
    }

    .coverage-map {
        min-height: 260px;
    }

    .coverage-map__ring--one {
        width: 140px;
        height: 140px;
    }

    .coverage-map__ring--two {
        width: 210px;
        height: 210px;
    }

    .coverage-map__pin {
        width: 104px;
        height: 104px;
        border-radius: 28px;
    }
}

/* === LMS DEEP PUBLIC PAGES START === */

.subhero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8,26,43,.98), rgba(12,44,71,.96)),
        radial-gradient(circle at 15% 20%, rgba(16,141,229,.28), transparent 35%);
    padding: 76px 0 70px;
}

.subhero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    align-items: center;
    gap: 44px;
}

.subhero h1 {
    margin: 0;
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: .96;
    letter-spacing: -.06em;
}

.subhero__lead {
    max-width: 780px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.80);
    font-size: clamp(17px, 2vw, 21px);
}

.breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255,255,255,.86);
}

.subhero__visual {
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 28px 90px rgba(0,0,0,.24);
}

.subhero__visual img {
    width: 100%;
    border-radius: 26px;
}

.subhero__logo {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 82px;
    height: 82px;
    z-index: 2;
    border-radius: 24px;
    padding: 4px;
    background: var(--brand-gradient);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.subhero__logo img,
.subhero__logo span {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    object-fit: contain;
    padding: 8px;
}

.subhero__logo span {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
    font-size: 20px;
}

.subhero__badge {
    position: absolute;
    left: -18px;
    bottom: -18px;
    min-width: 220px;
    padding: 16px 18px;
    border-radius: 20px;
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.subhero__badge span {
    display: block;
    color: rgba(255,255,255,.82);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 900;
}

.subhero__badge strong {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    letter-spacing: -.03em;
}

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

.detail-card {
    padding: 26px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(16,32,51,.09);
    box-shadow: 0 18px 60px rgba(6,24,39,.06);
    overflow: hidden;
}

.detail-card::before {
    content: "";
    display: block;
    height: 4px;
    margin: -26px -26px 22px;
    background: var(--brand-gradient);
}

.detail-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--navy);
}

.detail-card p {
    margin: 0;
    color: var(--muted);
}

.problem-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.problem-list li {
    position: relative;
    padding: 14px 16px 14px 46px;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid rgba(16,32,51,.08);
    font-weight: 800;
    color: #20384f;
}

.problem-list li::before {
    content: "!";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--brand-gradient);
    font-size: 13px;
    font-weight: 900;
}

.image-panel--light {
    background: #fff;
    border-color: rgba(16,32,51,.08);
}

.maintenance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.maintenance-list span {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.86);
    font-weight: 800;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.link-grid a {
    display: block;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(16,32,51,.09);
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 12px 34px rgba(6,24,39,.05);
}

.link-grid a:hover {
    transform: translateY(-2px);
    color: var(--blue);
}

.coverage-grid--compact {
    max-width: none;
    margin: 22px 0 0;
}

.request-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.request-steps div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
}

.request-steps strong {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--brand-gradient);
    color: #fff;
    font-size: 20px;
}

.request-steps span {
    color: rgba(255,255,255,.82);
    font-weight: 800;
}

.service-request--standalone {
    padding-top: 90px;
}

@media (max-width: 1100px) {
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 980px) {
    .subhero__grid {
        grid-template-columns: 1fr;
    }

    .subhero__visual {
        max-width: 640px;
    }

    .maintenance-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .subhero {
        padding: 56px 0 64px;
    }

    .subhero__visual {
        padding: 10px;
    }

    .subhero__badge {
        position: static;
        margin-top: 10px;
        width: 100%;
    }

    .subhero__logo {
        width: 68px;
        height: 68px;
    }

    .detail-grid,
    .link-grid,
    .request-steps {
        grid-template-columns: 1fr;
    }

    .detail-card {
        padding: 22px;
    }

    .detail-card::before {
        margin: -22px -22px 18px;
    }
}

/* === LMS DEEP PUBLIC PAGES END === */

/* === LMS FINANCING PAGE START === */

.financing-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(255,122,26,.20), transparent 34%),
        radial-gradient(circle at 18% 22%, rgba(16,141,229,.22), transparent 34%),
        linear-gradient(135deg, rgba(8,26,43,.98), rgba(12,44,71,.96));
}

.financing-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 28px 90px rgba(0,0,0,.24);
}

.financing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 12%, rgba(255,122,26,.20), transparent 35%),
        radial-gradient(circle at 10% 85%, rgba(16,141,229,.18), transparent 35%);
    pointer-events: none;
}

.financing-card > * {
    position: relative;
    z-index: 1;
}

.financing-card__logo {
    width: 92px;
    height: 92px;
    padding: 4px;
    border-radius: 26px;
    background: var(--brand-gradient);
    box-shadow: 0 18px 40px rgba(0,0,0,.20);
    margin-bottom: 22px;
}

.financing-card__logo img,
.financing-card__logo span {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background: #fff;
    object-fit: contain;
    padding: 10px;
}

.financing-card__logo span {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-size: 22px;
    font-weight: 900;
}

.financing-card span {
    display: inline-flex;
    color: var(--blue-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.financing-card strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: .95;
    letter-spacing: -.055em;
}

.financing-card p {
    color: rgba(255,255,255,.76);
    margin: 18px 0 0;
}

.financing-card__btn {
    width: 100%;
    margin-top: 24px;
}

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

.financing-steps {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.financing-steps div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid rgba(16,32,51,.08);
}

.financing-steps strong {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: var(--brand-gradient);
    font-size: 21px;
}

.financing-steps span {
    color: #20384f;
    font-weight: 850;
}

.financing-note {
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 12%, rgba(255,122,26,.10), transparent 34%),
        #f8fcff;
    border: 1px solid rgba(16,32,51,.09);
    box-shadow: 0 18px 60px rgba(6,24,39,.06);
}

.financing-note h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.045em;
}

.financing-note p {
    color: var(--muted);
}

.financing-note p:last-child {
    margin-bottom: 0;
}

.financing-teaser {
    padding: 42px 0;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,122,26,.18), transparent 35%),
        linear-gradient(135deg, #081a2b, #0d2e4b);
}

.financing-teaser__inner {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.financing-teaser__logo {
    width: 86px;
    height: 86px;
    padding: 4px;
    border-radius: 24px;
    background: var(--brand-gradient);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.financing-teaser__logo img,
.financing-teaser__logo span {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    object-fit: contain;
    padding: 9px;
}

.financing-teaser__logo span {
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
}

.financing-teaser h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -.045em;
}

.financing-teaser p:not(.eyebrow) {
    margin: 10px 0 0;
    color: rgba(255,255,255,.76);
}

@media (max-width: 1100px) {
    .financing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .financing-teaser__inner {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .financing-teaser__inner .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .financing-card {
        padding: 26px;
    }

    .financing-grid,
    .financing-teaser__inner {
        grid-template-columns: 1fr;
    }

    .financing-teaser__logo {
        width: 76px;
        height: 76px;
    }

    .financing-teaser__inner .btn {
        width: 100%;
    }

    .financing-steps div {
        grid-template-columns: 40px 1fr;
    }

    .financing-steps strong {
        width: 40px;
        height: 40px;
    }
}

/* === LMS FINANCING PAGE END === */
