/* =========================================================
   VORIK FLEET PARTNER — PREMIUM PUBLIC PAGE
   R01D
   ========================================================= */

.vfleet {
    --vf-navy: #071b33;
    --vf-navy-2: #0b2949;
    --vf-blue: #0f4c81;
    --vf-sky: #38bdf8;
    --vf-yellow: #f4c64e;
    --vf-green: #22c55e;
    --vf-bg: #f5f8fc;
    --vf-text: #10233f;
    --vf-muted: #64748b;
    --vf-border: #dce5ef;

    overflow: hidden;
    color: var(--vf-text);
    background: #fff;
}

.vfleet *,
.vfleet *::before,
.vfleet *::after {
    box-sizing: border-box;
}

.vfleet-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.vfleet h1,
.vfleet h2,
.vfleet h3,
.vfleet p {
    margin-top: 0;
}

.vfleet h1,
.vfleet h2,
.vfleet h3 {
    color: var(--vf-navy);
}

.vfleet p {
    color: var(--vf-muted);
    line-height: 1.72;
}

.vfleet-section {
    padding: 96px 0;
}

.vfleet-soft {
    background: var(--vf-bg);
}

.vfleet-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--vf-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vfleet-section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.vfleet-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.vfleet-section-head h2,
.vfleet-split-copy h2,
.vfleet-safety h2,
.vfleet-faq-intro h2,
.vfleet-final h2 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.06;
    letter-spacing: -.035em;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.vfleet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    align-items: center;
}

.vfleet-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 14px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 850;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease,
        color .2s ease;
}

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

.vfleet-btn-primary,
.vfleet-btn-primary:link,
.vfleet-btn-primary:visited {
    color: #fff !important;
    background: var(--vf-blue) !important;
    box-shadow: 0 14px 30px rgba(15, 76, 129, .22);
}

.vfleet-btn-primary *,
.vfleet-btn-secondary *,
.vfleet-btn-white *,
.vfleet-btn-outline-light * {
    color: inherit !important;
}

.vfleet-btn-primary:hover,
.vfleet-btn-primary:focus-visible {
    color: #fff !important;
    background: var(--vf-navy) !important;
}

.vfleet-btn-secondary,
.vfleet-btn-secondary:link,
.vfleet-btn-secondary:visited {
    color: var(--vf-navy) !important;
    background: #fff !important;
    border: 1px solid var(--vf-border);
}

.vfleet-btn-secondary:hover {
    color: var(--vf-blue) !important;
    border-color: rgba(15, 76, 129, .3);
}

.vfleet-btn-white,
.vfleet-btn-white:link,
.vfleet-btn-white:visited {
    color: var(--vf-navy) !important;
    background: #fff !important;
    border: 1px solid #fff;
}

.vfleet-btn-white:hover,
.vfleet-btn-white:focus-visible {
    color: #fff !important;
    background: var(--vf-blue) !important;
    border-color: var(--vf-blue) !important;
}

.vfleet-btn-outline-light,
.vfleet-btn-outline-light:link,
.vfleet-btn-outline-light:visited {
    color: #fff !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .28);
}

.vfleet-btn-outline-light:hover,
.vfleet-btn-outline-light:focus-visible {
    color: var(--vf-navy) !important;
    background: #fff !important;
    border-color: #fff !important;
}

.vfleet-btn:focus-visible {
    outline: 3px solid var(--vf-yellow);
    outline-offset: 3px;
}

/* =========================================================
   HERO
   ========================================================= */

.vfleet-hero {
    position: relative;
    padding: 92px 0 108px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(56, 189, 248, .18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #f9fcff 0%,
            #eef6fc 52%,
            #fff 100%
        );
}

.vfleet-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -250px;
    bottom: -280px;
    border-radius: 50%;
    background: rgba(15, 76, 129, .055);
}

.vfleet-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 60px;
    align-items: center;
}

.vfleet-hero-copy h1 {
    max-width: 650px;
    margin: 21px 0;
    font-size: clamp(46px, 5.6vw, 74px);
    line-height: .98;
    letter-spacing: -.045em;
}

.vfleet-lead {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 17px;
}

.vfleet-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 22px;
    margin-top: 29px;
}

.vfleet-hero-points span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #42556d;
    font-size: 13px;
    font-weight: 750;
}

.vfleet-hero-points i {
    color: var(--vf-blue);
}

/* =========================================================
   FLEET CONTROL DASHBOARD
   ========================================================= */

.vfleet-hero-visual {
    position: relative;
}

.vfleet-dashboard {
    position: relative;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 27px;
    background: rgba(255, 255, 255, .95);
    box-shadow:
        0 35px 80px rgba(7, 27, 51, .17),
        0 8px 25px rgba(7, 27, 51, .08);
}

.vfleet-dashboard::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 35px -20px -25px 30px;
    border-radius: 30px;
    background: rgba(15, 76, 129, .09);
    transform: rotate(2deg);
}

.vfleet-dashboard-top,
.vfleet-live-demo-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.vfleet-dashboard-top > div:first-child {
    display: grid;
    gap: 3px;
}

.vfleet-dashboard-top span:first-child,
.vfleet-live-demo-head small {
    color: #8492a5;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .11em;
}

.vfleet-dashboard-top strong {
    color: var(--vf-navy);
    font-size: 20px;
}

.vfleet-live-pill,
.vfleet-live-demo-head > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: #14733a;
    background: #eaf9ef;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 850;
}

.vfleet-live-pill i,
.vfleet-live-demo-head > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vf-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .13);
}

.vfleet-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0 13px;
}

.vfleet-kpis article {
    display: grid;
    gap: 3px;
    padding: 14px;
    border-radius: 15px;
    background: var(--vf-bg);
}

.vfleet-kpis article > span {
    color: #728198;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.vfleet-kpis strong {
    color: var(--vf-navy);
    font-size: 24px;
}

.vfleet-kpis small {
    color: #8492a5;
    font-size: 8px;
}

.vfleet-dashboard-main {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    gap: 12px;
}

.vfleet-map {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    border-radius: 18px;
    background:
        linear-gradient(
            32deg,
            #e7edf3 20%,
            transparent 20%
        ) -20px 0 / 85px 85px,
        linear-gradient(
            -32deg,
            #eaf0f5 20%,
            transparent 20%
        ) -20px 0 / 85px 85px,
        #f4f7fa;
}

.vfleet-road {
    position: absolute;
    height: 10px;
    border-radius: 99px;
    background: #fff;
    box-shadow: 0 0 0 1px #dae3eb;
}

.vfleet-road-a {
    width: 420px;
    left: -40px;
    top: 120px;
    transform: rotate(-15deg);
}

.vfleet-road-b {
    width: 350px;
    left: 30px;
    top: 135px;
    transform: rotate(47deg);
}

.vfleet-road-c {
    width: 320px;
    left: 35px;
    top: 125px;
    transform: rotate(87deg);
}

.vfleet-map-label {
    position: absolute;
    z-index: 2;
    color: #8290a3;
    font-size: 9px;
    font-weight: 750;
}

.vfleet-map-label.label-a {
    left: 20px;
    top: 30px;
}

.vfleet-map-label.label-b {
    right: 24px;
    bottom: 26px;
}

.vfleet-car,
.vfleet-live-car {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    background: var(--vf-blue);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 7px 17px rgba(7, 27, 51, .18);
    font-size: 10px;
}

.vfleet-car.car-a {
    left: 18%;
    top: 57%;
}

.vfleet-car.car-b {
    left: 49%;
    top: 25%;
}

.vfleet-car.car-c {
    right: 13%;
    top: 52%;
}

.vfleet-car.car-d {
    left: 48%;
    bottom: 11%;
    color: var(--vf-navy);
    background: var(--vf-yellow);
}

.vfleet-activity {
    padding: 15px;
    border-radius: 18px;
    background: var(--vf-navy);
}

.vfleet-panel-title {
    margin-bottom: 13px;
    color: #fff;
    font-size: 11px;
    font-weight: 850;
}

.vfleet-activity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.vfleet-activity-row:last-child {
    border-bottom: 0;
}

.vfleet-activity-row > i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    color: var(--vf-navy);
    background: var(--vf-yellow);
    border-radius: 10px;
    font-size: 11px;
}

.vfleet-activity-row div {
    min-width: 0;
    display: grid;
}

.vfleet-activity-row b {
    overflow: hidden;
    color: #fff;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vfleet-activity-row span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .58);
    font-size: 8px;
}

.vfleet-preview-note {
    margin-top: 12px;
    color: #8795a7;
    font-size: 9px;
    text-align: right;
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */

.vfleet-feature-grid,
.vfleet-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vfleet-feature-card,
.vfleet-steps article {
    position: relative;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--vf-border);
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 13px 35px rgba(7, 27, 51, .05);
}

.vfleet-feature-card > i,
.vfleet-steps article > i,
.vfleet-card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--vf-blue);
    background: #eaf6fd;
    border-radius: 15px;
    font-size: 20px;
}

.vfleet-feature-card h3,
.vfleet-steps h3 {
    margin: 21px 0 10px;
    font-size: 20px;
}

.vfleet-feature-card p,
.vfleet-steps p {
    margin-bottom: 0;
    font-size: 14px;
}

.vfleet-step-number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #e7edf3;
    font-size: 47px;
    font-weight: 950;
    line-height: 1;
}

/* =========================================================
   LIVE FLEET
   ========================================================= */

.vfleet-split {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 75px;
    align-items: center;
}

.vfleet-live-demo {
    padding: 22px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--vf-border);
    box-shadow: 0 24px 60px rgba(7, 27, 51, .12);
}

.vfleet-live-demo-head {
    margin-bottom: 17px;
}

.vfleet-live-demo-head > div {
    display: grid;
}

.vfleet-live-demo-head b {
    color: var(--vf-navy);
    font-size: 18px;
}

.vfleet-live-map {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: 21px;
    background:
        linear-gradient(
            35deg,
            #e7edf3 18%,
            transparent 18%
        ) -20px 0 / 95px 95px,
        linear-gradient(
            -35deg,
            #eaf0f5 18%,
            transparent 18%
        ) -20px 0 / 95px 95px,
        #f5f8fa;
}

.vfleet-live-route {
    position: absolute;
    height: 11px;
    border-radius: 99px;
    background: #fff;
    box-shadow: 0 0 0 1px #dce5ec;
}

.route-one {
    width: 520px;
    left: -40px;
    top: 175px;
    transform: rotate(-18deg);
}

.route-two {
    width: 450px;
    left: 45px;
    top: 175px;
    transform: rotate(53deg);
}

.route-three {
    width: 390px;
    left: 55px;
    top: 175px;
    transform: rotate(91deg);
}

.vfleet-live-car.live-one {
    left: 20%;
    top: 50%;
}

.vfleet-live-car.live-two {
    left: 56%;
    top: 25%;
}

.vfleet-live-car.live-three {
    right: 18%;
    bottom: 24%;
    color: var(--vf-navy);
    background: var(--vf-yellow);
}

.vfleet-map-status {
    position: absolute;
    right: 17px;
    top: 17px;
    display: grid;
    min-width: 130px;
    padding: 14px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 25px rgba(7, 27, 51, .12);
}

.vfleet-map-status strong {
    color: var(--vf-blue);
    font-size: 25px;
}

.vfleet-map-status span {
    color: #6f7f94;
    font-size: 9px;
}

.vfleet-split-copy > p {
    max-width: 580px;
}

.vfleet-checks {
    display: grid;
    gap: 14px;
    margin: 27px 0;
    padding: 0;
    list-style: none;
}

.vfleet-checks li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #35485f;
    font-weight: 750;
}

.vfleet-checks i {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    color: var(--vf-blue);
    background: #e9f6fc;
    border-radius: 50%;
    font-size: 10px;
}

.vfleet-disclaimer {
    display: block;
    max-width: 580px;
    color: #8995a5;
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================================
   OPERATIONS / REPORTING
   ========================================================= */

.vfleet-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.vfleet-ops-card,
.vfleet-report-card {
    padding: 38px;
    border-radius: 27px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7, 27, 51, .06);
}

.vfleet-ops-card > span,
.vfleet-report-card > span {
    display: inline-block;
    margin-top: 24px;
    color: var(--vf-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
}

.vfleet-ops-card h3,
.vfleet-report-card h3 {
    margin: 12px 0;
    font-size: 29px;
    letter-spacing: -.025em;
}

.vfleet-mini-list {
    display: grid;
    gap: 10px;
    margin-top: 25px;
}

.vfleet-mini-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: #40536b;
    background: var(--vf-bg);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 750;
}

.vfleet-mini-list i {
    color: var(--vf-blue);
}

.vfleet-chart {
    height: 135px;
    display: flex;
    align-items: end;
    gap: 9px;
    margin-top: 25px;
    padding: 16px 16px 0;
    border-radius: 15px;
    background: var(--vf-bg);
}

.vfleet-chart i {
    flex: 1;
    min-width: 15px;
    border-radius: 7px 7px 0 0;
    background:
        linear-gradient(
            180deg,
            var(--vf-sky),
            var(--vf-blue)
        );
}

/* =========================================================
   SAFETY
   ========================================================= */

.vfleet-safety {
    padding: 100px 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(56, 189, 248, .17),
            transparent 25%
        ),
        var(--vf-navy);
}

.vfleet-safety-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
}

.vfleet-safety .vfleet-eyebrow {
    color: var(--vf-sky);
}

.vfleet-safety h2 {
    color: #fff;
}

.vfleet-safety p {
    max-width: 620px;
    color: rgba(255, 255, 255, .72);
}

.vfleet-safety-list {
    display: grid;
    gap: 13px;
}

.vfleet-safety-list article {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 17px;
    background: rgba(255, 255, 255, .06);
}

.vfleet-safety-list article > i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    color: var(--vf-navy);
    background: var(--vf-yellow);
    border-radius: 13px;
}

.vfleet-safety-list article > div {
    display: grid;
}

.vfleet-safety-list b {
    color: #fff;
}

.vfleet-safety-list span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

/* =========================================================
   FAQ
   ========================================================= */

.vfleet-faq-section {
    background: #fff;
}

.vfleet-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 75px;
    align-items: start;
}

.vfleet-faq-intro {
    position: sticky;
    top: 100px;
}

.vfleet-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vf-blue) !important;
    text-decoration: none;
    font-weight: 850;
}

.vfleet-faq-list {
    display: grid;
    gap: 11px;
}

.vfleet-faq-item {
    overflow: hidden;
    border: 1px solid var(--vf-border);
    border-radius: 16px;
    background: #fff;
}

.vfleet-faq-item > button {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: var(--vf-navy);
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
}

.vfleet-faq-item > button i {
    color: var(--vf-blue);
    transition: transform .2s ease;
}

.vfleet-faq-item > button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.vfleet-faq-answer {
    padding: 0 20px 20px;
}

.vfleet-faq-answer p {
    margin: 0;
    font-size: 14px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.vfleet-final {
    padding: 85px 0;
    background: #fff;
}

.vfleet-final-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .65fr;
    gap: 55px;
    align-items: center;
    padding: 55px;
    overflow: hidden;
    border-radius: 31px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(56, 189, 248, .18),
            transparent 27%
        ),
        linear-gradient(
            125deg,
            var(--vf-blue),
            var(--vf-navy)
        );
    box-shadow: 0 25px 60px rgba(7, 27, 51, .16);
}

.vfleet-final .vfleet-eyebrow {
    color: var(--vf-sky);
}

.vfleet-final h2 {
    color: #fff;
    max-width: 650px;
}

.vfleet-final p {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
}

.vfleet-final-visual {
    display: grid;
    place-items: center;
}

.vfleet-final-stack {
    width: min(330px, 100%);
    display: grid;
    gap: 10px;
}

.vfleet-final-stack > span {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 15px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(12px);
}

.vfleet-final-stack i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--vf-navy);
    background: var(--vf-yellow);
    border-radius: 11px;
}

.vfleet-final-stack b {
    color: #fff;
    font-size: 12px;
}

.vfleet-final-stack small {
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

    .vfleet-hero-grid {
        grid-template-columns: 1fr;
    }

    .vfleet-hero-copy {
        max-width: 780px;
    }

    .vfleet-hero-visual {
        max-width: 800px;
    }

    .vfleet-split,
    .vfleet-safety-grid,
    .vfleet-faq-layout {
        grid-template-columns: 1fr;
    }

    .vfleet-faq-intro {
        position: static;
    }
}

@media (max-width: 780px) {

    .vfleet-shell {
        width: min(100% - 28px, 1180px);
    }

    .vfleet-section,
    .vfleet-safety {
        padding: 70px 0;
    }

    .vfleet-hero {
        padding: 65px 0 75px;
    }

    .vfleet-hero-copy h1 {
        font-size: clamp(42px, 13vw, 61px);
    }

    .vfleet-feature-grid,
    .vfleet-steps,
    .vfleet-duo {
        grid-template-columns: 1fr;
    }

    .vfleet-dashboard-main {
        grid-template-columns: 1fr;
    }

    .vfleet-activity {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .vfleet-panel-title {
        grid-column: 1 / -1;
    }

    .vfleet-activity-row {
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 11px;
    }

    .vfleet-final-card {
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .vfleet-final-visual {
        justify-items: start;
    }
}

@media (max-width: 540px) {

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

    .vfleet-btn {
        width: 100%;
    }

    .vfleet-hero-points {
        display: grid;
        gap: 11px;
    }

    .vfleet-dashboard {
        padding: 14px;
        border-radius: 21px;
    }

    .vfleet-kpis {
        gap: 6px;
    }

    .vfleet-kpis article {
        padding: 10px;
    }

    .vfleet-kpis strong {
        font-size: 20px;
    }

    .vfleet-map {
        min-height: 240px;
    }

    .vfleet-activity {
        grid-template-columns: 1fr;
    }

    .vfleet-live-map {
        height: 300px;
    }

    .vfleet-feature-card,
    .vfleet-steps article,
    .vfleet-ops-card,
    .vfleet-report-card {
        padding: 25px;
    }

    .vfleet-section-head h2,
    .vfleet-split-copy h2,
    .vfleet-safety h2,
    .vfleet-faq-intro h2,
    .vfleet-final h2 {
        font-size: 34px;
    }

    .vfleet-final {
        padding: 60px 0;
    }

    .vfleet-final-card {
        padding: 29px 22px;
        border-radius: 24px;
    }

    .vfleet-final-stack > span {
        grid-template-columns: 40px 1fr;
    }

    .vfleet-final-stack small {
        grid-column: 2;
    }
}
