/* ===========================
   Our Truck Fleet – Nomad Move
   =========================== */

.nm-fleet-page {
    background: #f4f7fb;
}

/* HERO — светлый, аккуратный, без дури */

.nm-fleet-page .fleet-hero {
    padding: 110px 0 60px;
    background:
        radial-gradient(circle at top left, rgba(98,208,201,0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(232,220,196,0.20), transparent 55%);
}

.nm-fleet-page .fleet-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.nm-fleet-page .fleet-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(98,208,201,0.18);
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

/* одна аккуратная полоска под hero */

.nm-fleet-page .fleet-hero::after {
    content: "";
    display: block;
    width: min(860px, 74vw);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), #0d2a45);
    margin: 26px auto 0;
    opacity: 0.9;
}

.nm-fleet-page .fleet-hero-inner h1 {
    margin: 0 0 8px;
    font-size: 36px;
    line-height: 1.15;
    color: var(--dark);
}

.nm-fleet-page .fleet-hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--dark);
}

.nm-fleet-page .fleet-hero-text {
    margin: 0 auto 6px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 640px;
    opacity: 0.95;
}

/* MAIN */

.nm-fleet-page .fleet-main {
    padding: 44px 0 80px;
}

.nm-fleet-page .fleet-main .container {
    max-width: 1100px;
}

/* Секции — без линий, без теней, только спокойные блоки */

.nm-fleet-page .fleet-section {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(13,42,69,0.06);
    padding: 22px 22px 20px;
    margin-bottom: 28px;
}

.nm-fleet-page .fleet-section-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #0d2a45;
}

/* Общие текстовые стили */

.nm-fleet-page .fleet-text {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #203247;
}

.nm-fleet-page .fleet-list {
    margin: 4px 0 8px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #203247;
}

/* 2-колоночные блоки */

.nm-fleet-page .fleet-two-col {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 20px;
    align-items: flex-start;
}

.nm-fleet-page .fleet-two-col--stack {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
}

.nm-fleet-page .fleet-two-col--gap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nm-fleet-page .fleet-col {
    min-width: 0;
}

/* OVERVIEW — лёгкий выделенный столбец справа */

.nm-fleet-page .fleet-section--overview {
    max-width: 900px;
    margin: 0 auto 30px;
}

.nm-fleet-page .fleet-col--highlight {
    border-radius: 14px;
    background: #f8fbfd;
    border: 1px dashed rgba(13,42,69,0.15);
    padding: 14px 14px 16px;
}

.nm-fleet-page .fleet-tag-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(13,42,69,0.7);
    margin: 0 0 10px;
}

.nm-fleet-page .fleet-tag-grid {
    display: grid;
    gap: 10px;
}

.nm-fleet-page .fleet-tag {
    border-radius: 999px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid rgba(13,42,69,0.08);
    display: flex;
    flex-direction: column;
}

.nm-fleet-page .fleet-tag-main {
    font-size: 14px;
    font-weight: 600;
    color: #0d2a45;
}

.nm-fleet-page .fleet-tag-sub {
    font-size: 12px;
    color: rgba(13,42,69,0.75);
}

/* WHAT COMES STANDARD – карточки */

.nm-fleet-page .fleet-section--standard {
    margin-bottom: 30px;
}

.nm-fleet-page .fleet-section-header {
    margin-bottom: 10px;
}

.nm-fleet-page .fleet-standard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 992px) {
    .nm-fleet-page .fleet-standard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nm-fleet-page .fleet-standard-grid {
        grid-template-columns: 1fr;
    }
}

.nm-fleet-page .fleet-card {
    border-radius: 14px;
    background: #f9fbfd;
    border: 1px solid rgba(13,42,69,0.08);
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nm-fleet-page .fleet-card-title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #0d2a45;
}

.nm-fleet-page .fleet-card-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #203247;
}

.nm-fleet-page .fleet-card-list {
    margin: 2px 0 4px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #203247;
}

.nm-fleet-page .fleet-card--wide {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .nm-fleet-page .fleet-card--wide {
        grid-column: span 2;
    }
}
@media (max-width: 640px) {
    .nm-fleet-page .fleet-card--wide {
        grid-column: span 1;
    }
}

/* CLEAN & MAINTAINED */

.nm-fleet-page .fleet-section--clean {
    max-width: 900px;
    margin: 0 auto 28px;
}

.nm-fleet-page .fleet-col--note {
    border-radius: 12px;
    background: #f8fbfd;
    border: 1px solid rgba(13,42,69,0.06);
    padding: 12px 14px;
}

.nm-fleet-page .fleet-note {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(13,42,69,0.9);
}

/* BAY AREA + LONG DISTANCE */

.nm-fleet-page .fleet-section--paired {
    margin-bottom: 28px;
}

/* WHY OUR FLEET MATTERS */

.nm-fleet-page .fleet-section--why {
    max-width: 780px;
    margin: 0 auto 30px;
}

.nm-fleet-page .fleet-points-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 30px;
    margin: 4px 0 8px;
}

@media (max-width: 640px) {
    .nm-fleet-page .fleet-points-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   CTA – с оранжевой полоской, шире
   =========================== */

.nm-fleet-page .fleet-section--cta {
    max-width: 1000px;
    margin: 40px auto 0;
    background: #0d2a45;
    border-radius: 18px;
    border: 1px solid #0d2a45;
    padding: 0;
}

.nm-fleet-page .fleet-cta--wide {
    max-width: 920px; /* шире, чем раньше */
    margin: 0 auto;
    padding: 24px 26px 26px;
    color: #ffffff;
    position: relative;
}

/* Оранжевая полоска сверху внутри блока */
/* CTA – оранжевая полоса по левому торцу */

.nm-fleet-page .fleet-section--cta {
    max-width: 1000px;
    margin: 40px auto 0;
    background: #0d2a45;
    border-radius: 18px;
    border: 1px solid #0d2a45;
    padding: 0;
}

.nm-fleet-page .fleet-cta--wide {
    max-width: 920px;
    margin: 0 auto;
    padding: 24px 26px 26px;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* вот это главное: вертикальная полоска слева */
.nm-fleet-page .fleet-cta--wide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f5a623, #ff7b3a);
}

/* чтобы текст не прилипал к полоске */
.nm-fleet-page .fleet-cta--wide-inner {
    padding-left: 18px;
}

.nm-fleet-page .fleet-section--cta .fleet-section-title {
    color: #ffffff;
    margin-bottom: 8px;
}

.nm-fleet-page .fleet-cta-text {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #e3ecf5;
}

.nm-fleet-page .fleet-cta-contacts {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .nm-fleet-page .fleet-cta--wide {
        padding: 20px 18px 22px;
    }
    .nm-fleet-page .fleet-cta--wide-inner {
        padding-left: 16px;
    }
}


.nm-fleet-page .fleet-section--cta .fleet-section-title {
    color: #ffffff;
    margin-bottom: 8px;
}

.nm-fleet-page .fleet-cta-text {
    margin: 6px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #e3ecf5;
}

.nm-fleet-page .fleet-cta-contacts {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* адаптив */

@media (max-width: 768px) {
    .nm-fleet-page .fleet-section--cta {
        margin-top: 32px;
    }

    .nm-fleet-page .fleet-cta--wide {
        padding: 20px 18px 22px;
    }
}

/* ===========================
   Fleet highlights (5 блоков с цифрами)
   =========================== */

.nm-fleet-page .fleet-section--highlights {
    max-width: 1000px;
    margin: 0 auto 36px;
    border-radius: 0;
    border: none;
    padding: 0;
    background: transparent;
}

.nm-fleet-page .fleet-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
}

@media (max-width: 900px) {
    .nm-fleet-page .fleet-highlights {
        grid-template-columns: 1fr;
    }
}

.nm-fleet-page .fleet-highlight-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(13,42,69,0.06);
    padding: 16px 18px 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.nm-fleet-page .fleet-highlight-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px; /* чуть опустить, чтобы по вертикали было красиво */
}

.nm-fleet-page .fleet-highlight-body {
    flex: 1;
    min-width: 0;
}

.nm-fleet-page .fleet-highlight-title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #0d2a45;
}

.nm-fleet-page .fleet-highlight-text {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #203247;
}

.nm-fleet-page .fleet-highlight-list {
    margin: 4px 0 6px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #203247;
}

/* широкий элемент, тянется на две колонки в десктопной сетке */
.nm-fleet-page .fleet-highlight-item--wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .nm-fleet-page .fleet-highlight-item--wide {
        grid-column: span 1; /* на мобиле всё равно одна колонка */
    }
}
