/* ========== SCMX ? Shared styles (all pages) ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #1a1a1a;
    color: #e0e0e0;
}

/* Body: no top padding when full-viewport nav (index) or when banner wrapper is present */
body.has-top-nav,
body.has-banner-page {
    padding-top: 0;
}

/* Other pages without these classes can use default padding if needed */
body:not(.has-top-nav):not(.has-banner-page) {
    padding-top: 80px;
}

/* ========== Page header wrap ? banner background for main pages ========== */
/* Default: all main pages use the image below. To give one page a different background,
   add a rule like: .page-header-wrap.page-big-picture { background-image: ... url('...'); }
   Page classes: page-big-picture, page-orchestration-gap, page-core-components,
   page-exchange-panel, page-control-towers, page-who-its-for, page-use-cases,
   page-why-scmx, page-about, page-get-started, page-poc-form, page-partner-form, page-talk-to-team, page-order-management, page-freight-management, page-tms */
.page-header-wrap {
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 100%),
                      url('background-images/aerial-view-cargo-ship-cargo-container-harbor.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    /* height: 100%; */
}

.page-header-wrap.page-order-management {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 100%),
                      url('background-images/spacious-warehouse-filled-with-commercial-goods-supplies.jpg');
    background-position: center center;
}

.page-header-wrap.page-freight-management {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 100%),
                      url('background-images/container-cargo-freight-ship-port.jpg');
    background-position: center center;
}

.page-header-wrap.page-tms {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 100%),
                      url('background-images/aerial-shot-large-shipping-containers-area.jpg');
    background-position: center center;
}

.page-header-wrap .top-nav {
    background: transparent !important;
    background-image: none !important;
}

.page-header-wrap .top-nav.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    background-image: none !important;
}

/* Index: transparent nav so carousel/slider image shows through menu */
body.has-top-nav .top-nav {
    background: transparent !important;
    background-image: none !important;
}

body.has-top-nav .top-nav.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    background-image: none !important;
}

/* ========== Top nav (shared) ========== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 31px;
    background-color: rgba(26, 26, 26, 0.4);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.28) 100%),
                      url('background-images/city-sparkles-light-streets-night.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, background-color 0.3s ease;
    overflow: visible;
}

.top-nav.scrolled {
    background-color: rgba(26, 26, 26, 0.92);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                      url('background-images/city-sparkles-light-streets-night.jpg');
}

.top-nav .logo-link {
    display: flex;
    align-items: center;
}

.top-nav .logo-link img {
    max-height: 97px;
    width: auto;
}

.top-nav .logo-link,
.top-nav-menu {
    pointer-events: auto;
}

.top-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.top-nav-menu li {
    position: relative;
}

/* Unique nav dropdown (avoid Bootstrap .dropdown / .dropdown-menu conflict) */
.top-nav-menu .nav-dropdown {
    position: relative;
    pointer-events: auto;
    z-index: 1;
}
.top-nav-menu .nav-dropdown.open {
    z-index: 10002;
}
.top-nav-menu .nav-dropdown.open:hover {
    z-index: 10002;
}

.top-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.top-nav-menu a:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.top-nav-menu .nav-dropdown-toggle {
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.top-nav-menu .nav-dropdown-toggle:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.top-nav-menu .nav-dropdown-toggle::after {
    content: '\25BE';
    font-size: 12px;
    opacity: 0.8;
    margin-left: 4px;
}

.top-nav-menu .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 12px 0 8px;
    margin: 0;
    margin-top: -4px;
    background: rgba(30, 30, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10001;
    pointer-events: none;
}

/* Invisible bridge so hover doesn't break between toggle and menu */
.top-nav-menu .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 16px;
    pointer-events: auto;
}

.top-nav-menu .nav-dropdown:hover .nav-dropdown-menu,
.top-nav-menu .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.top-nav-menu .nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
}

.top-nav-menu .nav-dropdown-menu a:hover {
    background: rgba(255, 140, 0, 0.15);
}

/* Hamburger toggle ? hidden on desktop */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    pointer-events: auto;
}
.nav-toggle:hover {
    background: rgba(255, 140, 0, 0.2);
    color: #ff8c00;
}
.nav-toggle .nav-toggle-close {
    display: none;
}
.top-nav.menu-open .nav-toggle .nav-toggle-icon:first-of-type {
    display: none;
}
.top-nav.menu-open .nav-toggle .nav-toggle-close {
    display: inline;
}

@media (max-width: 768px) {
    .top-nav {
        padding: 12px 16px;
        flex-wrap: nowrap;
    }
    .top-nav .logo-link img {
        max-height: 40px;
    }
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }
    .top-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        margin: 0;
        background: rgba(26, 26, 26, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .top-nav.menu-open .top-nav-menu {
        display: flex;
    }
    .top-nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .top-nav-menu > li:last-child {
        border-bottom: none;
    }
    .top-nav-menu a,
    .top-nav-menu .nav-dropdown-toggle {
        display: block;
        width: 100%;
        font-size: 15px;
        padding: 14px 20px;
        text-align: left;
        border-radius: 0;
    }
    .top-nav-menu .nav-dropdown-toggle::after {
        float: right;
        transition: transform 0.2s;
    }
    .top-nav-menu .nav-dropdown.open .nav-dropdown-toggle::after {
        transform: rotate(180deg);
    }
    .top-nav-menu .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        padding: 0 0 8px;
        margin: 0;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.25);
        border: none;
        border-radius: 0;
        box-shadow: none;
        pointer-events: auto;
    }
    .top-nav-menu .nav-dropdown-menu::before {
        display: none;
    }
    .top-nav-menu .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    .top-nav-menu .nav-dropdown-menu a {
        padding: 12px 20px 12px 36px;
        font-size: 14px;
    }
}

/* ========== Page banner (About, POC, Partner, Talk) ? shares wrapper bg ========== */
.page-banner {
    min-height: 141px;
    background:rgb(0 0 0 / 62%);
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    padding: 112px 55px;
    text-align: center;
    padding-bottom: 14px;
}

.page-banner h1 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 12px;
}

.page-banner h1 .highlight {
    color: #ff8c00;
}

.page-banner .banner-desc {
    font-size: 18px;
    color: #bbb;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 24px 14px;
        min-height: auto;
    }
    .page-banner h1 {
        font-size: 28px;
    }
    .page-banner .banner-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 70px 16px 12px;
    }
    .page-banner h1 {
        font-size: 24px;
    }
}

/* ========== Page section (About) ========== */
.page-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-section h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 24px;
}

.page-section h1 .highlight {
    color: #ff8c00;
}

.page-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #bbb;
}

.page-section .page-section-subtitle {
    font-size: 24px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-section .page-section-subtitle:first-of-type {
    margin-top: 32px;
}

.page-section .page-section-cta {
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.page-section .page-section-cta:hover {
    background: transparent;
    color: #ff8c00;
}

/* ========== About Us page ? professional layout ========== */
.about-page-content {
    max-width: 920px;
    padding: 64px 40px 96px;
}

.about-page-content .about-page-title {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-page-content .about-page-lead {
    font-size: 19px;
    line-height: 1.75;
    color: #ccc;
    margin-bottom: 40px;
}

.about-page-content .about-hero-img {
    text-align: center;
    margin-bottom: 40px;
}

.about-page-content .about-hero-img img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.about-page-content .about-block {
    background: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.about-page-content .about-block:hover {
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.about-page-content .about-block .page-section-subtitle {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

.about-page-content .about-block p {
    margin-bottom: 0;
    font-size: 17px;
}

.about-page-content .about-join-title {
    margin-top: 44px;
    margin-bottom: 20px;
}

.about-page-content .about-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}

.about-page-content .about-join-card {
    background: rgba(42, 42, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.about-page-content .about-join-card:hover {
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.about-page-content .about-join-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #ff8c00;
    margin: 0 0 12px 0;
}

.about-page-content .about-join-card p {
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    color: #bbb;
}

.about-page-content .about-join-outro {
    margin-bottom: 24px;
}

.about-page-content .about-cta-wrap {
    margin-bottom: 32px;
}

.about-page-content .about-cta-wrap .page-section-cta {
    margin-right: 14px;
    margin-bottom: 10px;
}

.about-page-content .about-explore {
    margin-bottom: 0;
}

.about-page-content .about-explore a {
    color: #ff8c00;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.about-page-content .about-explore a:hover {
    color: #ffa533;
}

@media (max-width: 768px) {
    .about-page-content .about-join-grid {
        grid-template-columns: 1fr;
    }
    .about-page-content {
        padding: 48px 24px 72px;
    }
}

/* ========== Section pages (one image + content) ========== */
.section-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.section-page-content .section-text {
    flex: 1;
}

.section-page-content .section-image-wrap {
    flex: 0 0 42%;
    position: sticky;
    top: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-page-content .section-image-wrap img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Core Components page: image 20% bigger */
.section-page-content.core-components-content .section-image-wrap {
    flex: 0 0 50.4%;
}

.section-page-content .section-subtitle {
    font-size: 18px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 28px;
}

.section-page-content .section-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.section-page-content .section-cards li {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 5px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.section-page-content .section-cards li:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.1);
}

.section-page-content .section-cards li strong {
    color: #ff8c00;
    font-size: 16px;
}

.section-page-content .section-cards li p,
.section-page-content .section-cards li {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.section-page-content .section-cta {
    margin-top: 32px;
}

.section-page-content .section-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.section-page-content .section-cta a:hover {
    background: transparent;
    color: #ff8c00;
}

@media (max-width: 768px) {
    .section-page-content {
        flex-direction: column;
        padding: 40px 20px 60px;
    }
    .section-page-content .section-image-wrap {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
        order: -1;
    }
}

/* ========== Order Management (SCMONE) page ========== */
.order-section {
    background: #1a1a1a;
    padding: 60px 40px 80px;
}

.order-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-native-hero-img {
    margin-bottom: 2rem;
}
.ai-native-hero-img img {
    max-width: 34%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}
.order-feature-card-outcome {
    border-color: rgba(76, 175, 80, 0.4);
}
.order-feature-card-outcome:hover {
    border-color: rgba(76, 175, 80, 0.6);
    box-shadow: 0 8px 28px rgba(76, 175, 80, 0.15);
}
.order-feature-card-outcome .order-feature-title {
    color: #81c784;
}

.order-sec-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ff8c00;
    margin-bottom: 8px;
    text-align: center;
}

.order-sec-subtitle {
    font-size: 22px;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.order-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.order-feature-card {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-feature-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 8px 28px rgba(255, 140, 0, 0.12);
}

.order-feature-img {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 30, 30, 0.6);
}

.order-feature-img img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
}

.order-feature-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.order-feature-text {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
}

.order-lifecycle-section {
    position: relative;
    padding: 70px 40px 90px;
    overflow: hidden;
}

.order-lifecycle-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%),
                      url('background-images/container-cargo-freight-ship-port.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.order-lifecycle-section .order-section-inner {
    position: relative;
    z-index: 1;
}

.order-lifecycle-section .order-sec-title {
    font-size: 28px;
    text-transform: none;
    letter-spacing: normal;
    color: #fff;
    margin-bottom: 12px;
}

.order-lifecycle-section .order-sec-subtitle {
    display: none;
}

.order-lifecycle-section .order-sec-title .highlight {
    color: #ff8c00;
}

.freight-lifecycle-bg {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%),
                      url('background-images/aerial-view-cargo-ship-cargo-container-harbor.jpg');
}

.order-lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.order-lifecycle-block {
    background: rgba(42, 42, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-lifecycle-block:hover {
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 0 8px 28px rgba(255, 140, 0, 0.1);
}

.order-lifecycle-icon {
    margin-bottom: 20px;
}

.order-lifecycle-icon img {
    width: 100px;
    height: auto;
    display: block;
}

.order-lifecycle-title {
    font-size: 18px;
    color: #ff8c00;
    margin-bottom: 14px;
}

.order-lifecycle-title a {
    color: inherit;
    text-decoration: none;
}

.order-lifecycle-text {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .order-features-grid,
    .order-lifecycle-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .order-section {
        padding: 40px 20px 60px;
    }
    .order-lifecycle-section {
        padding: 50px 20px 70px;
    }
    .order-sec-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .order-feature-img,
    .order-feature-img img {
        height: 200px;
    }
}

/* ========== TMS (Transport Management System) page ========== */
.tms-hero-section .tms-hero-title {
    font-size: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.tms-hero-section .tms-hero-title .highlight {
    color: #ff8c00;
}

.tms-hero-section .tms-hero-sub {
    font-size: 18px;
    color: #bbb;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.tms-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tms-cap-card {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tms-cap-card:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 8px 28px rgba(255, 140, 0, 0.12);
}

.tms-cap-img {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    background: rgba(30, 30, 30, 0.6);
}

.tms-cap-img img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

.tms-cap-title {
    font-size: 18px;
    color: #ff8c00;
    margin-bottom: 14px;
}

.tms-cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tms-cap-list li {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.65;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.tms-cap-list li::before {
    content: '\2022';
    color: #ff8c00;
    position: absolute;
    left: 0;
}

.tms-strip-section {
    background: rgba(26, 26, 26, 0.95);
    padding: 50px 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tms-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tms-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tms-strip-block {
    background: rgba(42, 42, 42, 0.6);
    border-left: 4px solid #ff8c00;
    border-radius: 0 10px 10px 0;
    padding: 28px 24px;
    position: relative;
}

.tms-strip-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 12px;
}

.tms-strip-text {
    font-size: 15px;
    color: #bbb;
    line-height: 1.6;
}

.tms-strip-icon,
.tms-strip-icons {
    margin-top: 16px;
    color: #ff8c00;
    font-size: 24px;
}

.tms-strip-icons {
    display: flex;
    gap: 16px;
}

.tms-ftl-sub {
    font-size: 16px;
    color: #bbb;
    text-align: center;
    margin-bottom: 32px;
}

.tms-process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 4px;
    margin-bottom: 40px;
}

.tms-flow-step {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 100px;
    text-align: center;
}

.tms-flow-label {
    font-size: 13px;
    color: #e0e0e0;
    font-weight: 500;
}

.tms-flow-arrow {
    color: #ff8c00;
    font-size: 18px;
}

.tms-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tms-pillar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.35);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    color: #fff;
}

.tms-pillar i {
    color: #ff8c00;
}

.tms-images-section .tms-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tms-image-card {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tms-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.tms-image-caption {
    padding: 14px;
    font-size: 14px;
    color: #bbb;
    text-align: center;
}

@media (max-width: 992px) {
    .tms-capabilities-grid {
        grid-template-columns: 1fr;
    }
    .tms-strip-grid {
        grid-template-columns: 1fr;
    }
    .tms-process-flow {
        justify-content: flex-start;
    }
    .tms-images-section .tms-images-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tms-process-flow {
        gap: 6px;
    }
    .tms-flow-step {
        min-width: 80px;
        padding: 10px 12px;
    }
    .tms-flow-label {
        font-size: 12px;
    }
}

/* ========== Big Picture page: centered content, balanced spacing ========== */
.big-picture-page {
    max-width: none;
    width: 100%;
    padding: 60px 100px 80px 100px;
    box-sizing: border-box;
    justify-content: center;
}
.big-picture-page .section-text {
    padding-left: 0;
    max-width: 520px;
    flex: 0 1 auto;
}
.big-picture-page .section-image-wrap {
    flex: 0 0 50%;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.big-picture-page .section-image-wrap img {
    max-width: 100%;
    width: 100%;
    /* height: auto;
    object-fit: contain; */
}
@media (max-width: 768px) {
    .big-picture-page {
        padding: 40px 20px 60px;
    }
}

/* ========== Big Picture: box sections + centered image ========== */
.big-picture-content {
    flex-direction: column;
    align-items: stretch;
}

.big-picture-content .section-text {
    width: 100%;
}

.big-picture-content .section-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.big-picture-content .section-box {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.big-picture-content .section-box:hover {
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.12);
}

.big-picture-content .section-box strong {
    display: block;
    color: #ff8c00;
    font-size: 16px;
    margin-bottom: 10px;
}

.big-picture-content .section-box p {
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.big-picture-content .section-image-wrap {
    flex: none;
    width: 100%;
    position: relative;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.big-picture-content .section-image-wrap img {
    max-width: 560px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .big-picture-content .section-boxes {
        grid-template-columns: 1fr;
    }
    .big-picture-content .section-image-wrap img {
        max-width: 100%;
    }
}

/* ========== Form section (POC, Partner, Talk) ========== */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px;
}

.form-section h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
}

.form-section h1 .highlight {
    color: #ff8c00;
}

.form-section .subtitle {
    color: #bbb;
    margin-bottom: 32px;
}

.form-section label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
}

.form-section input:focus,
.form-section textarea:focus {
    outline: none;
    border-color: #ff8c00;
}

.form-section textarea {
    min-height: 120px;
    resize: vertical;
}

.form-section button {
    padding: 14px 32px;
    background: #ff8c00;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.form-section button:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

/* ========== POC form ? multi-column layout ========== */
.form-section.poc-form-layout {
    max-width: 1200px;
    padding: 80px 40px 100px;
}

.form-section.poc-form-layout .subtitle {
    margin-bottom: 40px;
}

.poc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px 32px;
    align-items: start;
}

.poc-form-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.poc-form-col-title {
    font-size: 18px;
    color: #ff8c00;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
}

.poc-form-col-title:not(:first-child) {
    margin-top: 24px;
}

.poc-form-hint {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.form-section.poc-form-layout label {
    margin-top: 14px;
    margin-bottom: 6px;
}

.form-section.poc-form-layout label:first-of-type {
    margin-top: 0;
}

.form-section.poc-form-layout input,
.form-section.poc-form-layout textarea,
.form-section.poc-form-layout select {
    margin-bottom: 4px;
}

.form-section select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.form-section select:focus {
    outline: none;
    border-color: #ff8c00;
}

.form-section select option {
    background: #2a2a2a;
    color: #fff;
}

.poc-form-checkgroup {
    margin-bottom: 20px;
}

.poc-form-checkgroup-title {
    font-size: 15px;
    color: #e0e0e0;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.poc-form-checklabel {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-weight: normal;
    margin-top: 0;
}

.poc-form-checklabel input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #ff8c00;
}

.poc-form-radios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.poc-form-radiolabel {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
}

.poc-form-radiolabel input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: #ff8c00;
}

.poc-form-other-wrap {
    margin-top: 8px;
    margin-bottom: 12px;
}

.poc-form-submit-wrap {
    grid-column: 1 / -1;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .poc-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Talk to the Team form ? 2-column layout ========== */
.form-section.talk-form-layout {
    max-width: 900px;
    padding: 80px 40px 100px;
}

.form-section.talk-form-layout .subtitle {
    margin-bottom: 40px;
}

.talk-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
    align-items: start;
}

.talk-form-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.talk-form-col .poc-form-col-title {
    margin-top: 0;
}

.talk-form-col .poc-form-col-title:not(:first-child) {
    margin-top: 28px;
}

.form-section.talk-form-layout label {
    margin-top: 14px;
    margin-bottom: 6px;
}

.form-section.talk-form-layout label:first-of-type {
    margin-top: 0;
}

.form-section.talk-form-layout input,
.form-section.talk-form-layout textarea,
.form-section.talk-form-layout select {
    margin-bottom: 4px;
}

.talk-form-submit {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .talk-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Site footer (all pages) ========== */
.site-footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px 40px 24px;
    margin-top: 60px;
}

.site-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.site-footer .footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
}

.site-footer .footer-links a:hover {
    color: #ff8c00;
}

.site-footer .footer-logo {
    text-align: center;
    margin-bottom: 16px;
}

.site-footer .footer-logo img {
    max-height: 40px;
    opacity: 0.9;
}

.site-footer .footer-copy {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ========== Index-only: logo container ========== */
.logo-container {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
}

.logo-container img {
    max-height: 90px;
    width: auto;
}

/* ========== Index-only: carousel ========== */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 60px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background: #2a2a2a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.carousel-slide.slide-1 {
    background: #2a2a2a;
}
.carousel-slide.slide-1 .slide-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.carousel-slide.slide-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(42, 42, 42, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}
.carousel-slide.slide-1 .slide-shapes,
.carousel-slide.slide-1 .slide-content {
    position: relative;
    z-index: 2;
}

.carousel-slide.slide-2 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/container-cargo-freight-ship-port.jpg');
}

.carousel-slide.slide-3 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/container-cargo-freight-ship-port.jpg');
}

.carousel-slide.slide-4 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/aerial-shot-large-shipping-containers-area.jpg');
}

.carousel-slide.slide-5 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/spacious-warehouse-filled-with-commercial-goods-supplies.jpg');
}

.carousel-slide.slide-6 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/aerial-shot-large-shipping-containers-area.jpg');
}

.carousel-slide.slide-7 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/beautiful-aerial-shot-narrow-roads-intersection-countryside-with-white-tower.jpg');
}

.carousel-slide.slide-8 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/city-sparkles-light-streets-night.jpg');
}

.carousel-slide.slide-9 {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.8) 100%),
                      url('background-images/Control_Tower.jpg');
}

.carousel-slide.slide-10 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/aerial-view-cargo-ship-cargo-container-harbor.jpg');
}

.carousel-slide.slide-11 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/aerial-shot-large-shipping-containers-area.jpg');
}

.carousel-slide.slide-12 {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.8) 100%),
                      url('background-images/Use_case.jpg');
}

.carousel-slide.slide-13 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/aerial-view-cargo-ship-cargo-container-harbor.jpg');
}

.carousel-slide.slide-14 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.8) 100%),
                      url('background-images/city-sparkles-light-streets-night.jpg');
}

.slide-content {
    flex: 0 0 50%;
    max-width: 600px;
    z-index: 5;
    padding-left: 0;
    padding-right: 60px;
}

.slide-content h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.slide-content h1 .highlight {
    color: #ff8c00;
    animation: textGlow 3s ease-in-out infinite;
}

.slide-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.read-report {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 30px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid #ff8c00;
    border-radius: 8px;
}

.read-report:hover {
    color: #fff;
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.carousel-slide.slide-14 .slide-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 0;
}

.carousel-slide.slide-14 .slide-content h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.carousel-slide.slide-14 .slide-content .get-started-tagline {
    font-size: 20px;
    color: #bbb;
    margin-bottom: 36px;
    max-width: 520px;
}

.get-started-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.get-started-ctas a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.get-started-ctas a.cta-primary {
    background: #ff8c00;
    color: #fff;
    border: 2px solid #ff8c00;
}

.get-started-ctas a.cta-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.get-started-ctas a.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.get-started-ctas a.cta-secondary:hover {
    border-color: #ff8c00;
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.read-report svg {
    width: 20px;
    height: 20px;
}

.slide-shapes {
    flex: 0 0 50%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}

.slide-image {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

.shape {
    position: absolute;
    opacity: 0.8;
    transition: all 0.8s ease-in-out;
}

.shape-blue {
    width: 280px;
    height: 280px;
    background: rgba(100, 150, 200, 0.4);
    transform: rotate(-15deg);
    left: 0;
    top: 20px;
}

.shape-peach {
    width: 320px;
    height: 280px;
    background: rgba(255, 180, 100, 0.6);
    transform: rotate(15deg);
    right: 0;
    top: 80px;
}

.carousel-slide.slide-1 .shape-blue { background: rgba(100, 150, 200, 0.4); }
.carousel-slide.slide-1 .shape-peach { background: rgba(255, 180, 100, 0.6); }
.carousel-slide.slide-2 .shape-blue { background: rgba(80, 140, 200, 0.5); }
.carousel-slide.slide-2 .shape-peach { background: rgba(255, 165, 80, 0.7); }
.carousel-slide.slide-3 .shape-blue { background: rgba(120, 160, 210, 0.4); }
.carousel-slide.slide-3 .shape-peach { background: rgba(255, 200, 120, 0.6); }
.carousel-slide.slide-4 .shape-blue { background: rgba(90, 135, 190, 0.5); }
.carousel-slide.slide-4 .shape-peach { background: rgba(255, 150, 70, 0.7); }
.carousel-slide.slide-5 .shape-blue { background: rgba(100, 150, 200, 0.4); }
.carousel-slide.slide-5 .shape-peach { background: rgba(255, 180, 100, 0.6); }
.carousel-slide.slide-6 .shape-blue { background: rgba(80, 140, 200, 0.5); }
.carousel-slide.slide-6 .shape-peach { background: rgba(255, 165, 80, 0.7); }
.carousel-slide.slide-7 .shape-blue { background: rgba(120, 160, 210, 0.4); }
.carousel-slide.slide-7 .shape-peach { background: rgba(255, 200, 120, 0.6); }
.carousel-slide.slide-8 .shape-blue { background: rgba(90, 135, 190, 0.5); }
.carousel-slide.slide-8 .shape-peach { background: rgba(255, 150, 70, 0.7); }
.carousel-slide.slide-9 .shape-blue { background: rgba(100, 150, 200, 0.4); }
.carousel-slide.slide-9 .shape-peach { background: rgba(255, 180, 100, 0.6); }
.carousel-slide.slide-10 .shape-blue { background: rgba(80, 140, 200, 0.5); }
.carousel-slide.slide-10 .shape-peach { background: rgba(255, 165, 80, 0.7); }
.carousel-slide.slide-11 .shape-blue { background: rgba(120, 160, 210, 0.4); }
.carousel-slide.slide-11 .shape-peach { background: rgba(255, 200, 120, 0.6); }
.carousel-slide.slide-12 .shape-blue { background: rgba(100, 150, 200, 0.4); }
.carousel-slide.slide-12 .shape-peach { background: rgba(255, 180, 100, 0.6); }
.carousel-slide.slide-13 .shape-blue { background: rgba(80, 140, 200, 0.5); }
.carousel-slide.slide-13 .shape-peach { background: rgba(255, 165, 80, 0.7); }
.carousel-slide.slide-14 .shape-blue { background: rgba(120, 160, 210, 0.4); }
.carousel-slide.slide-14 .shape-peach { background: rgba(255, 200, 120, 0.6); }

.carousel-nav-wrapper {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff8c00;
    color: #ff8c00;
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow.disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 25;
}

.slider-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff8c00 0%, #ffb347 50%, #ffcc80 100%);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 16px rgba(255, 140, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.slider-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 0 3px 0 0;
    pointer-events: none;
}

.slider-progress-fill.running {
    animation: sliderProgress 30s linear forwards;
}

@keyframes sliderProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* ========== Light animations (subtle glow & shimmer) ========== */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 140, 0, 0.25), 0 0 24px rgba(255, 180, 80, 0.08); }
    50% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.4), 0 0 36px rgba(255, 180, 80, 0.12); }
}

@keyframes shimmerLight {
    0% { opacity: 0.4; }
    50% { opacity: 0.9; }
    100% { opacity: 0.4; }
}

@keyframes ambientGlow {
    0%, 100% { box-shadow: 0 4px 24px rgba(255, 140, 0, 0.06); }
    50% { box-shadow: 0 8px 40px rgba(255, 140, 0, 0.14); }
}

@keyframes lineShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes softPulse {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.92; filter: brightness(1.05); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 140, 0, 0.2); }
    50% { text-shadow: 0 0 32px rgba(255, 140, 0, 0.35), 0 0 48px rgba(255, 180, 80, 0.15); }
}

.carousel-nav {
    display: flex;
    gap: 60px;
    align-items: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding-bottom: 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.carousel-nav::-webkit-scrollbar {
    display: none;
}

.nav-tab {
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
    min-width: 200px;
}

.nav-tab-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.nav-tab-description {
    font-size: 14px;
    color: #bbb;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.nav-tab:hover .nav-tab-title {
    color: #ff8c00;
}

.nav-tab:hover .nav-tab-description {
    opacity: 1;
    color: #fff;
}

.nav-tab.active {
    border-bottom-color: #ff8c00;
}

.nav-tab.active .nav-tab-title {
    color: #ff8c00;
}

.nav-tab.active .nav-tab-description {
    color: #fff;
    opacity: 1;
}

/* Index carousel responsive */
@media (max-width: 768px) {
    .logo-container {
        top: 20px;
        left: 20px;
    }
    .logo-container img {
        max-height: 80px;
    }
    .carousel-slide {
        padding: 40px 20px;
        flex-direction: column;
    }
    .slide-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 30px;
    }
    .slide-content h1 {
        font-size: 40px;
    }
    .slide-shapes {
        height: 250px;
    }
    .carousel-nav-wrapper {
        bottom: 30px;
        left: 20px;
        right: 20px;
        gap: 10px;
    }
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .carousel-nav {
        gap: 30px;
    }
    .nav-tab {
        min-width: 150px;
    }
    .slide-shapes,
    .slide-image {
        flex: 0 0 100%;
    }
    .carousel-slide.slide-14 .slide-content h1 {
        font-size: 40px;
    }
    .get-started-ctas {
        flex-direction: column;
    }
    .get-started-action-cards {
        grid-template-columns: 1fr;
    }
}

/* Carousel tabs ? small phones */
@media (max-width: 480px) {
    .carousel-slide {
        padding: 24px 16px;
    }
    .slide-content h1 {
        font-size: 28px;
    }
    .slide-content p {
        font-size: 15px;
    }
    .carousel-nav-wrapper {
        bottom: 16px;
        left: 12px;
        right: 12px;
        gap: 8px;
    }
    .nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
        min-width: 36px;
    }
    .carousel-nav {
        gap: 16px;
        padding-bottom: 4px;
    }
    .nav-tab {
        min-width: 120px;
    }
    .nav-tab-title {
        font-size: 13px;
    }
    .nav-tab-description {
        font-size: 12px;
    }
    .slide-shapes {
        height: 180px;
    }
    .carousel-slide.slide-14 .slide-content h1 {
        font-size: 28px;
    }
}

/* ========== Summary & Layers Section (after slider) ========== */
.summary-layers-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #141414 50%, #0f0f0f 100%);
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.summary-layers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 0, 0.15) 20%, rgba(255, 180, 80, 0.5) 50%, rgba(255, 140, 0, 0.15) 80%, transparent 100%);
    background-size: 200% 100%;
    background-position: 200% 0;
    pointer-events: none;
    animation: lineShimmer 5s ease-in-out infinite;
}

.summary-layers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-block {
    text-align: center;
    margin-bottom: 56px;
}

.summary-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.summary-lead {
    font-size: clamp(16px, 2vw, 18px);
    color: #ccc;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 16px;
}

.summary-sub {
    font-size: 15px;
    color: #999;
    margin: 0;
}

.layers-block {
    margin-top: 48px;
}

.layers-heading {
    font-size: 20px;
    font-weight: 600;
    color: #ff8c00;
    margin: 0 0 28px;
    text-align: center;
    letter-spacing: 0.02em;
}

.layers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.layer-card {
    display: flex;
    flex-direction: column;
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.layer-card:hover {
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.18), 0 0 48px rgba(255, 180, 80, 0.08);
    transform: translateY(-4px);
    animation: ambientGlow 2s ease-in-out infinite;
}

.layer-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 18px;
    color: #ff8c00;
    font-size: 22px;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.layer-card:hover .layer-icon {
    animation: glowPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.25);
}

.layer-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.layer-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}

.layer-link {
    font-size: 13px;
    font-weight: 600;
    color: #ff8c00;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.layer-card:hover .layer-link i {
    transform: translateX(4px);
}

.layer-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .summary-layers-section {
        padding: 56px 20px 72px;
    }
    .summary-block {
        margin-bottom: 40px;
    }
    .layers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .layer-card {
        padding: 22px 20px;
    }
}

/* ========== Index-only: detail sections ========== */
.detail-sections-wrapper {
    width: 100%;
}

.detail-section {
    min-height: 80vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 100px 60px;
    position: relative;
}

.detail-section + .detail-section {
    padding-top: 60px;
}

.detail-section.get-started-section .detail-main-wrapper {
    flex-direction: column;
    align-items: center;
}

.detail-section.get-started-section .detail-content-wrapper {
    width: 100%;
    max-width: 900px;
}

.detail-section.get-started-section .detail-image-wrapper {
    display: none;
}

.get-started-action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.get-started-action-card {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.get-started-action-card:hover {
    border-color: #ff8c00;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.2);
}

.get-started-action-card .card-emoji {
    font-size: 40px;
    margin-bottom: 16px;
}

.get-started-action-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.get-started-action-card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}

.get-started-action-card .card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #ff8c00;
}

.get-started-action-card:hover .card-link {
    color: #ffb347;
}

.detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.detail-header {
    text-align: center;
    margin-bottom: 80px;
}

.detail-main-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.detail-content-wrapper {
    flex: 1;
}

.detail-image-wrapper {
    flex: 0 0 45%;
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.detail-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.detail-header h2 .highlight {
    color: #ff8c00;
}

.detail-header .detail-subtitle {
    font-size: 20px;
    color: #bbb;
    max-width: 700px;
    margin: 0 auto;
}

.detail-content {
    display: block;
}

.detail-paragraph {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 16px;
}

.detail-bullets {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.7;
}

.detail-bullets li + li {
    margin-top: 6px;
}

.detail-card {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.detail-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
    background: rgba(42, 42, 42, 0.95);
}

.card-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.detail-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.detail-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #ff8c00;
    margin-top: 8px;
}

.detail-card p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    margin-top: 10px;
}

.detail-action {
    text-align: center;
    margin-top: 60px;
}

.detail-action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #ff8c00;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.detail-action-button:hover {
    background: transparent;
    color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.detail-features {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 80px 60px;
    margin-top: 0;
    width: 100%;
}

.detail-features h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* SCM Exchange Layers: 3 columns */
.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 36px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .features-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid-3col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 140, 0, 0.04);
    box-shadow: 0 0 24px rgba(255, 140, 0, 0.06);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: #ff8c00;
    transition: box-shadow 0.3s ease;
    animation: glowPulse 4s ease-in-out infinite;
}

.feature-item:hover .feature-icon {
    animation: glowPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 18px rgba(255, 140, 0, 0.35);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: softPulse 2.5s ease-in-out infinite;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(255, 140, 0, 0.5), 0 0 40px rgba(255, 180, 80, 0.15);
    animation: glowPulse 1.2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .detail-section {
        padding: 60px 20px;
    }
    .detail-header h2 {
        font-size: 32px;
    }
    .detail-main-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .detail-image-wrapper {
        flex: 1;
        position: relative;
        top: 0;
    }
    .detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .detail-card {
        padding: 10px;
    }
    .detail-features {
        padding: 50px 20px;
    }
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== Industries Solution (PO Management + Apparel + Chassis Lease) ========== */
.page-header-wrap.page-industries-po,
.page-header-wrap.page-industries-apparel,
.page-header-wrap.page-industries-chassis {
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(20,20,20,0.85) 100%),
                radial-gradient(ellipse at top right, rgba(255,140,0,0.18), transparent 55%);
}

.industries-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px 64px;
    color: #ddd;
}

.industries-block {
    margin-bottom: 40px;
}

.industries-block h2 {
    font-size: 28px;
    color: #fff;
    margin: 0 0 16px;
}

.industries-block p {
    font-size: 16px;
    line-height: 1.65;
    color: #bbb;
    margin: 0 0 14px;
}

.industries-know-list {
    margin: 12px 0 18px;
    padding-left: 22px;
    color: #ccc;
}

.industries-know-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.industries-emphasis {
    color: #ff8c00 !important;
    font-weight: 600;
    font-size: 17px !important;
}

.industries-diagram {
    margin: 0 0 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.25);
    background: #000;
}

.industries-diagram img {
    display: block;
    width: 100%;
    height: auto;
}

.industries-challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 18px 0 22px;
}

.industries-challenge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #ddd;
}

.industries-closing {
    border-left: 4px solid #ff8c00;
    padding: 14px 18px;
    background: rgba(255, 140, 0, 0.08);
    color: #eee !important;
    border-radius: 0 10px 10px 0;
}

.industries-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.industries-benefit {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 18px 16px;
    transition: border-color 0.2s, background 0.2s;
}

.industries-benefit:hover {
    border-color: rgba(255, 140, 0, 0.45);
    background: rgba(255, 140, 0, 0.08);
}

.industries-benefit h3 {
    font-size: 16px;
    color: #ff8c00;
    margin: 0 0 8px;
}

.industries-benefit p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
    line-height: 1.55;
}

.industries-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.industries-cta-secondary {
    color: #ff8c00 !important;
    text-decoration: none;
    font-weight: 600;
}

.industries-cta-secondary:hover {
    text-decoration: underline;
}

/* Apparel ? fit image to remaining viewport */
body.apparel-fit-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #0b0b0b;
}

body.apparel-fit-page .apparel-fit-header {
    flex: 0 0 auto;
}

body.apparel-fit-page .apparel-fit-banner {
    min-height: 0;
    padding: 96px 24px 10px;
}

body.apparel-fit-page .apparel-fit-banner h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

body.apparel-fit-page .apparel-fit-banner .banner-desc {
    font-size: 15px;
    max-width: 720px;
}

.apparel-fit-stage {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px 16px;
    background: #0b0b0b;
}

.apparel-fit-stage img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    background: #fff;
}

@media (max-width: 768px) {
    body.apparel-fit-page {
        overflow: auto;
    }
    body.apparel-fit-page .apparel-fit-banner {
        padding: 88px 16px 8px;
    }
    body.apparel-fit-page .apparel-fit-banner h1 {
        font-size: 22px;
    }
    .apparel-fit-stage {
        padding: 8px;
        min-height: 50vh;
    }
}

/* ========== Chassis Lease ? HTML/CSS infographic ========== */
.clms-infographic {
    padding: 28px 24px 22px;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(255, 140, 0, 0.14), transparent 45%),
        radial-gradient(ellipse at 90% 100%, rgba(56, 189, 248, 0.08), transparent 40%),
        #0a0a0a;
}

.clms-infographic__header {
    text-align: center;
    margin-bottom: 22px;
}

.clms-infographic__kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 8px;
}

.clms-infographic__header h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #fff;
}

.clms-infographic__header p {
    margin: 0;
    font-size: 14px;
    color: #999;
}

.clms-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.clms-flow__step {
    flex: 1 1 110px;
    max-width: 132px;
    min-width: 108px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 10px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: clms-step-in 0.55s ease both;
}

.clms-flow__step:nth-child(1) { animation-delay: 0.05s; }
.clms-flow__step:nth-child(3) { animation-delay: 0.12s; }
.clms-flow__step:nth-child(5) { animation-delay: 0.19s; }
.clms-flow__step:nth-child(7) { animation-delay: 0.26s; }
.clms-flow__step:nth-child(9) { animation-delay: 0.33s; }
.clms-flow__step:nth-child(11) { animation-delay: 0.4s; }
.clms-flow__step:nth-child(13) { animation-delay: 0.47s; }

@keyframes clms-step-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.clms-flow__num {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #777;
    font-weight: 700;
}

.clms-flow__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
    font-size: 15px;
}

.clms-flow__step[data-tone="pickup"] .clms-flow__icon { background: rgba(34, 211, 238, 0.15); color: #22d3ee; }
.clms-flow__step[data-tone="hire"] .clms-flow__icon { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.clms-flow__step[data-tone="return"] .clms-flow__icon { background: rgba(167, 139, 250, 0.15); color: #a78bfa; }
.clms-flow__step[data-tone="bill"] .clms-flow__icon { background: rgba(52, 211, 153, 0.15); color: #34d399; }

.clms-flow__step strong {
    display: block;
    font-size: 13px;
    color: #fff;
    line-height: 1.25;
}

.clms-flow__step span:last-child {
    font-size: 11px;
    color: #888;
    line-height: 1.35;
}

.clms-flow__arrow {
    width: 18px;
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    position: relative;
    flex: 0 0 18px;
}

.clms-flow__arrow::after {
    content: "";
    position: absolute;
    right: -2px;
    top: -3px;
    border: 4px solid transparent;
    border-left-color: #ff8c00;
}

.clms-overlay-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.clms-overlay-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.22);
    background: rgba(255, 140, 0, 0.06);
}

.clms-overlay-card i {
    color: #ff8c00;
    margin-top: 2px;
}

.clms-overlay-card strong {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 2px;
}

.clms-overlay-card span {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.clms-persona-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding-top: 4px;
}

.clms-persona-chip {
    font-size: 12px;
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 6px 12px;
}

.clms-persona-chip i {
    color: #ff8c00;
    margin-right: 6px;
}

/* ========== Chassis Lease Demo board (Apparel-style stage) ========== */
body.clms-demo-fit-page {
    overflow: auto;
}

.clms-demo-stage {
    align-items: stretch;
    justify-content: center;
    padding: 10px 16px 20px;
}

.clms-demo-board {
    width: min(1120px, 100%);
    margin: 0 auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.28);
    background:
        radial-gradient(ellipse at 10% 0%, rgba(255, 140, 0, 0.16), transparent 42%),
        linear-gradient(160deg, #121212 0%, #0a0a0a 55%, #111 100%);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    padding: 22px 22px 16px;
    color: #ddd;
    animation: clms-board-in 0.6s ease both;
}

@keyframes clms-board-in {
    from { opacity: 0; transform: translateY(12px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.clms-demo-board__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.clms-demo-board__eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 6px;
}

.clms-demo-board__brand h2 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #fff;
}

.clms-demo-board__brand p {
    margin: 0;
    max-width: 640px;
    font-size: 14px;
    color: #999;
    line-height: 1.5;
}

.clms-demo-board__link {
    color: #ff8c00;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    padding-top: 4px;
}

.clms-demo-board__link:hover {
    text-decoration: underline;
}

.clms-demo-metrics {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.clms-demo-metric {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s, transform 0.2s;
}

.clms-demo-metric:hover {
    border-color: rgba(255, 140, 0, 0.45);
    transform: translateY(-2px);
}

.clms-demo-metric--hero {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.18), rgba(255, 140, 0, 0.04));
    border-color: rgba(255, 140, 0, 0.35);
}

.clms-demo-metric__value {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.clms-demo-metric--hero .clms-demo-metric__value {
    font-size: 40px;
    color: #ff8c00;
}

.clms-demo-metric__label {
    font-size: 14px;
    font-weight: 600;
    color: #eee;
}

.clms-demo-metric__hint {
    font-size: 12px;
    color: #888;
}

.clms-demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.clms-demo-panel {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
    padding: 14px 14px 12px;
}

.clms-demo-panel h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #ff8c00;
}

.clms-demo-panel h3 i {
    margin-right: 6px;
}

.clms-demo-steps,
.clms-demo-caps {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: #bbb;
    line-height: 1.55;
}

.clms-demo-steps li,
.clms-demo-caps li {
    margin-bottom: 5px;
}

.clms-demo-steps strong {
    color: #fff;
}

.clms-demo-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: #777;
}

.clms-demo-foot__tag {
    color: #ff8c00;
    font-weight: 600;
}

@media (max-width: 900px) {
    .clms-demo-metrics {
        grid-template-columns: 1fr 1fr;
    }
    .clms-demo-grid {
        grid-template-columns: 1fr;
    }
    .clms-flow__arrow {
        display: none;
    }
}

@media (max-width: 560px) {
    .clms-demo-metrics {
        grid-template-columns: 1fr;
    }
    .clms-demo-metric__value,
    .clms-demo-metric--hero .clms-demo-metric__value {
        font-size: 32px;
    }
}
