/* ============================= TOKENS ============================= */
:root {
    --navy-950: #0B1B3D;
    --navy-900: #0E2246;
    --navy-800: #162D55;
    --navy-700: #1E3A66;
    --orange-600: #E65F19;
    --orange-500: #F2793A;
    --orange-400: #FF9259;
    --orange-100: #FFF5F0;
    --orange-50: #FFFAF6;
    --cream-100: #FAF6F0;
    --mist-100: #F4F6F9;
    --mist-200: #EAEDF4;
    --slate-800: #353E53;
    --green-600: #107C41;
    --green-100: #EDF7F1;
    --ink-900: #0B1B3D;
    --ink-700: #33394A;
    --ink-600: #525C73;
    --ink-400: #8891A4;
    --line: #E7E9F0;
    --white: #FFFFFF;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-pill: 999px;
    --shadow-sm: 0 2px 10px rgba(11, 27, 61, 0.07);
    --shadow-md: 0 14px 34px rgba(11, 27, 61, 0.12);
    --shadow-lg: 0 24px 60px rgba(11, 27, 61, 0.18);
    --container: 1220px;
    --font-head: 'Baloo 2', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    --dur: .6s;
    --ease: cubic-bezier(.22, .85, .32, 1);
    color-scheme: light;
}

/* Brand identity is fixed regardless of system theme (business marketing site) */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(88px + env(safe-area-inset-top, 0px));
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: var(--navy-950);
    margin: 0;
    line-height: 1.12;
    font-weight: 700;
}

p {
    margin: 0;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width:640px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .topbar-right {
        display: none !important;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-100);
    color: var(--orange-600);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .02em;
    padding: 7px 16px;
    border-radius: var(--r-pill);
}

.section {
    padding: 96px 0;
    position: relative;
}

@media (max-width:768px) {
    .section {
        padding: 64px 0;
    }

    .about-sec {
        padding: 17px 0 !important;
    }
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    margin: 14px 0 14px;
}

.section-head p {
    color: var(--ink-600);
    font-size: 16.5px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background-color .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
    white-space: nowrap;
}

.btn svg {
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn:active {
    transform: scale(.97);
}

.btn:focus-visible {
    outline: 3px solid var(--orange-400);
    outline-offset: 2px;
}

.btn-orange {
    background: var(--orange-600);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(230, 95, 25, .28);
}

.btn-orange:hover {
    background: var(--orange-500);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(230, 95, 25, .36);
}

.btn-navy {
    background: var(--navy-950);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy-950);
    border-color: var(--navy-950);
}

.btn-outline-navy:hover {
    background: var(--navy-950);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 11px 18px;
    font-size: 13.5px;
}

/* reveal-on-scroll (kept quiet & purposeful, not on every element) */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-group.is-visible .reveal-child {
    opacity: 1;
    transform: none;
}

.reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

/* ============================= TOPBAR ============================= */
.topbar {
    background: var(--navy-950);
    color: #cfd6e6;
    font-size: 13px;
    padding: 9px 0;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #e7ecf7;
}

.topbar-msg svg {
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.topbar-right b {
    color: #fff;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .25);
}

.lang-toggle {
    background: none;
    border: none;
    color: #cfd6e6;
    font-weight: 600;
    font-size: 13px;
    padding: 2px;
}

.lang-toggle:hover {
    color: #fff;
}

@media (max-width:640px) {
    .topbar-msg span.long {
        display: none;
    }
}

/* ============================= HEADER / NAV ============================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(11, 27, 61, .08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    /* background: var(--orange-600); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* box-shadow: 0 6px 14px rgba(230, 95, 25, .35); */
}

.brand-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
    color: var(--navy-950);
    letter-spacing: .01em;
}

.brand-name span {
    color: #0B8A9D !important;
}

.nav-search {
    flex: 1;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--mist-100);
    border: 1px solid var(--mist-200);
    border-radius: var(--r-pill);
    padding: 10px 16px;
    color: var(--ink-400);
    transition: border-color .25s ease, background .25s ease;
}

.nav-search:focus-within {
    border-color: var(--orange-400);
    background: #fff;
}

.nav-search input {
    border: none;
    background: none;
    outline: none;
    font: inherit;
    font-size: 14px;
    width: 100%;
    color: var(--ink-700);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink-700);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--orange-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.nav-links a:hover {
    color: var(--navy-950);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--navy-950);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 120;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--navy-950);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width:992px) {
    .nav-search {
        display: none;
    }
}

@media (max-width:860px) {
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        top: 0;
        height: 100%;
        width: min(78vw, 320px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: calc(90px + env(safe-area-inset-top, 0px)) 28px 28px;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        box-shadow: -16px 0 40px rgba(11, 27, 61, .12);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--line);
    }

    .hamburger {
        display: flex;
    }

    .nav-scrim {
        position: fixed;
        inset: 0;
        background: rgba(11, 27, 61, .35);
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
        z-index: 90;
        display: none;
    }

    .nav-scrim.open {
        /* opacity: 1; */
        pointer-events: auto;
    }

}

.brand-badge img {
    padding: 50px;
}

/* ============================= HERO ============================= */
.hero {
    padding: 76px 0 90px;
    overflow: hidden;
    position: relative;
    /* background: url('../images/bg.png') center no-repeat; */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(34px, 4.6vw, 52px);
    letter-spacing: -.01em;
    margin: 18px 0 20px;
}

.hero-copy h1 .line {
    display: block;
}

.hero-copy h1 .accent {
    color: var(--orange-600);
}

.hero-copy p.lede {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-600);
    max-width: 520px;
    margin-bottom: 26px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 32px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--navy-950);
}

.hero-features li svg {
    color: var(--green-600);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.hero-visual .glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 95, 25, .16), rgba(230, 95, 25, 0) 70%);
    filter: blur(10px);
}

.side-slip {
    position: absolute;
    width: 150px;
    height: 340px;
    border-radius: 26px;
    background: linear-gradient(160deg, #1F7A46, #0F4C2C);
    box-shadow: var(--shadow-md);
    transform: rotate(-14deg);
}

.side-slip.right {
    background: linear-gradient(160deg, #F2A33A, #C97313);
    transform: rotate(14deg);
}

.side-slip.left {
    left: -6px;
}

.side-slip.right {
    right: -6px;
}

.phone {
    position: relative;
    width: 250px;
    height: 500px;
    border-radius: 38px;
    background: #0c1116;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(11, 27, 61, .28), 0 0 0 2px #10151c;
    z-index: 2;
}

.phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 18px;
    background: #0c1116;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.phone-head {
    background: linear-gradient(135deg, #3B8CD6, #2F6FBF);
    color: #fff;
    padding: 34px 18px 22px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
}

.phone-head .truck {
    margin-top: 10px;
}

.phone-body {
    padding: 0 12px;
    margin-top: -14px;
}

.phone-chip-row {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 10px;
    color: var(--ink-600);
    font-weight: 600;
}

.phone-chip-row .pill {
    background: var(--mist-100);
    border-radius: 8px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone-dispatch {
    margin: 8px 0;
    background: #F6C453;
    color: #5A4200;
    font-weight: 700;
    font-size: 10.5px;
    text-align: center;
    padding: 6px;
    border-radius: 8px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 2px;
    border-bottom: 1px solid #F0F1F5;
}

.phone-item .dot {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    flex-shrink: 0;
}

.phone-item .meta {
    flex: 1;
    min-width: 0;
}

.phone-item .meta b {
    display: block;
    font-size: 10px;
    color: var(--navy-950);
}

.phone-item .meta span {
    font-size: 8.5px;
    color: var(--ink-400);
}

.phone-item .date {
    font-size: 8.5px;
    color: var(--ink-600);
    font-weight: 600;
}

@media (max-width:992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-showcase .container {
        grid-template-columns: 1fr !important;
        /* text-align: center; */
    }

    .app-showcase .store-buttons {
        justify-content: start;
    }

    .hero-copy p.lede {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        min-height: 380px;
    }

    .side-slip {
        display: none;
    }
}

/* ============================= STATS ============================= */
.stats {
    background: var(--cream-100);
    padding: 52px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    text-align: center;
    padding: 0 18px;
    position: relative;
}

.stat+.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--line);
}

.stat .num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--orange-600);
}

.stat .label {
    font-weight: 700;
    color: var(--navy-950);
    margin-top: 6px;
    font-size: 15px;
}

.stat .desc {
    color: var(--ink-600);
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.4;
}

@media (max-width:768px) {
    .brand-badge img {
        padding: 30px;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
    }

    .stat:nth-child(3)::before {
        display: none;
    }
}

/* ============================= APP SHOWCASE (ORBIT) ============================= */
.orbit-section {
    position: relative;
    overflow: hidden;
    /* padding-bottom: 190px; */
}

.orbit-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;
    z-index: 0;
    pointer-events: none;
}

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

.orbit-stage {
    position: relative;
    height: 440px;
    max-width: 720px;
    margin: 0 auto;
    z-index: 1;
}

.orbit-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 186px;
    height: 376px;
    margin: -188px 0 0 -93px;
    animation-name: orbitMove, orbitZ;
    animation-duration: 12s, 12s;
    animation-timing-function: ease-in-out, linear;
    animation-iteration-count: infinite, infinite;
    will-change: transform;
}

.orbit-stage:hover .orbit-phone {
    animation-play-state: paused, paused;
}

@keyframes orbitMove {
    0% {
        transform: translate(-228px, 56px) rotate(-9deg) scale(.8);
        opacity: .85;
    }

    33.333% {
        transform: translate(0, -8px) rotate(0deg) scale(1);
        opacity: 1;
    }

    66.666% {
        transform: translate(228px, 56px) rotate(9deg) scale(.8);
        opacity: .85;
    }

    100% {
        transform: translate(-228px, 56px) rotate(-9deg) scale(.8);
        opacity: .85;
    }
}

@keyframes orbitZ {

    0%,
    32.9% {
        z-index: 1;
    }

    33%,
    65.9% {
        z-index: 3;
    }

    66%,
    99.9% {
        z-index: 2;
    }

    100% {
        z-index: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-phone {
        animation: none !important;
    }

    .orbit-phone:nth-child(1) {
        transform: translate(-228px, 56px) rotate(-9deg) scale(.8);
        z-index: 1;
    }

    .orbit-phone:nth-child(2) {
        transform: translate(0, -8px) scale(1);
        z-index: 3;
    }

    .orbit-phone:nth-child(3) {
        transform: translate(228px, 56px) rotate(9deg) scale(.8);
        z-index: 1;
    }
}

.orbit-phone-body {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: #0c1116;
    padding: 9px;
    position: relative;
    box-shadow: 0 22px 46px rgba(11, 27, 61, .28), 0 0 0 2px #10151c;
}

.orbit-phone-body::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 14px;
    background: #0c1116;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.orbit-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.orbit-head {
    padding: 28px 14px 14px;
    color: #fff;
    position: relative;
}

.orbit-head.green {
    background: linear-gradient(160deg, #2F7A3E, #1B4E27);
}

.orbit-head.orange {
    background: linear-gradient(160deg, #F2A33A, #C97313);
}

.orbit-head-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
    max-width: 120px;
}

.orbit-check {
    position: absolute;
    top: 14px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C97313;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.orbit-mini {
    padding: 12px;
}

.orbit-mini-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--ink-600);
    margin: 9px 0 6px;
}

.orbit-mini-label:first-child {
    margin-top: 2px;
}

.orbit-swatch-row {
    display: flex;
    gap: 7px;
}

.orbit-sw {
    flex: 1;
    aspect-ratio: 1/1;
    border-radius: 9px;
}

.orbit-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 14px;
}

.orbit-badge-grid .cell {
    aspect-ratio: 1/1;
    border-radius: 9px;
}

/* smaller re-used hero-phone markup inside the orbit carousel */
.orbit-phone .phone-head {
    padding: 26px 12px 13px;
    font-size: 13px;
}

.orbit-phone .phone-head .truck svg {
    width: 20px;
    height: 20px;
}

.orbit-phone .phone-body {
    padding: 0 8px;
    margin-top: -12px;
}

.orbit-phone .phone-chip-row {
    padding: 7px 8px;
    font-size: 8px;
}

.orbit-phone .phone-dispatch {
    font-size: 8.5px;
    padding: 5px;
    margin: 6px 0;
}

.orbit-phone .phone-item {
    padding: 5px 1px;
}

.orbit-phone .phone-item .dot {
    width: 16px;
    height: 16px;
    border-radius: 5px;
}

.orbit-phone .phone-item .meta b {
    font-size: 8.5px;
}

.orbit-phone .phone-item .meta span,
.orbit-phone .phone-item .date {
    font-size: 6.8px;
}

@media (max-width:768px) {
    .info_section_wrap {
        flex-wrap: wrap;
    }

    .orbit-stage {
        height: 360px;
    }

    .orbit-phone {
        width: 150px;
        height: 304px;
        margin: -152px 0 0 -75px;
    }

    @keyframes orbitMove {
        0% {
            transform: translate(-150px, 44px) rotate(-9deg) scale(.8);
            opacity: .85;
        }

        33.333% {
            transform: translate(0, -6px) rotate(0deg) scale(1);
            opacity: 1;
        }

        66.666% {
            transform: translate(150px, 44px) rotate(9deg) scale(.8);
            opacity: .85;
        }

        100% {
            transform: translate(-150px, 44px) rotate(-9deg) scale(.8);
            opacity: .85;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .orbit-phone:nth-child(1) {
            transform: translate(-150px, 44px) rotate(-9deg) scale(.8);
        }

        .orbit-phone:nth-child(2) {
            transform: translate(0, -6px) scale(1);
        }

        .orbit-phone:nth-child(3) {
            transform: translate(150px, 44px) rotate(9deg) scale(.8);
        }
    }

    .orbit-section {
        /* padding-bottom: 130px; */
    }
}

@media (max-width:480px) {
    .info_img_sec img {
        width: 100% !important;
        height: 206px !important;

    }

    .info_section_wrap>div {
        min-width: 319px !important;
    }

    .info_img_sec {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .orbit-stage {
        height: 300px;
    }

    .orbit-phone {
        width: 120px;
        height: 243px;
        margin: -121px 0 0 -60px;
    }

    @keyframes orbitMove {
        0% {
            transform: translate(-104px, 34px) rotate(-8deg) scale(.78);
            opacity: .85;
        }

        33.333% {
            transform: translate(0, -4px) rotate(0deg) scale(1);
            opacity: 1;
        }

        66.666% {
            transform: translate(104px, 34px) rotate(8deg) scale(.78);
            opacity: .85;
        }

        100% {
            transform: translate(-104px, 34px) rotate(-8deg) scale(.78);
            opacity: .85;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .orbit-phone:nth-child(1) {
            transform: translate(-104px, 34px) rotate(-8deg) scale(.78);
        }

        .orbit-phone:nth-child(2) {
            transform: translate(0, -4px) scale(1);
        }

        .orbit-phone:nth-child(3) {
            transform: translate(104px, 34px) rotate(8deg) scale(.78);
        }
    }
}

/* ============================= BRANDS ============================= */
.brands-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.brands-head h2 {
    font-size: clamp(24px, 3vw, 30px);
}

.brands-head h2 .hl {
    color: #2A5FCB;
    border-bottom: 3px solid #2A5FCB;
    padding-bottom: 2px;
    height: 33px;
    display: inline-block;
}

.brands-head p {
    color: var(--ink-600);
    margin-top: 8px;
    max-width: 520px;
}

.brands-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.brand-marquee {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
}

.brand-row {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 48px, #000 calc(100% - 48px), transparent 100%);
}

.brand-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: brandScroll 32s linear infinite;
}

.brand-row.reverse .brand-track {
    animation-direction: reverse;
}

.brand-row:nth-of-type(2) .brand-track {
    animation-duration: 38s;
}

.brand-row:nth-of-type(3) .brand-track {
    animation-duration: 26s;
}

.brand-row:hover .brand-track {
    animation-play-state: paused;
}

@keyframes brandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-badge {
    flex: 0 0 auto;
    overflow: hidden;
    width: 190px;
    height: 78px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.brand-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

.brands-strip {
    background: var(--slate-800);
    color: #fff;
    text-align: center;
    padding: 22px 20px;
}

.brands-strip p {
    font-weight: 600;
    font-size: 15px;
}

.brands-strip button {
    all: unset;
    display: inline-block;
    margin-top: 6px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.brands-strip button:hover {
    color: var(--orange-400);
}

@media (prefers-reduced-motion: reduce) {
    .brand-track {
        animation-play-state: paused !important;
    }
}

@media (max-width:860px) {
    .brand-marquee {
        padding: 22px;
        gap: 12px;
    }

    .brand-badge {
        height: 64px;
        width: 150px;
        font-size: 13px;
    }
}
.site-popup{
    display: none;
}

@media (max-width:480px) {
    .brand-badge {
        width: 130px;
    }
    .site-popup{
    display: initial;
}
}


/* ============================= CATEGORIES ============================= */
.cat-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.cat-head h2 {
    font-size: clamp(24px, 3vw, 30px);
}

.cat-head h2 .hl {
    color: #2A5FCB;
    border-bottom: 3px solid #2A5FCB;
    padding-bottom: 2px;
    display: inline-block;
    height: 33px;
}

.cat-head p {
    color: var(--ink-600);
    margin-top: 8px;
}

.cat-arrows {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}

.arrow-btn:hover {
    background: var(--navy-950);
    color: #fff;
    border-color: var(--navy-950);
}

.arrow-btn:active {
    transform: scale(.92);
}

.arrow-btn:disabled {
    opacity: .35;
    pointer-events: none;
}

.cat-viewport {
    overflow: hidden;
}

.cat-track {
    display: flex;
    transition: transform .5s var(--ease);
}

.cat-page {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px 18px;
}

.cat-card {
    text-align: center;
    cursor: pointer;
}

.cat-icon {
    width: 100%;
    aspect-ratio: 1/.92;
    border-radius: 16px;
    background: var(--mist-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--navy-800);
    transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}

.cat-card:hover .cat-icon {
    transform: translateY(-5px);
    background: var(--orange-100);
    color: var(--orange-600);
    box-shadow: var(--shadow-sm);
}

.cat-card span {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink-700);
    line-height: 1.3;
}

@media (max-width:860px) {
    .cat-page {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:480px) {

    /* .cat-page {
        grid-template-columns: repeat(2, 1fr);
    } */
    .cat-page {

        gap: 2px 12px;
    }

    .cat-icon {
        margin-bottom: 0;
    }

    .hero {
        /* background: url(../images/bg.png)  no-repeat; */
    }

    .hero-ctas {
        justify-content: start;
    }

    .hero-features {
        justify-content: start;
        flex-direction: column;
        gap: 9px;

    }

    .hero .container {
        text-align: start;
    }
}

/* ============================= ECOSYSTEM ============================= */
.ecosystem {
    background: var(--mist-100);
}

.eco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.eco-card {
    border-radius: var(--r-lg);
    padding: 44px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.eco-card:hover {
    transform: translateY(-6px);
}

.eco-card.light {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.eco-card.light:hover {
    box-shadow: var(--shadow-md);
}

.eco-card.dark {
    background: var(--navy-950);
    color: #cfd6e6;
    box-shadow: var(--shadow-md);
}

.eco-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.eco-card.light .eco-icon {
    background: var(--orange-100);
    color: var(--orange-600);
}

.eco-card.dark .eco-icon {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.eco-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.eco-card.dark h3 {
    color: #fff;
}

.eco-card p.desc {
    line-height: 1.65;
    margin-bottom: 20px;
    color: var(--ink-600);
}

.eco-card.dark p.desc {
    color: #aab4cc;
}

.eco-list {
    margin-bottom: 28px;
}

.eco-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-weight: 500;
    font-size: 15px;
}

.eco-card.dark .eco-list li {
    color: #e3e8f4;
}

.eco-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width:860px) {
    .eco-grid {
        grid-template-columns: 1fr;
    }

    .eco-card {
        padding: 32px 26px;
    }
}

/* ============================= STEPS ============================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--cream-100);
    border-radius: var(--r-lg);
    padding: 32px 30px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 32px;
    color: var(--orange-600);
}

.step-card h3 {
    font-size: 20px;
    margin: 12px 0 10px;
}

.step-card p {
    color: var(--ink-600);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width:860px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= WHY CHOOSE ============================= */
.why {
    background: var(--navy-950);
    color: #fff;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .03em;
    padding: 7px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

.why-copy h2 {
    color: #fff;
    font-size: clamp(26px, 3.4vw, 36px);
    margin-bottom: 16px;
}

.why-copy p {
    color: #aab4cc;
    line-height: 1.65;
    font-size: 16px;
    max-width: 440px;
    margin-bottom: 26px;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-card {
    background: var(--navy-800);
    border-radius: var(--r-md);
    padding: 26px 22px;
    transition: transform .35s var(--ease), background .35s var(--ease);
}

.why-card:hover {
    transform: translateY(-6px);
    background: #1c3868;
}

.why-card .ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--orange-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-card h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 17px;
    margin-bottom: 8px;
}

.why-card p {
    color: #aab4cc;
    font-size: 13.5px;
    line-height: 1.55;
}

@media (max-width:860px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        margin-top: 6px;
    }
}

@media (max-width:480px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================= APP DOWNLOAD ============================= */
.app-section {
    background: var(--orange-100);
}

.app-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.app-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.app-visual .blob {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 95, 25, .14), transparent 70%);
}

.app-phone {
    width: 230px;
    height: 462px;
    border-radius: 34px;
    background: #111;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.app-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
}

.app-bar {
    background: linear-gradient(120deg, #E65F19, #2F6FBF);
    padding: 26px 12px 12px;
}

.app-bar .title {
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.app-search {
    background: rgba(255, 255, 255, .92);
    border-radius: 9px;
    padding: 7px 10px;
    font-size: 9.5px;
    color: var(--ink-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-rows {
    padding: 10px;
}

.app-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    border-bottom: 1px solid #F0F1F5;
}

.app-row .thumb {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
}

.app-row .info {
    flex: 1;
    min-width: 0;
}

.app-row .info b {
    display: block;
    font-size: 9.5px;
    color: var(--navy-950);
}

.app-row .info span {
    font-size: 8px;
    color: var(--ink-400);
}

.app-row .price {
    font-size: 9px;
    font-weight: 700;
    color: var(--navy-950);
}

.app-row .buy {
    background: var(--orange-600);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: 6px;
}

.app-copy h2 {
    font-size: clamp(26px, 3.4vw, 36px);
    margin: 14px 0 16px;
}

.app-copy p.lede {
    color: var(--ink-600);
    line-height: 1.65;
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 22px;
}

.app-list {
    margin-bottom: 28px;
}

.app-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy-950);
}

.app-list li svg {
    flex-shrink: 0;
    color: var(--green-600);
}

.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-950);
    color: #fff;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .3s var(--ease), background .3s var(--ease);
}

.store-btn:hover {
    transform: translateY(-3px);
    background: var(--navy-800);
}

@media (max-width:860px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .app-copy {
        text-align: center;
    }

    .app-copy p.lede {
        margin-left: auto;
        margin-right: auto;
    }

    .app-list {
        text-align: left;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .store-buttons {
        justify-content: center;
    }
}

/* ============================= TESTIMONIALS ============================= */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.test-card {
    background: var(--mist-100);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.test-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.test-card p.quote {
    font-style: italic;
    color: var(--ink-700);
    line-height: 1.65;
    margin-bottom: 24px;
    font-size: 15px;
}

.test-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.test-person .name {
    font-weight: 700;
    color: var(--navy-950);
    font-size: 14.5px;
}

.test-person .loc {
    font-size: 12.5px;
    color: var(--ink-400);
}

@media (max-width:860px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================= CTA ============================= */
.cta {
    position: relative;
    background: var(--navy-950);
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 110px 0;
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.cta::before {
    width: 420px;
    height: 420px;
    background: rgba(230, 95, 25, .20);
    top: -160px;
    left: -100px;
}

.cta::after {
    width: 360px;
    height: 360px;
    background: rgba(47, 111, 191, .22);
    bottom: -140px;
    right: -80px;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    max-width: 760px;
    margin: 0 auto 18px;
}

.cta p {
    color: #c3cbe0;
    font-size: 16.5px;
    max-width: 560px;
    margin: 0 auto 34px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================= FOOTER ============================= */
.site-footer {
    background: var(--navy-950);
    color: #aab4cc;
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 52px;
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand p {
    margin: 16px 0 20px;
    line-height: 1.65;
    font-size: 14.5px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, transform .3s ease;
}

.footer-social a:hover {
    background: var(--orange-600);
    transform: translateY(-3px);
}

.footer-col h5 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: .03em;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14.5px;
    transition: color .25s ease, padding-left .25s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #8a93ac;
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

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

@media (max-width:860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Back to top */
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy-950);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px) scale(.9);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, background .3s ease;
    z-index: 80;
}

.to-top.show {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.to-top:hover {
    background: var(--orange-600);
}

:focus-visible {
    outline: 3px solid var(--orange-400);
    outline-offset: 2px;
}




.info_section_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    /* overflow-x: auto; */
    width: 100%;
}

.info_section_wrap>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    flex-shrink: 0;
    min-width: 363px;
}

.info_icon_sec svg {
    height: 45px;
    width: 26px;
}

.info {
    background: #F3F8FF;
}

.info_text_sec {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info_txt>h3 {
    padding-bottom: 5px;
}

.info_img_sec img {
    width: 360px;
    height: 217px;
    border-radius: 30px;
    object-fit: cover;
}


.info_txt p {
    font-size: 14px;
}

.info_txt>h3>span {
    color: #2a5fcb;
}

.info_icon_sec {
    background: #2a5fcbc4;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #fff;
    color: #fff;
}

.app-showcase .container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.app-sec-head {
    text-align: start;
    margin: 0;
}

.app-sec-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-sec-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 9px;
    margin: 10px 0;
}

.app-sec-icon svg {
    color: #e65f19;
    width: 18px;
    height: 18px;
}

.brand>img {
    width: 115px;
}


.site-popup {
    position: fixed;
    bottom: 0;
    left: 4%;
    bottom: 3%;
    cursor: pointer;
}

button#bottomTop {
    all: unset;
    background: red;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy-950);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    /* opacity: 0; */
    transform: translateY(12px) scale(.9);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, background .3s ease;
    font-size: 25px;
    transform-origin: center center;

}

.svg_hold {
    transform: rotate(45deg);
}

.site-pop a {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

a.telephone {
    background: green;
}

a.whatsapp {
    background: #00bc00;
    margin-bottom: 10px;
}

.site-popup-card {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}


/* =========================
   ENQUIRY MODAL
========================= */

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.enquiry-modal.active {
    display: flex;
}

/* Overlay */

.enquiry-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

/* Modal Card */

.enquiry-modal-card {
    position: relative;
    z-index: 2;

    width: min(900px, calc(100% - 30px));
    max-height: 90vh;

    background: #fff;
    border-radius: 16px;

    overflow-y: auto;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);

    animation: enquiryModalIn 0.35s ease;
}

@keyframes enquiryModalIn {

    from {
        opacity: 0;
        transform: translateY(35px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Header */

.enquiry-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding: 24px 28px;

    border-bottom: 1px solid #eeeeee;
}

.enquiry-modal-header h2 {
    margin: 0;

    font-size: 25px;
    font-weight: 700;
    color: #222;
}

.enquiry-modal-header p {
    margin: 5px 0 0;

    font-size: 14px;
    color: #888;
}


/* Close */

.enquiry-close {
    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;

    background: #f5f5f5;

    font-size: 25px;
    line-height: 1;

    color: #555;

    cursor: pointer;

    transition: 0.25s;
}

.enquiry-close:hover {
    background: #eeeeee;
    transform: rotate(90deg);
}


/* Form */

#enquiryForm {
    padding: 26px 28px;
}

.enquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* Field */

.enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.enquiry-full {
    grid-column: 1 / -1;
}


/* Label */

.enquiry-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.enquiry-field label span {
    color: #e53935;
}


/* Input + Select */

.enquiry-field input,
.enquiry-field select {
    width: 100%;
    height: 46px;

    padding: 0 14px;

    border: 1px solid #dedede;
    border-radius: 8px;

    background: #fff;

    color: #333;
    font-size: 14px;

    outline: none;

    transition: 0.25s;
}

.enquiry-field input::placeholder {
    color: #aaa;
}

.enquiry-field input:focus,
.enquiry-field select:focus {
    border-color: #2b8f13;
    box-shadow: 0 0 0 3px rgba(43, 143, 19, 0.08);
}


/* Footer */

.enquiry-form-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;

    margin-top: 28px;
    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}


/* Buttons */

.enquiry-cancel-btn,
.enquiry-submit-btn {
    height: 44px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s;
}

.enquiry-cancel-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
}

.enquiry-cancel-btn:hover {
    background: #f5f5f5;
}

.enquiry-submit-btn {
    border: 1px solid var(--orange-500);
    background: var(--orange-500);
    color: #fff;
}

.enquiry-submit-btn:hover {
    background: var(--orange-600);
}


/* Mobile */

@media (max-width: 650px) {

    .enquiry-modal-card {
        width: calc(100% - 20px);
        /* max-height: 92vh; */
        max-height: 57vh;
        border-radius: 12px;
    }

    .enquiry-modal-header {
        padding: 20px;
    }

    #enquiryForm {
        padding: 20px;
    }

    .enquiry-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .enquiry-full {
        grid-column: auto;
    }

    .enquiry-form-footer {
        flex-direction: column-reverse;
    }

    .enquiry-cancel-btn,
    .enquiry-submit-btn {
        width: 100%;
    }
}





/* ============================================================= */
/* ==================  CONTACT US PAGE STYLES  =================== */
/* ============================================================= */
/* Loaded together with style.css on contact.html.                 */

/* Contact info cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: var(--cream-100);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    text-align: center;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.contact-info-card .ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy-950);
    color: #fff;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.contact-info-card p {
    color: var(--ink-600);
    font-size: 13.5px;
    line-height: 1.5;
}

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

@media (max-width:480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact form + office panel */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.contact-form-card>p {
    color: var(--ink-600);
    font-size: 14.5px;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--navy-950);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    font-size: 14.5px;
    color: var(--ink-700);
    background: var(--mist-100);
    transition: border-color .25s ease, background .25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    background: #fff;
}

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

.form-note {
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 4px;
    min-height: 18px;
}

.form-note.success {
    color: var(--green-600);
}

.form-note.error {
    color: #D6303C;
}

.office-panel {
    background: var(--navy-950);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 34px;
}

.office-panel h3 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 18px;
}

.office-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.office-row:last-of-type {
    border-bottom: none;
}

.office-row .ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange-400);
}

.office-row div b {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.office-row div span {
    font-size: 13px;
    color: #aab4cc;
    line-height: 1.5;
}

.map-placeholder {
    margin-top: 20px;
    border-radius: 14px;
    height: 150px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0/24px 24px,
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px) 0 0/24px 24px,
        var(--navy-800);
}

.map-placeholder .pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 50% 0;
    background: var(--orange-600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform-origin: center;
}

.map-placeholder .pin svg {
    transform: rotate(45deg);
}

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

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

/* FAQ accordion */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
    border-top: 1px solid var(--line);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16.5px;
    color: var(--navy-950);
    cursor: pointer;
}

.faq-q .plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    flex-shrink: 0;
    position: relative;
    transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.faq-q .plus::before,
.faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--navy-950);
    top: 50%;
    left: 50%;
    transition: transform .3s var(--ease), background .3s var(--ease);
}

.faq-q .plus::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-q .plus::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-q .plus {
    background: var(--orange-600);
    border-color: var(--orange-600);
}

.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after {
    background: #fff;
}

.faq-item.open .faq-q .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a p {
    color: var(--ink-600);
    font-size: 14.5px;
    line-height: 1.65;
    padding: 0 4px 22px;
    max-width: 640px;
}






/* ============================================================= */
/* ===================  ABOUT US PAGE STYLES  =================== */
/* ============================================================= */
/* Loaded together with style.css on about.html.                  */

/* Story / mission two-column */
.about-story {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.about-story h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    margin-bottom: 16px;
}

.about-story p {
    color: var(--ink-600);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 14px;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: var(--cream-100);
    border-radius: var(--r-md);
    padding: 24px;
    text-align: center;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.about-stat-card .num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 26px;
    color: var(--orange-600);
}

.about-stat-card .label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    margin-top: 4px;
}

@media (max-width:860px) {
    .about-story {
        grid-template-columns: 1fr;
    }
}

/* Values grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px 24px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.value-card .ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--orange-100);
    color: var(--orange-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.value-card h4 {
    font-family: var(--font-head);
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--ink-600);
    font-size: 14px;
    line-height: 1.6;
}

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

@media (max-width:520px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    padding: 0 0 36px 56px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange-600);
    border: 4px solid var(--orange-100);
}

.timeline-year {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--orange-600);
    font-size: 15px;
    margin-bottom: 4px;
}

.timeline-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--ink-600);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Careers strip */
.careers-strip {
    margin-top: 56px;
    background: var(--navy-950);
    border-radius: var(--r-lg);
    padding: 34px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #fff;
}

.careers-strip h4 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 6px;
}

.careers-strip p {
    color: #aab4cc;
    font-size: 14.5px;
}

@media (max-width:640px) {
    .careers-strip {
        text-align: center;
        justify-content: center;
    }
}

/* Leadership */
.leader-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.leader-card {
    text-align: center;
    background: var(--mist-100);
    border-radius: var(--r-lg);
    padding: 30px 20px;
    transition: transform .35s var(--ease);
}

.leader-card:hover {
    transform: translateY(-6px);
}

.leader-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 20px;
}

.leader-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.leader-card span {
    font-size: 13px;
    color: var(--ink-600);
}

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

@media (max-width:480px) {
    .leader-grid {
        grid-template-columns: 1fr;
    }
}

.top-margin {
    margin-top: 15px;
}

.map-placeholder>iframe {
    width: 100%;
}





/* ============================================================= */
/* ===================  OTHERS (LEGAL) PAGE  ===================== */
/* ============================================================= */
/* Loaded together with style.css on others.html.                  */

.legal-tabs-wrap {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.legal-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.legal-tab {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: var(--r-pill);
    background: var(--mist-100);
    color: var(--ink-700);
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid transparent;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}

.legal-tab svg {
    flex-shrink: 0;
}

.legal-tab:hover {
    transform: translateY(-2px);
}

.legal-tab.active {
    background: var(--navy-950);
    color: #fff;
}

.legal-tab .badge-date {
    display: none;
}

.legal-section-wrap {
    padding: 56px 0 96px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 88px;
    background: var(--mist-100);
    border-radius: var(--r-lg);
    padding: 22px 20px;
}

.legal-toc h5 {
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: .03em;
    color: var(--ink-400);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.legal-toc ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 60vh;
    overflow-y: auto;
}

.legal-toc a {
    display: block;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-600);
    transition: background .2s ease, color .2s ease;
    line-height: 1.4;
}

.legal-toc a:hover {
    background: #fff;
    color: var(--navy-950);
}

.legal-toc a.active-link {
    background: #fff;
    color: var(--orange-600);
    box-shadow: var(--shadow-sm);
}

.legal-panel {
    display: none;
}

.legal-panel.active {
    display: block;
    animation: legalFadeIn .4s var(--ease);
}

@keyframes legalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.legal-doc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}

.legal-doc-head {
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.legal-doc-head .eyebrow {
    margin-bottom: 12px;
}

.legal-doc-head h2 {
    font-size: clamp(24px, 2.8vw, 30px);
    margin-bottom: 8px;
}

.legal-doc-head .sub {
    color: var(--ink-600);
    font-size: 14.5px;
}

.legal-doc-head .eff-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-950);
    background: var(--cream-100);
    padding: 6px 14px;
    border-radius: var(--r-pill);
}

.legal-section {
    padding: 22px 0;
    border-bottom: 1px solid var(--mist-200);
    scroll-margin-top: 150px;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h3 {
    font-size: 17.5px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.legal-section h3 .n {
    color: var(--orange-600);
    flex-shrink: 0;
}

.legal-section p {
    color: var(--ink-600);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 10px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 0 0 10px;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-600);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 6px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
}

.legal-section strong {
    color: var(--navy-950);
}

.legal-note {
    margin-top: 30px;
    background: var(--orange-50);
    border: 1.5px dashed var(--orange-400);
    border-radius: var(--r-md);
    padding: 20px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.legal-note svg {
    flex-shrink: 0;
    color: var(--orange-600);
    margin-top: 2px;
}

.legal-note p {
    color: #7a4419;
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0;
}

.legal-contact-block {
    margin-top: 30px;
    background: var(--navy-950);
    color: #fff;
    border-radius: var(--r-md);
    padding: 26px 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.legal-contact-block .item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.legal-contact-block .item svg {
    color: var(--orange-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-contact-block .item b {
    display: block;
    font-size: 13px;
    color: #aab4cc;
    font-weight: 600;
}

.legal-contact-block .item span {
    font-size: 14.5px;
    font-weight: 600;
}

@media (max-width:560px) {
    .legal-contact-block {
        grid-template-columns: 1fr;
    }
}

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

    .legal-toc {
        position: static;
    }

    .legal-toc ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        max-height: none;
    }

    .legal-toc a {
        padding: 7px 12px;
        background: #fff;
    }
}

@media (max-width:640px) {
    .legal-doc-card {
        padding: 28px 22px;
    }

    .legal-tabs {
        padding: 12px 0;
    }

    .legal-tab {
        padding: 9px 15px;
        font-size: 13px;
    }
}
.other-sec{
    padding: 14px 0 !important;
}