/**
 * Security Solutions detail — Command UI (security-solutions.php).
 */

.lb-sec-page {
    background: #020408;
    color: #fff;
}

.lb-sec-tag {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.62rem;
    color: rgba(0, 212, 255, 0.8);
    text-transform: lowercase;
    letter-spacing: 0.04em;
}

.lb-sec-section-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lb-sec-section-desc {
    margin: 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
}

.lb-sec-section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

/* —— Hero —— */
.lb-sec-hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: center;
    padding: clamp(5.5rem, 10vh, 7rem) 0 clamp(2rem, 4vh, 3rem);
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 45% at 15% 20%, rgba(255, 60, 80, 0.06), transparent 50%),
        radial-gradient(ellipse 75% 50% at 50% 0%, rgba(0, 212, 255, 0.1), transparent 55%),
        linear-gradient(180deg, #020408 0%, #060b14 100%);
}

.lb-sec-hero__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lb-sec-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 10%, transparent 75%);
}

.lb-sec-hero__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.04) 50%, transparent 100%);
    background-size: 100% 120px;
    animation: lbSecScan 8s linear infinite;
    opacity: 0.5;
}

@keyframes lbSecScan {
    from { background-position: 0 -120px; }
    to { background-position: 0 100%; }
}

.lb-sec-hero__aurora {
    position: absolute;
    inset: -15%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.12), transparent 42%),
        radial-gradient(circle at 80% 60%, rgba(255, 50, 90, 0.06), transparent 38%);
    filter: blur(48px);
    animation: lbSecAurora 16s ease-in-out infinite alternate;
}

@keyframes lbSecAurora {
    from { transform: translate(0, 0); }
    to { transform: translate(2%, -1.5%); }
}

.lb-sec-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.lb-sec-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.lb-sec-breadcrumb a {
    color: rgba(0, 212, 255, 0.75);
    text-decoration: none;
}

.lb-sec-breadcrumb a:hover { color: #00d4ff; }

.lb-sec-hero__status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.22);
    background: rgba(0, 212, 255, 0.06);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: rgba(0, 212, 255, 0.8);
    text-transform: lowercase;
}

.lb-sec-hero__status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.55);
    animation: lbSecPulse 2s ease-in-out infinite;
}

@keyframes lbSecPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.45; }
}

.lb-sec-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lb-sec-hero__accent {
    background: linear-gradient(90deg, #00d4ff, #7dd3fc, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lb-sec-hero__desc {
    margin: 0 0 1.25rem;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    font-size: 1.02rem;
}

.lb-sec-hero__points {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.lb-sec-hero__points li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.lb-sec-hero__points i {
    color: #00d4ff;
    margin-top: 0.15rem;
}

.lb-sec-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lb-sec-hero__panel {
    position: relative;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 18px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(155deg, rgba(10, 16, 28, 0.95), rgba(4, 6, 12, 0.92));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    text-align: center;
    overflow: hidden;
}

.lb-sec-hero__panel-fx span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(0, 212, 255, 0.4);
    border-style: solid;
    pointer-events: none;
}

.lb-sec-hero__panel-fx span:nth-child(1) { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.lb-sec-hero__panel-fx span:nth-child(2) { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.lb-sec-hero__panel-fx span:nth-child(3) { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.lb-sec-hero__panel-fx span:nth-child(4) { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.lb-sec-hero__panel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.75rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    font-size: 1.6rem;
    color: #00d4ff;
}

.lb-sec-hero__panel-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    color: rgba(0, 212, 255, 0.7);
    text-transform: lowercase;
    margin-bottom: 0.35rem;
}

.lb-sec-hero__panel-value {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lb-sec-hero__panel-label {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.lb-sec-hero__panel-img {
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.12);
}

.lb-sec-hero__panel-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 180px;
}

/* —— Stats —— */
.lb-sec-stats {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.lb-sec-stats__head {
    margin-bottom: 1.75rem;
}

.lb-sec-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lb-sec-stat {
    padding: 1.25rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.14);
    background: linear-gradient(160deg, rgba(8, 14, 24, 0.9), rgba(4, 6, 10, 0.85));
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.lb-sec-stat:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-2px);
}

.lb-sec-stat__value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.lb-sec-stat__label {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.lb-sec-stat__delta {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    font-family: 'JetBrains Mono', monospace;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.lb-sec-stat__delta.is-up { color: #00ff88; }
.lb-sec-stat__delta.is-down { color: #ff6b8a; }
.lb-sec-stat__delta.is-neutral { color: rgba(0, 212, 255, 0.75); }

/* —— Overview —— */
.lb-sec-overview {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.lb-sec-overview__copy p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
    max-width: 48rem;
}

/* —— Outcomes —— */
.lb-sec-outcomes {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: rgba(0, 212, 255, 0.02);
}

.lb-sec-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lb-sec-outcome {
    display: flex;
    gap: 0.85rem;
    padding: 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    background: rgba(6, 10, 18, 0.6);
}

.lb-sec-outcome__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.lb-sec-outcome p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

/* —— Deliverables —— */
.lb-sec-deliverables {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lb-sec-deliverables__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lb-sec-deliverable {
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    background: linear-gradient(165deg, rgba(10, 16, 26, 0.85), rgba(4, 6, 12, 0.8));
}

.lb-sec-deliverable h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #00d4ff;
}

.lb-sec-deliverable ul {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    line-height: 1.55;
}

.lb-sec-deliverable li + li { margin-top: 0.35rem; }

/* —— Offerings —— */
.lb-sec-offerings {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    border-top: 1px solid rgba(0, 212, 255, 0.06);
}

.lb-sec-offerings__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.lb-sec-offering {
    padding: 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    background: rgba(6, 10, 18, 0.55);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lb-sec-offering:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.08);
}

.lb-sec-offering__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.65rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-size: 1rem;
}

.lb-sec-offering h3 {
    margin: 0 0 0.4rem;
    font-size: 0.92rem;
}

.lb-sec-offering p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.5;
}

a.lb-sec-offering--link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.lb-sec-offering__more {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00d4ff;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s;
}

a.lb-sec-offering--link:hover .lb-sec-offering__more {
    opacity: 1;
    transform: translateY(0);
}

/* —— Tech —— */
.lb-sec-tech {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.lb-sec-tech__track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.lb-sec-tech__pill {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    background: rgba(0, 212, 255, 0.05);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

/* —— Use cases —— */
.lb-sec-usecases {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lb-sec-usecases__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lb-sec-usecase {
    padding: 1.15rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    background: rgba(6, 10, 18, 0.5);
}

.lb-sec-usecase__num {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: #00d4ff;
}

.lb-sec-usecase p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.55;
}

/* —— FAQ —— */
.lb-sec-faq {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: rgba(0, 0, 0, 0.2);
}

.lb-sec-faq__list {
    max-width: 48rem;
    margin: 0 auto;
    display: grid;
    gap: 0.65rem;
}

.lb-sec-faq__item {
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    background: rgba(6, 10, 18, 0.6);
    overflow: hidden;
}

.lb-sec-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.lb-sec-faq__q i {
    flex-shrink: 0;
    color: #00d4ff;
    transition: transform 0.25s ease;
}

.lb-sec-faq__item.is-open .lb-sec-faq__q i {
    transform: rotate(45deg);
}

.lb-sec-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lb-sec-faq__item.is-open .lb-sec-faq__a {
    max-height: 240px;
}

.lb-sec-faq__a p {
    margin: 0;
    padding: 0 1.1rem 1rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* —— Case studies —— */
.lb-sec-cases {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lb-sec-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lb-sec-case {
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.14);
    background: linear-gradient(160deg, rgba(10, 16, 26, 0.88), rgba(4, 6, 12, 0.82));
}

.lb-sec-case h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.lb-sec-case__summary {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}

.lb-sec-case__result {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #00ff88;
}

/* —— Related —— */
.lb-sec-related {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.lb-sec-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lb-sec-related__card {
    display: block;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    background: rgba(6, 10, 18, 0.55);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.lb-sec-related__card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-3px);
    color: #fff;
}

.lb-sec-related__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.65rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

.lb-sec-related__card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.lb-sec-related__card p {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.5;
}

.lb-sec-related__link {
    font-size: 0.78rem;
    color: #00d4ff;
}

/* —— CTA —— */
.lb-sec-cta {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5rem);
}

.lb-sec-cta__panel {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(155deg, rgba(8, 14, 26, 0.95), rgba(4, 6, 12, 0.9));
    text-align: center;
    overflow: hidden;
}

.lb-sec-cta__fx {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.12), transparent 55%);
    pointer-events: none;
}

.lb-sec-cta__title {
    position: relative;
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
}

.lb-sec-cta__panel p {
    position: relative;
    margin: 0 auto 1.5rem;
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.6;
}

.lb-sec-cta__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Shared buttons (match services-command) */
.lb-sec-page .lb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lb-sec-page .lb-btn--primary {
    background: linear-gradient(135deg, #00b8e6, #00d4ff);
    color: #020408;
    border-color: rgba(0, 212, 255, 0.5);
}

.lb-sec-page .lb-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 212, 255, 0.25);
    color: #020408;
}

.lb-sec-page .lb-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(0, 212, 255, 0.28);
}

.lb-sec-page .lb-btn--ghost:hover {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.06);
    color: #fff;
}

/* Reveal */
.lb-sec-page .lb-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--lb-reveal-delay, 0ms);
}

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

.lb-sec-page .lb-reveal--delay {
    transition-delay: 120ms;
}

/* —— Responsive —— */
@media (max-width: 991px) {
    .lb-sec-hero__layout {
        grid-template-columns: 1fr;
    }

    .lb-sec-hero__panel {
        max-width: 420px;
        margin: 0 auto;
    }

    .lb-sec-offerings__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lb-sec-deliverables__grid,
    .lb-sec-outcomes__grid,
    .lb-sec-usecases__grid {
        grid-template-columns: 1fr;
    }

    .lb-sec-stats__grid {
        grid-template-columns: 1fr;
    }

    .lb-sec-related__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .lb-sec-offerings__grid {
        grid-template-columns: 1fr;
    }

    .lb-sec-cases__grid {
        grid-template-columns: 1fr;
    }

    .lb-sec-hero__actions,
    .lb-sec-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lb-sec-page .lb-btn {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lb-sec-hero__scan,
    .lb-sec-hero__aurora,
    .lb-sec-hero__status-dot {
        animation: none;
    }

    .lb-sec-page .lb-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* —— Fleet Management & GPS —— */
.lb-sec-fleet {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(37, 99, 235, 0.08), transparent 55%),
        linear-gradient(180deg, #060b14 0%, #020408 100%);
    overflow: hidden;
}

.lb-sec-fleet__fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lb-sec-fleet__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 15%, transparent 75%);
}

.lb-sec-fleet__head {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    max-width: 46rem;
}

.lb-sec-fleet__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lb-sec-fleet__metric {
    padding: 1.15rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    background: rgba(37, 99, 235, 0.04);
}

.lb-sec-fleet__metric-value {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #60a5fa;
    line-height: 1.1;
}

.lb-sec-fleet__metric-label {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.lb-sec-fleet__metric-delta {
    margin-top: 0.25rem;
    font-size: 0.68rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    color: rgba(96, 165, 250, 0.65);
    text-transform: lowercase;
}

.lb-sec-fleet__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lb-sec-fleet__subhead {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
}

.lb-sec-fleet__feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.lb-sec-fleet__feature {
    display: flex;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.lb-sec-fleet__feature-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.12);
    color: #60a5fa;
    font-size: 0.85rem;
}

.lb-sec-fleet__feature strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.88rem;
}

.lb-sec-fleet__feature p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.lb-sec-fleet__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lb-sec-fleet__panel {
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    background: rgba(0, 212, 255, 0.03);
}

.lb-sec-fleet__platform + .lb-sec-fleet__platform {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-sec-fleet__platform strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #00d4ff;
    font-size: 0.9rem;
}

.lb-sec-fleet__platform p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.lb-sec-fleet__hardware {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lb-sec-fleet__hw-pill {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.78rem;
}

.lb-sec-fleet__hw-pill strong {
    color: rgba(255, 255, 255, 0.9);
}

.lb-sec-fleet__hw-pill em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.45);
}

.lb-sec-fleet__steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.lb-sec-fleet__step {
    padding: 0.9rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.lb-sec-fleet__step-num {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 0.62rem;
    color: rgba(0, 212, 255, 0.7);
}

.lb-sec-fleet__step strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.82rem;
}

.lb-sec-fleet__step p {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.5);
}

.lb-sec-fleet__clients {
    padding-top: 0.5rem;
}

.lb-sec-fleet__client-line {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .lb-sec-fleet__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lb-sec-fleet__layout {
        grid-template-columns: 1fr;
    }

    .lb-sec-fleet__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .lb-sec-fleet__metrics,
    .lb-sec-fleet__feature-grid,
    .lb-sec-fleet__steps {
        grid-template-columns: 1fr;
    }
}
