/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');


:root {
    --bg: #0e0e10;
    --red: #c8302d;
    --card: #141417;
    --muted: #bbb;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.enabler-hero {
    background: radial-gradient(circle at 20% 80%, rgba(229, 57, 53, .22) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(229, 57, 53, .15) 0%, transparent 45%),
        var(--bg);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
}

.wave-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 100%;
}

.enabler-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 10;
    transition: background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.enabler-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.enabler-navbar .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit
}

.enabler-navbar .brand-name {
    display: inline-block;
    line-height: 28px;
    margin: 0
}

.enabler-navbar .enabler-menu {
    align-items: center
}

.enabler-navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    z-index: 100;
}

.enabler-navbar.is-sticky .brand-name {
    color: #1c1c1c;
}

.enabler-navbar.is-sticky .enabler-menu a {
    color: #6b6b6b;
}

.enabler-navbar.is-sticky .enabler-menu a:hover {
    color: #000;
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 10px;
    background: transparent;
    align-items: center;
    justify-content: center
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 3px 0
}

.enabler-navbar.is-sticky .hamburger {
    border-color: rgba(0, 0, 0, .6)
}

.enabler-navbar.is-sticky .hamburger span {
    background: #1c1c1c
}

.enabler-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 19, .96);
    border-top: 1px solid #333;
    padding: 14px 16px;
    display: none
}

.enabler-mobile-menu.open {
    display: block
}

.enabler-mobile-menu .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.enabler-mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600
}

@media(max-width:992px) {
    .enabler-navbar .enabler-menu, .enabler-navbar .nav-cta {
        display: none
    }

    .enabler-navbar .hamburger {
        display: flex
    }
}


.enabler-logo {
    height: 28px;
    margin-right: 10px;
    display: block;
}

.brand-name {
    font-weight: 700;
    color: #fff;
    letter-spacing: .2px;
}

.enabler-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.enabler-menu a {
    color: #cfcfcf;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color .25s ease;
}

.enabler-menu a:hover {
    color: #fff;
}

.nav-cta {
    border-radius: 12px;
    padding: 10px 18px;
    box-shadow: 0 8px 22px rgba(229, 57, 53, .35);
    text-decoration: none;
    will-change: transform, box-shadow;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.enabler-navbar .nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 20px rgba(229, 57, 53, .45);
}

.enabler-navbar .nav-cta:focus,
.enabler-navbar .nav-cta:visited {
    color: #fff;
    text-decoration: none;
}

.enabler-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(229, 57, 53, .12);
    color: #ff7070;
    border: 1px solid rgba(229, 57, 53, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 400;
    text-align: center;
    font-size: 12px;
    gap: 8px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, .35);
    animation: badge-pulse 1.4s ease-in-out infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 2px rgba(229, 57, 53, .35), 0 0 0 rgba(229, 57, 53, 0);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 2px rgba(229, 57, 53, .35), 0 0 10px rgba(229, 57, 53, .6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 2px rgba(229, 57, 53, .35), 0 0 0 rgba(229, 57, 53, 0);
    }
}

.enabler-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.12;
    margin: 24px 0;
}

.enabler-title .accent {
    color: var(--red);
}

.enabler-sub {
    max-width: 650px;
    color: #d4d4d4;
    font-size: 18px;
    margin: 0 auto 24px;
}

.enabler-trusted {
    color: var(--muted);
    font-size: 14px;
    margin-top: 0;
    margin-right: 12px;
}

.trusted-row {
    gap: 12px;
    margin-bottom: 50px;
}

.enabler-actions {
    margin: 26px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.enabler-actions .btn-red {
    will-change: transform, box-shadow;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.enabler-actions .btn-red:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 22px rgba(229, 57, 53, .45);
}

.enabler-actions .btn-red:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 18px rgba(229, 57, 53, .40);
}

.btn-red {
    background: var(--red);
    border: none;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(229, 57, 53, .35);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, color .2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-red:hover,
.btn-red:focus,
.btn-red:visited {
    color: #fff;
    text-decoration: none;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(229, 57, 53, .45);
}

.btn-red:focus {
    outline: none;
}

.btn-dark {
    background: #1d1d20;
    border: 1px solid #333;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.enabler-actions .btn-dark {
    background: transparent;
    border: 2px solid rgba(200, 48, 45, .55);
    color: #fff;
    text-decoration: none;
    will-change: transform, box-shadow, background;
    transition: box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1),
        background 180ms ease;
}

.enabler-actions .btn-dark:hover {
    background: linear-gradient(90deg, rgba(200, 48, 45, 0.037), rgba(200, 48, 45, 0.175));
    box-shadow: 0 14px 20px rgba(200, 48, 45, .35);
}

.enabler-actions .btn-dark:focus,
.enabler-actions .btn-dark:visited {
    color: #fff;
    text-decoration: none;
}

.metric-card {
    background-color: rgba(33, 34, 37, 0.801);
    border: 1px solid #2a2a2e;
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.metric-card:hover {
    background-color: rgba(49, 51, 55, 0.801);
}

.metric-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    color: var(--red);
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
}

.metric-label {
    color: #aaa;
    font-size: 12px;
}


@media(max-width:992px) {
    .enabler-title {
        font-size: 36px
    }
}

.logo-trusted { gap: 6px; }
.logo-trusted img {
    height: 35px;
    width: 56px;
    margin: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9
}

.logo-trusted img.trusted-logo--shell,
.logo-trusted img.trusted-logo--mitsubishi,
.logo-trusted img.trusted-logo--fuso {
    filter: none !important;
    opacity: 1;
}

.logo-trusted img.trusted-logo--fuso {
    height: 40px;
    width: 64px;
}

.login-header {
    display: none
}

body.login-page .login-header {
    display: none !important
}

.login-page .content-container {
    padding-top: 0
}

/* SECTION 2 */

.challenges-section {
    background: #fff;
    color: #1c1c1c;
    padding: 60px 0 50px
}

.challenge-badge {
    display: block;
    width: fit-content;
    background: rgba(200, 48, 45, .12);
    color: #c8302d;
    border: 1px solid rgba(200, 48, 45, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px
}

.challenge-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-title .fail {
    color: var(--red)
}

.challenge-sub {
    max-width: 820px;
    margin: 0 auto 24px;
    color: #666
}

.challenge-grid .challenge-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06), 0 2px 8px rgba(200, 48, 45, .05);
    padding: 35px;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.challenge-grid .challenge-card:hover {
    background:
        radial-gradient(800px at 92% 88%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(0deg, rgba(208, 56, 54, 0.042), rgba(213, 54, 51, 0.08)),
        #fff;
    border-color: #f0cfd2;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .08), 0 4px 12px rgba(200, 48, 45, .09);
}

.challenge-card .card-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 12px;
}

.icon-pill {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f9ebed;
    border: 1px solid #f0cfd2;
    display: flex;
    align-items: center;
    justify-content: center
}

.icon-pill .icon {
    width: 20px;
    height: 20px;
    color: var(--red)
}

.card-title {
    font-weight: 700;
    font-size: 18px;
    color: #1f1f1f;
    margin-bottom: 12px;
}

.card-desc {
    color: #666;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
}

.divider {
    height: 1px;
    background: #e3e3e3;
    margin: 16px 0 14px;
}

.metric {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1;
}

.metric .metric-value {
    color: var(--red);
    font-weight: 800;
    font-size: 22px;
}

.metric .metric-label {
    color: #8a8a8a;
    font-size: 12px
}

.challenge-foot {
    margin-top: 22px;
    color: #222
}

.challenge-foot .brand {
    color: var(--red);
    font-weight: 700
}

@media(max-width:992px) {
    .challenge-title {
        font-size: 28px
    }

    .challenge-grid .challenge-card {
        padding: 16px
    }
}

@media(max-width:768px) {
    .challenges-section {
        padding: 48px 0 40px
    }

    .challenge-sub {
        font-size: 14px;
        margin: 0 auto 20px
    }

    .challenge-grid .challenge-card {
        padding: 18px;
        border-radius: 14px
    }

    .card-title {
        font-size: 16px;
        margin-bottom: 10px
    }

    .card-desc {
        font-size: 13px;
        margin-bottom: 14px
    }

    .divider {
        margin: 14px 0 12px
    }

    .metric .metric-value {
        font-size: 20px
    }

    .metric {
        gap: 8px
    }

    .icon-pill {
        width: 36px;
        height: 36px
    }
}

@media(max-width:576px) {
    .challenge-title {
        font-size: 24px;
        max-width: 100%;
        padding: 0 10px
    }

    .challenge-sub {
        padding: 0 12px
    }

    .challenge-badge {
        font-size: 11px
    }

    .challenge-grid .challenge-card {
        padding: 16px
    }
}

/* SECTION 3 */

.results-section {
    background: #f3f1f1;
    color: #1c1c1c;
    padding: 60px 0 50px
}

.result-badge {
    display: block;
    width: fit-content;
    background: rgba(200, 48, 45, .12);
    color: #c8302d;
    border: 1px solid rgba(200, 48, 45, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 auto 12px
}

.result-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center
}

.result-title .accent {
    color: var(--red)
}

.result-sub {
    max-width: 860px;
    margin: 0 auto 24px;
    color: #666;
    text-align: center
}

.results-grid .result-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    overflow: hidden;
    will-change: transform, box-shadow;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.results-grid .result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .10);
}

.result-card .result-header {
    height: 110px;
    background-color: #af2321;
    position: relative
}

.mall-badge {
    position: absolute;
    right: 16px;
    top: 16px;
    background: #fff;
    color: #c8302d;
    border: 1px solid #f0cfd2;
    font-weight: 700;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 12px rgba(200, 48, 45, .18)
}

.logo-tile {
    position: absolute;
    left: 16px;
    bottom: -24px;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6e9f0;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-tile img {
    max-width: 44px;
    max-height: 44px
}

.result-body {
    padding: 32px 24px 22px;
}

.result-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px
}

.result-desc {
    color: #555;
    font-size: 14px
}

.result-stats {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.stat-card {
    background: #f7f7f9;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.stat-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.stat-value {
    font-weight: 800;
    font-size: 20px;
    color: #1c1c1c
}

.stat-label {
    color: #8a8a8a;
    font-size: 12px
}

.quote-card {
    justify-content: center;
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    padding: 20px 24px;
    color: #333;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
    margin: 0 auto;
    max-width: 720px;
}

.quote-text {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: center
}

.quote-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.brand-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e6e9f0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-avatar img {
    max-width: 18px;
    max-height: 18px
}

.quote-brand .brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, .35)
}

.quote-brand .brand-name {
    font-weight: 700
}

.quote-brand .brand-sub {
    color: #888;
    font-size: 12px
}

@media(max-width:768px) {
    .result-title {
        font-size: 30px
    }

    .result-card .result-header {
        height: 100px
    }

    .logo-tile {
        width: 56px;
        height: 56px;
        bottom: -20px
    }

    .logo-tile img {
        max-width: 36px;
        max-height: 36px
    }
}

@media(max-width:576px) {
    .result-stats {
        grid-template-columns: 1fr
    }

    .result-body {
        padding: 28px 20px 20px
    }
}

/* SECTION 4 */

.journey-section {
    background: #fff;
    color: #1c1c1c;
    padding: 60px 0 50px
}

.journey-badge {
    display: block;
    width: fit-content;
    background: rgba(200, 48, 45, .12);
    color: #c8302d;
    border: 1px solid rgba(200, 48, 45, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 auto 12px
}

.journey-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center
}

.journey-title .accent {
    color: var(--red)
}

.journey-sub {
    max-width: 860px;
    margin: 0 auto 24px;
    color: #666;
    text-align: center
}

.journey-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 18px 0
}

.journey-tab {
    background: #f4f4f6;
    color: #333;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s ease, box-shadow .2s ease, color .2s ease
}

.journey-tab:not(.is-active):hover {
    border-color: rgba(200, 48, 45, .35);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06)
}

.journey-tab:focus,
.journey-tab:focus-visible {
    outline: none
}

.journey-tab .tab-index {
    color: #8a8a8a;
    font-weight: 700;
    font-size: 12px;
    padding: 0;
}

.journey-tab .lucide {
    width: 16px;
    height: 16px;
}

.journey-tab.is-active {
    background: var(--red);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(200, 48, 45, .18)
}

.journey-tab.is-active .tab-index {
    color: #fff;
}

.journey-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    padding: 24px
}

.journey-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px
}

.journey-name {
    font-weight: 700;
    font-size: 16px;
    color: #1c1c1c
}

.journey-subtitle {
    color: #c8302d;
    font-size: 12px;
    font-weight: 600
}

.journey-desc {
    color: #555;
    font-size: 14px;
    margin: 10px 0 12px
}

.journey-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.journey-list li {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.journey-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f9ebed;
    border: 1px solid #f0cfd2;
    color: #c8302d;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 8px rgba(200, 48, 45, .12)
}

.journey-ideal {
    margin-bottom: 12px
}

.journey-ideal .ideal-label {
    display: inline-block;
    background: #f7f8fb;
    border: 1px solid #e9edf5;
    color: #777;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600
}

.journey-cta {
    margin-top: 6px
}

.journey-card.journey-visual {
    display: flex;
    align-items: center;
    justify-content: center
}

.dial {
    position: relative;
    width: 100%;
    height: 320px
}

.dial::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: conic-gradient(var(--red) 0 120deg, #e6e9f0 120deg 360deg)
}

.dial::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56%;
    height: 56%;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee
}

.dial-center {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 1
}

.dial-step-index {
    font-weight: 800;
    font-size: 40px;
    color: #c8302d
}

.dial-step-label {
    color: #666;
    font-size: 12px
}

.dial::before,
.dial::after {
    display: none !important;
    content: none !important
}

.dial-svg {
    width: 100%;
    height: 100%;
    display: block
}

.dial-svg .progress-arc {
    transition: stroke-dasharray .45s ease
}

.journey-visual-wrap {
    position: relative
}

.journey-path {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 32px;
    height: 1px;
    background: #e6e9f0
}

.journey-row {
    position: relative
}

.journey-row::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #f0f2f6
}

.dial-node {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e6e9f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    transform: translate(-50%, -50%)
}

.dial-node-active {
    background: var(--red);
    border-color: transparent;
    box-shadow: 0 8px 16px rgba(200, 48, 45, .20);
    top: 22%;
    left: 66%
}

.dial-node-right {
    top: 50%;
    left: 84%
}

.dial-node-bottom {
    top: 84%;
    left: 50%
}

.dial-node-left {
    top: 50%;
    left: 16%
}

@media(max-width:768px) {
    .journey-tabs {
        flex-wrap: wrap
    }

    .dial {
        height: 280px
    }
}

@media(max-width:576px) {
    .journey-title {
        font-size: 30px
    }

    .journey-card {
        padding: 20px
    }

    .dial {
        height: 240px
    }
}

/* SECTION 5 */

.brands-section {
    background: #fff;
    color: #1c1c1c;
    padding: 60px 0 50px
}

.brands-badge {
    display: block;
    width: fit-content;
    background: rgba(200, 48, 45, .12);
    color: #c8302d;
    border: 1px solid rgba(200, 48, 45, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 auto 12px
}

.brands-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center
}

.brands-title .accent {
    color: var(--red)
}

.brands-sub {
    max-width: 900px;
    margin: 0 auto 22px;
    color: #666;
    text-align: center;
    margin-bottom: 52px;
}

.brand-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 18px 0;
    margin-bottom: 52px;
}

.brand-filter {
    background: #fff;
    color: #333;
    border: 1px solid #e6e9f0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    transition: background .2s ease, box-shadow .2s ease, color .2s ease
}

.brand-filter.is-active {
    background: var(--red);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(200, 48, 45, .18)
}

.brand-filter:not(.is-active):hover {
    border-color: rgba(200, 48, 45, .35);
    box-shadow: 0 8px 18px rgba(200, 48, 45, .12)
}

.brand-filter:focus,
.brand-filter:focus-visible {
    outline: none
}

.brand-grid .brand-card {
    position: relative;
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    padding: 18px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    will-change: transform, box-shadow, border-color;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease;
}

.brand-grid .brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .09);
}

.brand-grid .brand-card:not(.is-partner):hover {
    border-color: rgba(200, 48, 45, .35);
}

.brand-grid .brand-card.is-partner {
    border-color: rgba(200, 48, 45, .35);
}

.brand-card .partner-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #fff;
    color: #c8302d;
    border: 1px solid #f0cfd2;
    border-radius: 999px;
    font-weight: 700;
    font-size: 11px;
    padding: 4px 10px;
    box-shadow: 0 6px 12px rgba(200, 48, 45, .18)
}

.brand-logo {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: auto 0;
}

.brand-logo img {
    max-height: 88px;
    max-width: 92%;
    object-fit: contain;
}

.brand-name {
    margin-top: 6px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 6px
}

.dot--sp {
    background: var(--red)
}

.dot--lu {
    background: #ff7070
}

.dot--ac {
    background: #888
}

.brand-legend {
    margin-bottom: 50px;
}

.brand-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px
}

.brand-legend .legend-item {
    margin: 0 8px;
    color: #666;
    font-size: 12px;
}

@media(max-width:768px) {
    .brands-title {
        font-size: 32px
    }

    .brand-filters {
        flex-wrap: wrap;
        gap: 10px
    }

    .brand-filter {
        padding: 8px 12px;
        margin-bottom: 8px
    }

    .brand-grid .brand-card {
        min-height: 150px;
        border-radius: 14px
    }

    .brands-section .brand-logo {
        height: 80px
    }

    .brands-section .brand-logo img {
        max-height: 70px
    }

    .brands-section .brand-name {
        font-size: 13px
    }
}

@media(max-width:576px) {
    .brands-title {
        font-size: 28px
    }

    .brands-sub {
        padding: 0 12px
    }

    .brand-filters {
        flex-wrap: wrap;
        gap: 8px
    }

    .brand-filter {
        padding: 8px 12px;
        font-size: 13px;
        margin-bottom: 8px
    }

    .brand-grid .brand-card {
        min-height: 140px;
        padding: 16px;
        border-radius: 12px
    }

    .brands-section .brand-logo {
        height: 68px
    }

    .brands-section .brand-logo img {
        max-height: 56px;
        max-width: 90%
    }

    .brand-card .partner-badge {
        top: 8px;
        right: 8px;
        font-size: 10px;
        padding: 3px 8px
    }

    .brand-legend .legend-item {
        font-size: 11px
    }

    .brand-metrics .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px
    }
}

/* SECTION 6 */

.platforms-section {
    background: #fff;
    color: #1c1c1c;
    padding: 60px 0 50px
}

.platform-badge {
    display: block;
    width: fit-content;
    background: rgba(200, 48, 45, .12);
    color: #c8302d;
    border: 1px solid rgba(200, 48, 45, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 auto 12px
}

.platform-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center
}

.platform-title .accent {
    color: var(--red)
}

.platform-sub {
    max-width: 860px;
    margin: 0 auto 24px;
    color: #666;
    text-align: center
}

.platform-grid .platform-card {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    padding: 20px;
    transition: transform .18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .18s cubic-bezier(0.22, 1, 0.36, 1), background .18s ease, border-color .18s ease
}

.platform-grid .platform-card:hover {
    background: linear-gradient(0deg, rgba(200, 48, 45, .06), rgba(200, 48, 45, .06)), #fff;
    border-color: #f0cfd2;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(200, 48, 45, .10);
}

.platform-card .head {
    margin-bottom: 12px;
    gap: 12px
}

.platform-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6e9f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
    overflow: hidden
}

.platform-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain
}

.platform-pill {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08)
}

.platform-pill .letter {
    font-weight: 800;
    color: #fff
}

.pill--shopee {
    background: linear-gradient(135deg, #ff7c4a, #ff4e3b)
}

.pill--tokopedia {
    background: linear-gradient(135deg, #25a55b, #1f7a46)
}

.pill--lazada {
    background: linear-gradient(135deg, #4e6cff, #3849b9)
}

.pill--bukalapak {
    background: linear-gradient(135deg, #ed1461, #d81b60)
}

.pill--tiktok {
    background: linear-gradient(135deg, #333, #111)
}

.pill--blibli {
    background: linear-gradient(135deg, #2196f3, #2962ff)
}

.platform-name {
    font-weight: 700;
    font-size: 16px
}

.platform-tagline {
    color: #8a8a8a;
    font-size: 12px
}

.share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 6px
}

.share-label {
    color: #666;
    font-size: 12px
}

.share-value {
    font-weight: 700;
    color: #1c1c1c;
    font-size: 12px
}

.share-bar {
    height: 6px;
    background: #eef1f4;
    border-radius: 999px;
    overflow: hidden
}

.share-bar .share-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(200, 48, 45, .6), rgba(200, 48, 45, 1))
}

.share-bar .share-fill.fill--shopee {
    background: linear-gradient(90deg, #ff7c4a, #ff4e3b)
}

.share-bar .share-fill.fill--tokopedia {
    background: linear-gradient(90deg, #25a55b, #1f7a46)
}

.share-bar .share-fill.fill--lazada {
    background: linear-gradient(90deg, #4e6cff, #3849b9)
}

.share-bar .share-fill.fill--bukalapak {
    background: linear-gradient(90deg, #ed1461, #d81b60)
}

.share-bar .share-fill.fill--tiktok {
    background: linear-gradient(90deg, #333, #111)
}

.share-bar .share-fill.fill--blibli {
    background: linear-gradient(90deg, #2196f3, #2962ff)
}

.platform-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.platform-list li {
    color: #555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px
}

.platform-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f9ebed;
    border: 1px solid #f0cfd2;
    color: #c8302d;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 8px rgba(200, 48, 45, .12)
}

.platform-summary {
    margin-top: 18px;
    background: linear-gradient(180deg, #1f1f1f, #121212);
    color: #fff;
    border-radius: 22px;
    padding: 22px 24px;
    display: flex;
    margin-right: 100px;
    margin-left: 100px;
    align-items: center;
    justify-content: space-evenly;
    gap: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.platform-summary .metric-value {
    font-weight: 800;
    font-size: 28px;
    color: var(--red);
}

.platform-summary .metric-label {
    color: #c2c5ca;
    font-size: 12px;
    letter-spacing: .2px;
}

.platform-summary .summary-item {
    text-align: center
}

@media(max-width:768px) {
    .platform-title {
        font-size: 32px
    }
}

@media(max-width:576px) {
    .platform-title {
        font-size: 28px
    }

    .platform-sub {
        padding: 0 12px
    }

    .platform-summary {
        flex-direction: column;
        gap: 8px
    }
}

/* SECTION 7 */

.team-section {
    background: #fff;
    color: #1c1c1c;
    padding: 60px 0 50px
}

.team-badge {
    display: block;
    width: fit-content;
    background: rgba(200, 48, 45, .12);
    color: #c8302d;
    border: 1px solid rgba(200, 48, 45, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 auto 12px
}

.team-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center
}

.team-title .accent {
    color: var(--red)
}

.team-sub {
    max-width: 860px;
    margin: 0 auto 24px;
    color: #666;
    text-align: center
}

.team-grid .team-tile {
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    min-height: 220px;
    position: relative;
    will-change: transform, box-shadow, border-color;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color .18s ease
}

.team-grid .team-tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s cubic-bezier(0.22, 1, 0.36, 1), filter .22s ease
}

.team-grid .team-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px at 92% 88%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(0deg, rgba(208, 56, 54, 0.03), rgba(213, 54, 51, 0.06));
    opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none
}

.team-grid .team-tile:hover {
    transform: translateY(-3px);
    border-color: #f0cfd2;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .10)
}

.team-grid .team-tile:hover::after {
    opacity: 1
}

.team-grid .team-tile:hover img {
    transform: scale(1.02);
    filter: saturate(1.05) contrast(1.02) brightness(0.98)
}

.team-grid .stack .team-tile {
    min-height: 160px
}

.team-metrics {
    margin-top: 14px
}

.team-metrics .metric-value {
    font-weight: 800;
    font-size: 28px;
    color: var(--red)
}

.team-metrics .metric-label {
    color: #8a8a8a;
    font-size: 12px
}

@media(max-width:768px) {
    .team-title {
        font-size: 32px
    }

    .team-grid .team-tile {
        min-height: 180px
    }

    .team-grid .stack .team-tile {
        min-height: 140px
    }
}

@media(max-width:576px) {
    .team-title {
        font-size: 28px
    }

    .team-sub {
        padding: 0 12px
    }

    .team-metrics .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 12px
    }
}

/* SECTION 8 */

.contact-section {
    background: radial-gradient(circle at 18% 80%, rgba(229, 57, 53, .18) 0%, transparent 45%), radial-gradient(circle at 82% 20%, rgba(229, 57, 53, .12) 0%, transparent 50%), var(--bg);
    color: #fff;
    padding: 60px 0 50px
}

.start-badge {
    display: inline-block;
    background: rgba(229, 57, 53, .12);
    color: #ff7070;
    border: 1px solid rgba(229, 57, 53, .35);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600
}

.contact-title {
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    margin: 12px 0
}

.contact-title .accent {
    color: var(--red)
}

.contact-sub {
    max-width: 860px;
    margin: 0 auto 24px;
    color: #d4d4d4;
    text-align: center
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px
}

.info-label {
    color: #cfcfcf;
    font-size: 13px;
    font-weight: 700
}

.info-value {
    color: #ff7070;
    font-size: 13px
}

.info-value a {
    color: #ff7070;
    text-decoration: none
}

.expect-card {
    background: rgba(24, 24, 26, .9);
    border: 1px solid #2a2a2e;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    padding: 16px
}

.expect-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px
}

.expect-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.expect-list li {
    color: #cfcfcf;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px
}

.expect-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f9ebed;
    border: 1px solid #f0cfd2;
    color: #c8302d;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 8px rgba(200, 48, 45, .12)
}

.consult-card {
    background: #fff;
    color: #1c1c1c;
    border: 1px solid #e6e9f0;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    padding: 20px
}

.consult-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px
}

.consult-form .form-group {
    margin-bottom: 12px
}

.consult-form label {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-bottom: 6px
}

.consult-form input, .consult-form select, .consult-form textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: #1c1c1c
}

.consult-form textarea {
    min-height: 120px
}

.consult-form input::placeholder, .consult-form textarea::placeholder {
    color: #a8a8a8
}

.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus {
    outline: none;
    border-color: #f0cfd2;
    box-shadow: 0 8px 18px rgba(200, 48, 45, .10)
}

.consult-card .btn-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center
}

.contact-section .icon-pill {
    background: rgba(255, 78, 59, .10);
    border-color: rgba(255, 78, 59, .35);
    box-shadow: 0 10px 18px rgba(255, 78, 59, .16)
}

.contact-section .icon-pill .icon {
    color: #ff4e3b
}

.contact-section .expect-list li::before {
    background: rgba(255, 78, 59, .10);
    border-color: rgba(255, 78, 59, .35);
    color: #ff4e3b
}

.privacy-note {
    color: #6b6b6b;
    font-size: 12px;
    text-align: center;
    margin-top: 8px
}

@media(max-width:768px) {
    .contact-title {
        font-size: 32px
    }
}

@media(max-width:576px) {
    .contact-title {
        font-size: 28px
    }

    .contact-sub {
        padding: 0 12px
    }
}

/* SECTION 9 */

.enabler-footer {
    background: #1a1a1a;
    color: #cfcfcf;
    padding: 40px 0 0;
    border-top: 1px solid #2a2a2e
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.footer-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #222;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-logo img {
    height: 28px
}

.footer-title {
    font-weight: 800;
    color: #fff
}

.footer-desc {
    color: #9a9a9a;
    font-size: 13px;
    line-height: 1.6;
    margin: 10px 0 12px;
    max-width: 420px
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-info .info-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-info .info-row .lucide {
    width: 16px;
    height: 16px;
    color: #ff4e3b
}

.footer-col .col-title {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 13px
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    border-top: 1px solid #2a2a2e;
    margin-top: 22px;
    padding: 16px 0
}

.footer-bottom .copyright {
    color: #9a9a9a;
    font-size: 12px
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.footer-social .social-pill {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #262626;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4e3b;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08)
}

.footer-social .social-pill .lucide {
    width: 18px;
    height: 18px
}

.policy-links {
    text-align: right
}

.policy-links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 12px;
    margin-left: 16px
}

.policy-links a:hover {
    color: #fff
}

@media(max-width:576px) {
    .footer-desc {
        max-width: 100%
    }

    .policy-links {
        text-align: center
    }
}