:root {
    --brand: #3db2d1;
    --brand-deep: #329fbd;
    --brand-dark: #2188a5;
    --ink: #1c292f;
    --charcoal: #434242;
    --charcoal-2: #2b2a29;
    --muted: #627178;
    --line: #dfe8eb;
    --line-strong: #cbd8dd;
    --surface: #f5f9fa;
    --surface-2: #eaf5f7;
    --white: #ffffff;
    --success: #157f65;
    --danger: #b43333;
    --shadow-sm: 0 12px 32px rgba(26, 45, 53, .07);
    --shadow-lg: 0 28px 80px rgba(20, 40, 49, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1240px;
    --header-h: 84px;
    --transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 5vw, 5.7rem); }
h2 { font-size: clamp(2.15rem, 3.8vw, 4.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
p { color: var(--muted); }

::selection { background: rgba(61,178,209,.25); }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--compact { padding: 72px 0; }
.section--surface { background: var(--surface); }
.section--dark { background: #15262d; color: #fff; }
.section--dark p { color: #b9c9ce; }
.section--overflow-hidden { overflow: hidden; }
.section-header { max-width: 760px; margin-bottom: 46px; }
.section-header--split { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.08rem; margin-bottom: 0; }
.section-header--center { text-align: center; margin-inline: auto; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    margin-bottom: 16px; color: var(--brand-dark);
    font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.eyebrow--light { color: #82d9ea; }
.kicker { color: var(--brand-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: .82rem; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 14px; background: #fff; border-radius: 8px; transform: translateY(-150%); box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: translateY(0); }

.button {
    min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    border-radius: 999px; padding: 12px 22px; border: 1px solid transparent;
    font-weight: 800; font-size: .93rem; letter-spacing: -.01em; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); box-shadow: 0 12px 28px rgba(50,159,189,.22); }
.button--primary:hover { box-shadow: 0 17px 36px rgba(50,159,189,.30); }
.button--secondary { background: #fff; border-color: var(--line-strong); color: var(--ink); }
.button--secondary:hover { border-color: var(--brand); }
.button--light { background: #fff; color: var(--ink); }
.button--ghost-light { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.04); }
.button--ghost-light:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.button--full { width: 100%; }
.button--header { min-height: 44px; padding: 10px 18px; font-size: .86rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-dark); font-weight: 800; }
.text-link span { transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }

.topbar { background: #122127; color: #dce8eb; font-size: .79rem; }
.topbar__inner { min-height: 37px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar__message { display: flex; align-items: center; gap: 10px; white-space: nowrap; overflow: hidden; }
.topbar__message strong { color: #fff; }
.topbar__divider { width: 1px; height: 13px; background: rgba(255,255,255,.22); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(61,178,209,.10); flex: 0 0 auto; }
.topbar__link { color: #8edcec; font-weight: 800; white-space: nowrap; }

.site-header { height: var(--header-h); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(214,226,230,.85); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(16px); }
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(23,45,54,.08); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; width: 220px; flex: 0 0 220px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link { border: 0; background: transparent; padding: 12px 9px; border-radius: 10px; font-weight: 700; font-size: .84rem; color: #33444b; white-space: nowrap; cursor: pointer; }
.nav-link:hover, .nav-link:focus-visible { background: var(--surface); color: var(--ink); outline: none; }
.nav-link--ondc { color: var(--brand-dark); }
.chevron { width: 6px; height: 6px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; display: inline-block; transform: rotate(45deg) translateY(-2px); margin-left: 5px; transition: transform var(--transition); }
.nav-dropdown-toggle[aria-expanded="true"] .chevron { transform: rotate(225deg) translate(-1px,-1px); }
.header-actions { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.header-actions__secondary { font-size: .84rem; font-weight: 800; color: var(--ink); }

.mega-menu, .dropdown-menu { position: absolute; top: calc(100% + 13px); left: 50%; transform: translate(-50%, 8px); opacity: 0; visibility: hidden; pointer-events: none; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
.nav-item.is-open > .mega-menu, .nav-item.is-open > .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-menu::before, .dropdown-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 15px; }
.mega-menu { width: min(840px, calc(100vw - 48px)); padding: 26px; display: grid; gap: 28px; }
.mega-menu--solutions { grid-template-columns: 1.2fr 1fr 1fr; }
.mega-menu--industries { grid-template-columns: .9fr 1.5fr; width: min(720px, calc(100vw - 48px)); }
.mega-menu__intro { padding: 22px; border-radius: 16px; background: linear-gradient(145deg, #eff9fb, #f8fbfc); border: 1px solid #dcecef; }
.mega-menu__intro h3 { margin-bottom: 10px; font-size: 1.25rem; }
.mega-menu__intro p { font-size: .9rem; margin-bottom: 16px; }
.mega-menu__intro .eyebrow { font-size: .67rem; margin-bottom: 10px; }
.mega-menu__group { display: flex; flex-direction: column; gap: 3px; }
.mega-menu__label { color: #85949a; font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; margin: 4px 0 8px; }
.mega-menu__label--spaced { margin-top: 15px; }
.mega-menu__group a, .mega-menu__grid-links a { padding: 7px 0; color: #3c4c52; font-weight: 700; font-size: .87rem; }
.mega-menu__group a:hover, .mega-menu__grid-links a:hover { color: var(--brand-dark); }
.mega-menu__grid-links { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; align-content: start; padding-top: 4px; }
.mega-menu__grid-links a { border-bottom: 1px solid #edf2f4; padding: 12px 4px; display: flex; justify-content: space-between; }
.dropdown-menu { min-width: 290px; padding: 10px; }
.dropdown-menu--right { left: auto; right: 0; transform: translate(0,8px); }
.nav-item.is-open > .dropdown-menu--right { transform: translate(0,0); }
.dropdown-menu a { display: block; padding: 11px 13px; border-radius: 11px; }
.dropdown-menu a:hover { background: var(--surface); }
.dropdown-menu a span, .dropdown-menu a small { display: block; }
.dropdown-menu a span { font-size: .88rem; font-weight: 800; }
.dropdown-menu a small { color: var(--muted); font-size: .76rem; margin-top: 2px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 10px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 100%; height: 2px; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu {
    display: none;
}


/* Hamburger */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1010;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}


    .menu-toggle:hover {
        border-color: #c8dade;
        background: var(--surface);
    }


    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background: var(--ink);
        transform-origin: center;
        transition: transform 220ms ease, opacity 180ms ease;
    }


    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }


    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


/* ---------------------------------------------------------
   Mobile Navigation Container
   --------------------------------------------------------- */

@media (max-width: 1180px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions__secondary {
        display: none;
    }


    /*
       IMPORTANT:
       Absolute positioning anchors the menu directly below
       the sticky header.

       Do NOT use position:fixed here.
    */
    .mobile-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100dvh - var(--header-h) - 37px);
        background: #ffffff;
        border-top: 1px solid #e4ecef;
        box-shadow: 0 22px 45px rgba(20, 40, 49, .12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 200ms ease, transform 220ms ease, visibility 200ms ease;
        z-index: 999;
    }


    /*
       Once the top information bar has scrolled away,
       the navigation can use the entire remaining viewport.
    */
    .site-header.is-scrolled .mobile-menu {
        height: calc(100dvh - var(--header-h));
    }


    .mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }


    .mobile-menu__scroll {
        height: 100%;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 16px max(18px, calc((100vw - var(--container)) / 2)) 32px;
        scrollbar-width: thin;
    }


    /* -----------------------------------------------
       Main navigation
       ----------------------------------------------- */

    .mobile-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
    }


    .mobile-nav__item {
        border-bottom: 1px solid #e9eff1;
    }


    /*
       Normal link and accordion button
    */
    .mobile-nav__link,
    .mobile-nav__toggle {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 4px;
        background: transparent;
        border: 0;
        color: var(--ink);
        text-align: left;
        font-size: .98rem;
        font-weight: 800;
        cursor: pointer;
    }


        .mobile-nav__toggle:hover,
        .mobile-nav__link:hover {
            color: var(--brand-dark);
        }


    /* -----------------------------------------------
       Chevron
       ----------------------------------------------- */

    .mobile-nav__chevron {
        width: 9px;
        height: 9px;
        flex: 0 0 9px;
        border-right: 2px solid #66777d;
        border-bottom: 2px solid #66777d;
        transform: rotate(45deg) translateY(-2px);
        transition: transform 200ms ease;
    }


    .mobile-nav__toggle[aria-expanded="true"]
    .mobile-nav__chevron {
        transform: rotate(225deg) translate(-2px, -2px);
    }


    .mobile-nav__arrow {
        color: var(--brand-dark);
        font-size: 1.15rem;
        transition: transform 180ms ease;
    }


    .mobile-nav__link:hover .mobile-nav__arrow {
        transform: translateX(4px);
    }


    /* -----------------------------------------------
       ONDC Highlight
       ----------------------------------------------- */

    .mobile-nav__link--ondc {
        margin: 10px 0;
        padding: 15px 16px;
        min-height: 70px;
        border-radius: 15px;
        border: 1px solid rgba(61, 178, 209, .22);
        background: linear-gradient( 135deg, rgba(61, 178, 209, .10), rgba(50, 159, 189, .035) );
        color: #174a59;
    }


        .mobile-nav__link--ondc small {
            display: block;
            margin-bottom: 1px;
            color: var(--brand-dark);
            font-size: .65rem;
            line-height: 1.3;
            letter-spacing: .1em;
            text-transform: uppercase;
            font-weight: 900;
        }


    /* -----------------------------------------------
       Accordion submenu
       ----------------------------------------------- */

    .mobile-nav__submenu {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 350ms ease, opacity 200ms ease;
    }


    .mobile-nav__toggle[aria-expanded="true"] + .mobile-nav__submenu {
        max-height: 900px;
        opacity: 1;
        padding-bottom: 12px;
    }


    /*
       Inner wrapper simulation:
       submenu links remain hidden until expanded.
    */
    .mobile-nav__submenu {
        overflow: hidden;
    }


        .mobile-nav__submenu a {
            display: block;
            margin-left: 10px;
            padding: 11px 12px;
            color: #53646b;
            border-left: 2px solid #e6eff1;
            font-size: .88rem;
            font-weight: 650;
            transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
        }


            .mobile-nav__submenu a:hover {
                color: var(--brand-dark);
                border-left-color: var(--brand);
                background: #f7fbfc;
            }


            .mobile-nav__submenu a strong {
                display: block;
                color: var(--ink);
                font-size: .9rem;
            }


            .mobile-nav__submenu a small {
                display: block;
                margin-top: 2px;
                color: #77868c;
                font-size: .75rem;
                font-weight: 500;
            }


    .mobile-nav__submenu-label {
        margin: 13px 0 3px 22px;
        color: #8b999e;
        font-size: .65rem;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
    }


    .mobile-nav__view-all {
        color: var(--brand-dark) !important;
        font-weight: 850 !important;
    }


        .mobile-nav__view-all span {
            margin-left: 5px;
        }


    /* -----------------------------------------------
       Bottom CTA area
       ----------------------------------------------- */

    .mobile-menu__actions {
        display: grid;
        gap: 12px;
        margin-top: 26px;
        padding-top: 22px;
        border-top: 1px solid #e6edef;
    }


    .mobile-menu__partner {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--brand-dark);
        font-size: .88rem;
        font-weight: 850;
    }
}


/* ---------------------------------------------------------
   Small Phones
   --------------------------------------------------------- */

@media (max-width: 720px) {

    .site-header__inner {
        gap: 10px;
    }


    .brand {
        width: 168px;
        flex-basis: 168px;
    }


    .button--header {
        display: none;
    }


    .mobile-menu__scroll {
        padding: 12px 16px 28px;
    }


    .mobile-nav__link,
    .mobile-nav__toggle {
        min-height: 56px;
        font-size: .95rem;
    }
}


/* Very small phones */
@media (max-width: 390px) {

    .brand {
        width: 152px;
        flex-basis: 152px;
    }


    .menu-toggle {
        width: 43px;
        height: 43px;
    }
}

/* Hero */
.home-hero { position: relative; overflow: hidden; background: #14252c; color: #fff; min-height: 720px; }
.home-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 78% 20%, rgba(61,178,209,.20), transparent 36%), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px); background-size: auto, 64px 64px, 64px 64px; }
.home-hero::after { content:""; position:absolute; width: 460px; height: 460px; border: 1px solid rgba(61,178,209,.12); border-radius: 50%; right: -90px; top: 90px; box-shadow: 0 0 0 90px rgba(61,178,209,.025), 0 0 0 180px rgba(61,178,209,.018); }
.home-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; min-height: 720px; padding: 78px 0 92px; }
.home-hero__copy { max-width: 700px; }
.home-hero h1 { margin-bottom: 26px; font-size: clamp(3.2rem, 5.3vw, 5.85rem); letter-spacing: -.055em; }
.home-hero h1 .accent { color: #6fd1e5; }
.home-hero__copy > p { max-width: 690px; font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: #c4d2d6; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 34px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; font-size: .83rem; font-weight: 700; color: #d8e4e7; }
.hero-proof span::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(61,178,209,.12); }
.home-hero__visual { position: relative; }
.home-hero__visual img { width: 100%; filter: drop-shadow(0 35px 60px rgba(0,0,0,.2)); }
.hero-floating-card { position: absolute; background: rgba(255,255,255,.95); color: var(--ink); border-radius: 16px; padding: 13px 16px; box-shadow: var(--shadow-lg); backdrop-filter: blur(12px); }
.hero-floating-card strong, .hero-floating-card span { display: block; }
.hero-floating-card strong { font-size: .86rem; }
.hero-floating-card span { color: var(--muted); font-size: .72rem; margin-top: 2px; }
.hero-floating-card--one { left: -12px; top: 55%; }
.hero-floating-card--two { right: -8px; top: 13%; }

.metrics-strip { position: relative; z-index: 5; margin-top: -48px; }
.metrics-strip__panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; }
.metric { padding: 27px 28px; position: relative; }
.metric:not(:last-child)::after { content:""; position:absolute; right:0; top:24px; bottom:24px; width:1px; background: var(--line); }
.metric strong { display: block; color: var(--ink); font-size: clamp(1.7rem,3vw,2.6rem); line-height: 1; letter-spacing: -.045em; }
.metric span { display: block; color: var(--muted); font-size: .82rem; margin-top: 8px; }
.metric--statement strong { font-size: 1.05rem; line-height: 1.25; color: var(--brand-dark); }
.metric--statement span { margin-top: 6px; }

.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 28px 0 0; }
.trust-row__copy { max-width: 390px; color: #6d7d83; font-size: .9rem; }
.trust-pills { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.trust-pill { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: .78rem; font-weight: 800; color: #506168; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.solution-card { position: relative; min-height: 305px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.solution-card::before { content:""; position:absolute; width:140px; height:140px; border-radius:50%; background:rgba(61,178,209,.08); right:-60px; top:-65px; transition: transform 300ms ease; }
.solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c9e7ed; }
.solution-card:hover::before { transform: scale(1.3); }
.card-icon, .capability-card__icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: #eaf8fb; border: 1px solid #d5edf2; margin-bottom: 24px; }
.card-icon img, .capability-card__icon img { width: 24px; height: 24px; }
.solution-card h3 { margin-bottom: 12px; }
.solution-card p { margin-bottom: 20px; font-size: .93rem; }
.solution-card__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.solution-card__tag { font-size: .7rem; color: #718188; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.solution-card__arrow { width: 34px; height: 34px; display: grid; place-items:center; border-radius:50%; border:1px solid var(--line); transition: background var(--transition), color var(--transition); }
.solution-card:hover .solution-card__arrow { background: var(--brand); color: #fff; border-color: var(--brand); }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.capability-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.capability-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.capability-card p { font-size: .9rem; margin-bottom: 0; }

/* Connected logistics */
.connected { position: relative; overflow: hidden; background: #15262d; color: #fff; }
.connected::before { content:""; position:absolute; width:540px; height:540px; border-radius:50%; background:radial-gradient(circle, rgba(61,178,209,.16), transparent 68%); right:-130px; top:-160px; }
.connected__grid { position: relative; display:grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items:center; }
.connected__copy h2 { margin-bottom: 18px; }
.connected__copy p { color: #b9c9ce; font-size: 1.06rem; }
.connected__badges { display:flex; flex-wrap:wrap; gap:10px; margin: 24px 0 30px; }
.connected__badges span { padding:8px 12px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.04); border-radius:999px; font-size:.76rem; font-weight:800; color:#dce8eb; }
.connection-map { position:relative; min-height: 470px; }
.connection-map__core { position:absolute; left:50%; top:50%; width:158px; height:158px; margin:-79px; border-radius:50%; background:linear-gradient(135deg,var(--brand),var(--brand-deep)); display:grid; place-items:center; text-align:center; color:#fff; font-weight:900; box-shadow:0 0 0 18px rgba(61,178,209,.06),0 30px 60px rgba(0,0,0,.22); z-index:2; }
.connection-map__core img { width:54px; margin:0 auto 7px; filter:brightness(0) invert(1); opacity:.95; }
.connection-node { position:absolute; min-width:150px; padding:15px 17px; border-radius:15px; background:#fff; color:var(--ink); box-shadow:var(--shadow-lg); border:1px solid #e4ecee; }
.connection-node strong,.connection-node span {display:block}.connection-node strong{font-size:.9rem}.connection-node span{font-size:.74rem;color:var(--muted);margin-top:3px}
.connection-node--ondc{top:38px;left:44px}.connection-node--api{top:54px;right:15px}.connection-node--riders{bottom:55px;left:15px}.connection-node--fleet{bottom:34px;right:58px}
.connection-line { position:absolute; left:50%; top:50%; width:215px; height:1px; border-top:2px dashed rgba(103,205,226,.35); transform-origin:left center; }
.connection-line--1{transform:rotate(-140deg)}.connection-line--2{transform:rotate(-42deg)}.connection-line--3{transform:rotate(142deg)}.connection-line--4{transform:rotate(38deg)}

/* Industry */
.industry-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.industry-card { position:relative; min-height:210px; padding:24px; border-radius:18px; overflow:hidden; border:1px solid var(--line); background:linear-gradient(145deg,#fff,#f8fbfc); }
.industry-card::after { content:""; position:absolute; width:110px; height:110px; border-radius:50%; background:rgba(61,178,209,.08); right:-35px; bottom:-45px; }
.industry-card .number { color:#a8bbc1; font-size:.75rem; font-weight:900; letter-spacing:.1em; }
.industry-card h3 { margin:34px 0 9px; font-size:1.18rem; }
.industry-card p { font-size:.84rem; margin-bottom:0; }
.industry-card:hover { border-color:#bde4eb; }

/* Technology */
.tech-pipeline { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.tech-stage { padding:31px; border:1px solid var(--line); border-radius:22px; background:#fff; position:relative; overflow:hidden; }
.tech-stage__number { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background:#eaf8fb; color:var(--brand-dark); font-weight:900; margin-bottom:36px; }
.tech-stage h3 { font-size:1.42rem; margin-bottom:10px; }
.tech-stage > p { font-size:.92rem; }
.tech-stage ul { list-style:none; padding:0; margin:20px 0 0; display:grid; gap:9px; }
.tech-stage li { display:flex; align-items:center; gap:9px; font-size:.85rem; color:#4c5d64; }
.tech-stage li::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--brand); box-shadow:0 0 0 4px rgba(61,178,209,.10); }

/* Process */
.process-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:8px; position:relative; }
.process-grid::before { content:""; position:absolute; left:8%; right:8%; top:31px; height:1px; background:linear-gradient(90deg,var(--brand),#d6e5e8); }
.process-step { position:relative; z-index:1; }
.process-step__number { width:62px; height:62px; border-radius:50%; display:grid; place-items:center; background:#fff; border:1px solid var(--line); color:var(--brand-dark); font-weight:900; box-shadow:var(--shadow-sm); margin-bottom:20px; }
.process-step h3 { font-size:.98rem; margin-bottom:8px; }
.process-step p { font-size:.8rem; margin-bottom:0; }

/* Why */
.value-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.value-card { padding:28px; border-radius:20px; background:#f7fafb; border:1px solid #e3ebed; }
.value-card__num { color:var(--brand-dark); font-size:.72rem; font-weight:900; letter-spacing:.12em; }
.value-card h3 { margin:34px 0 10px; }
.value-card p { margin-bottom:0; font-size:.9rem; }

/* Case study placeholder */
.case-feature { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-radius:26px; overflow:hidden; background:#fff; box-shadow:var(--shadow-sm); }
.case-feature__visual { min-height:420px; background:#172a31; position:relative; overflow:hidden; padding:42px; color:#fff; }
.case-feature__visual::before { content:""; position:absolute; width:380px; height:380px; border:1px solid rgba(61,178,209,.24); border-radius:50%; right:-100px; bottom:-120px; box-shadow:0 0 0 70px rgba(61,178,209,.03),0 0 0 140px rgba(61,178,209,.02); }
.case-feature__metric { position:absolute; bottom:40px; left:42px; right:42px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.case-feature__metric div { padding:15px; border-radius:13px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); }
.case-feature__metric strong { display:block; color:#7ad5e7; font-size:1.3rem; }
.case-feature__metric span { color:#c4d2d6; font-size:.7rem; }
.case-feature__content { padding:50px; align-self:center; }
.case-feature__content h3 { font-size:clamp(1.8rem,3vw,2.8rem); margin-bottom:18px; }
.case-feature__content p { font-size:1rem; }
.case-note { margin-top:20px; padding:13px 15px; background:#fff7e6; border:1px solid #f3dfb7; border-radius:12px; color:#725c2a; font-size:.82rem; }

.client-logo-grid { display:grid;grid-template-columns:repeat(5,1fr);gap:12px; }
.client-logo-placeholder { min-height:86px;display:grid;place-items:center;padding:16px;border:1px solid var(--line);border-radius:14px;background:#fff;color:#53646b;font-weight:850;text-align:center; }

/* Coverage */
.coverage-panel { display:grid; grid-template-columns:.95fr 1.05fr; gap:50px; align-items:center; }
.coverage-map { min-height:430px; border-radius:26px; background:linear-gradient(145deg,#eaf7fa,#f8fbfc); border:1px solid #dbecef; position:relative; overflow:hidden; display:grid; place-items:center; }
.coverage-map::before { content:""; width:270px; height:330px; background:rgba(61,178,209,.16); clip-path:polygon(54% 1%,69% 11%,72% 25%,85% 34%,92% 49%,84% 61%,78% 77%,62% 85%,56% 99%,47% 90%,38% 75%,22% 71%,12% 58%,7% 41%,17% 27%,29% 18%,37% 5%); transform:rotate(4deg); }
.coverage-map__pin { position:absolute; width:14px;height:14px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 7px rgba(61,178,209,.13); }
.coverage-map__pin--1{left:43%;top:39%}.coverage-map__pin--2{left:49%;top:55%}.coverage-map__pin--3{left:56%;top:67%}.coverage-map__pin--4{left:61%;top:44%}
.coverage-copy ul { list-style:none; padding:0; margin:25px 0 30px; display:grid; grid-template-columns:1fr 1fr; gap:11px 18px; }
.coverage-copy li { display:flex; gap:9px; align-items:center; font-size:.9rem; font-weight:700; color:#44555c; }
.coverage-copy li::before { content:"✓"; width:22px;height:22px;border-radius:50%;display:grid;place-items:center;background:#eaf8fb;color:var(--brand-dark);font-size:.72rem; }

/* FAQ */
.faq-list { display:grid; gap:10px; max-width:900px; margin-inline:auto; }
.faq-item { border:1px solid var(--line); border-radius:16px; background:#fff; overflow:hidden; }
.faq-item button { width:100%; padding:21px 23px; background:#fff; border:0; display:flex; justify-content:space-between; gap:25px; text-align:left; font-weight:800; cursor:pointer; }
.faq-item button span:last-child { width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:var(--surface);flex:0 0 auto;transition:transform var(--transition); }
.faq-item button[aria-expanded="true"] span:last-child { transform:rotate(45deg); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows 220ms ease; }
.faq-answer > div { overflow:hidden; }
.faq-answer p { padding:0 23px 21px; margin:0; }
.faq-item.is-open .faq-answer { grid-template-rows:1fr; }

.faq-group-header:not(:first-child) { margin-top: 62px; }

/* Page hero */
.page-hero { position:relative; overflow:hidden; background:#16282f; color:#fff; }
.page-hero__grid { position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);background-size:58px 58px; mask-image:linear-gradient(to right,#000 20%,transparent 85%); }
.page-hero__inner { min-height:535px; padding:85px 0; display:grid; grid-template-columns:1.08fr .72fr; gap:80px; align-items:center; position:relative; z-index:1; }
.page-hero__content { max-width:780px; }
.page-hero h1 { font-size:clamp(2.8rem,5vw,5rem); margin-bottom:22px; letter-spacing:-.05em; }
.page-hero__content > p { color:#c0d0d4; font-size:1.12rem; max-width:690px; margin-bottom:28px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:7px; align-items:center; margin-bottom:30px; color:#91aab1; font-size:.77rem; }
.breadcrumbs a:hover { color:#fff; }
.page-hero__visual { min-height:330px; position:relative; display:grid; place-items:center; }
.page-hero__visual > img { width:190px; filter:drop-shadow(0 20px 40px rgba(0,0,0,.25)); }
.page-hero__orb { position:absolute; border-radius:50%; }
.page-hero__orb--1 { width:310px;height:310px;background:rgba(61,178,209,.07);border:1px solid rgba(61,178,209,.15); }
.page-hero__orb--2 { width:420px;height:420px;border:1px dashed rgba(255,255,255,.10); }
.visual-node { position:absolute; padding:9px 13px;background:#fff;color:var(--ink);border-radius:999px;font-size:.75rem;font-weight:900;box-shadow:var(--shadow-lg); }
.visual-node--one{left:8%;top:20%}.visual-node--two{right:4%;bottom:18%}.visual-node--three{right:8%;top:22%}

/* Content pages */
.intro-split { display:grid;grid-template-columns:.82fr 1.18fr;gap:70px;align-items:start; }
.intro-split__aside { position:sticky;top:140px; }
.intro-split__aside h2 { font-size:2rem; }
.intro-split__main > p:first-child { font-size:1.22rem; color:#405159; }
.challenge-list { display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:28px; }
.challenge-list div { padding:15px 17px;border:1px solid var(--line);border-radius:13px;background:#fff;font-weight:700;font-size:.88rem;display:flex;align-items:center;gap:10px; }
.challenge-list div::before { content:"";width:8px;height:8px;border-radius:50%;background:var(--brand);flex:0 0 auto; }
.process-list { counter-reset:step; display:grid;grid-template-columns:repeat(3,1fr);gap:14px; }
.process-list__item { counter-increment:step;padding:24px;border:1px solid var(--line);border-radius:16px;background:#fff; }
.process-list__item::before { content:"0" counter(step);display:block;color:var(--brand-dark);font-size:.75rem;font-weight:900;letter-spacing:.1em;margin-bottom:26px; }
.process-list__item h3 { font-size:1rem;margin-bottom:0; }
.pill-row { display:flex;flex-wrap:wrap;gap:9px; }
.pill { padding:9px 12px;border-radius:999px;border:1px solid var(--line);background:#fff;font-size:.78rem;font-weight:800;color:#4d5e65; }
.cta-panel { padding:48px;border-radius:26px;background:linear-gradient(135deg,#eff9fb,#f8fbfc);border:1px solid #d4e9ee;display:grid;grid-template-columns:1fr auto;align-items:center;gap:40px; }
.cta-panel h2 { font-size:clamp(1.8rem,3vw,2.8rem);margin-bottom:12px}.cta-panel p{margin-bottom:0;max-width:720px}

/* Technology page */
.architecture { display:grid;grid-template-columns:repeat(5,1fr);align-items:center;gap:8px; }
.architecture__node { min-height:140px;padding:19px;border-radius:18px;background:#fff;border:1px solid var(--line);display:flex;flex-direction:column;justify-content:center;text-align:center; }
.architecture__node--core { background:#172a31;color:#fff;border-color:#172a31;box-shadow:var(--shadow-lg); }
.architecture__node--core p{color:#b8c9ce}.architecture__node h3{font-size:1rem;margin-bottom:8px}.architecture__node p{font-size:.77rem;margin:0}
.architecture__arrow { text-align:center;color:var(--brand-dark);font-size:1.3rem;font-weight:900; }
.integration-lanes { display:grid;grid-template-columns:1fr 1fr;gap:18px; }
.integration-lane { padding:31px;border:1px solid var(--line);border-radius:22px;background:#fff; }
.integration-lane__label { color:var(--brand-dark);font-weight:900;text-transform:uppercase;letter-spacing:.1em;font-size:.72rem; }
.integration-lane h3 { margin:20px 0 12px;font-size:1.45rem}.integration-lane p{font-size:.92rem}.integration-lane .flow{margin-top:22px;padding:16px;border-radius:13px;background:var(--surface);font-size:.82rem;font-weight:800;color:#43545b;}

/* ONDC */
.ondc-statement { display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center; }
.ondc-card { padding:36px;border-radius:26px;background:#172a31;color:#fff;position:relative;overflow:hidden;min-height:360px; }
.ondc-card::before { content:"ONDC";position:absolute;right:-25px;bottom:-30px;font-size:7rem;font-weight:950;letter-spacing:-.07em;color:rgba(255,255,255,.04); }
.ondc-card__badge { display:inline-flex;padding:8px 11px;border-radius:999px;background:rgba(61,178,209,.13);border:1px solid rgba(61,178,209,.25);color:#7fd9e9;font-weight:900;font-size:.72rem;letter-spacing:.08em;text-transform:uppercase; }
.ondc-card h3 { font-size:2rem;margin:48px 0 14px;max-width:480px}.ondc-card p{color:#b8c9ce;max-width:480px}

/* Forms */
.form-shell { display:grid;grid-template-columns:.72fr 1.28fr;gap:54px;align-items:start; }
.form-aside { position:sticky;top:130px;padding:31px;border-radius:22px;background:#172a31;color:#fff; }
.form-aside h2 { font-size:1.8rem;margin-bottom:14px}.form-aside p{color:#bdccd0}.form-aside ul{list-style:none;padding:0;margin:26px 0 0;display:grid;gap:11px}.form-aside li{display:flex;gap:10px;font-size:.86rem;color:#d7e2e5}.form-aside li::before{content:"✓";color:#6fd1e5;font-weight:900}
.form-card { border:1px solid var(--line);border-radius:24px;background:#fff;padding:36px;box-shadow:var(--shadow-sm); }
.form-grid { display:grid;grid-template-columns:1fr 1fr;gap:18px; }
.form-field { display:flex;flex-direction:column;gap:7px; }
.form-field--full { grid-column:1/-1; }
.form-field label { font-size:.8rem;font-weight:850;color:#34464d; }
.form-field input,.form-field select,.form-field textarea { width:100%;border:1px solid #cad8dc;border-radius:12px;padding:12px 14px;color:var(--ink);background:#fff;outline:none;transition:border-color var(--transition),box-shadow var(--transition); }
.form-field input,.form-field select{height:48px}.form-field textarea{min-height:132px;resize:vertical}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--brand);box-shadow:0 0 0 4px rgba(61,178,209,.12)}
.form-field .field-validation-error { color:var(--danger);font-size:.75rem;font-weight:700; }
.input-validation-error { border-color:#d96d6d!important;background:#fffafa!important; }
.form-alert { padding:14px 16px;border-radius:12px;background:#fff3f3;border:1px solid #f0caca;color:#813737;margin-bottom:18px;font-size:.84rem; }
.form-alert ul { margin:8px 0 0;padding-left:20px; }
.form-note { color:#7a898f;font-size:.77rem;margin:16px 0 0; }
.honeypot { position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important; }
.dynamic-fields { display:none; grid-column:1/-1; grid-template-columns:1fr 1fr;gap:18px;padding:18px;border-radius:15px;background:var(--surface);border:1px solid var(--line); }
.dynamic-fields.is-visible { display:grid; }

/* Partner / careers */
.journey-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:16px; }
.journey-card { min-height:280px;padding:27px;border:1px solid var(--line);border-radius:21px;background:#fff;display:flex;flex-direction:column; }
.journey-card__icon { width:54px;height:54px;border-radius:15px;background:#eaf8fb;display:grid;place-items:center;margin-bottom:44px; }.journey-card__icon img{width:27px}.journey-card h3{margin-bottom:10px}.journey-card p{font-size:.88rem;flex:1}.journey-card .text-link{font-size:.84rem}

/* Footer */
.site-footer { background:#111f25;color:#fff; }
.site-footer__cta { background:linear-gradient(135deg,#2d9db9,#3db2d1); }
.footer-cta { padding:58px 0;display:grid;grid-template-columns:1fr auto;gap:45px;align-items:center; }
.footer-cta h2 { font-size:clamp(2rem,4vw,3.7rem);margin-bottom:12px}.footer-cta p{color:#e7f7fa;margin-bottom:0;max-width:720px}.footer-cta__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.site-footer__main { padding:68px 0 50px;display:grid;grid-template-columns:1.6fr repeat(4,1fr);gap:38px; }
.footer-brand__mark { display:flex;align-items:center;gap:13px;margin-bottom:22px}.footer-brand__mark img{width:56px}.footer-brand__mark strong,.footer-brand__mark span{display:block}.footer-brand__mark strong{font-size:1.08rem}.footer-brand__mark span{font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:#8aa0a7;margin-top:2px}
.footer-brand > p { color:#8fa4aa;font-size:.86rem;max-width:340px; }
.footer-badges { display:flex;flex-wrap:wrap;gap:7px;margin-top:20px}.footer-badges span{padding:6px 9px;border-radius:999px;border:1px solid rgba(255,255,255,.10);color:#9fb0b5;font-size:.67rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.footer-column { display:flex;flex-direction:column;gap:9px}.footer-column h3{font-size:.83rem;text-transform:uppercase;letter-spacing:.09em;color:#d7e3e6;margin-bottom:8px}.footer-column a,.footer-column span{font-size:.82rem;color:#8fa4aa}.footer-column a:hover{color:#fff}.text-link--footer{color:#6fd1e5!important;margin-top:8px}
.site-footer__bottom { border-top:1px solid rgba(255,255,255,.08);padding:23px 0 28px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:#72898f;font-size:.76rem}.site-footer__bottom div{display:flex;gap:18px}.site-footer__bottom a:hover{color:#fff}
.floating-contact { position:fixed;right:22px;bottom:22px;z-index:900;display:flex;align-items:center;gap:9px;padding:11px 16px;border-radius:999px;background:#1b8e66;color:#fff;font-weight:850;font-size:.82rem;box-shadow:0 16px 35px rgba(18,70,54,.25); }.floating-contact__pulse{width:9px;height:9px;border-radius:50%;background:#fff;box-shadow:0 0 0 5px rgba(255,255,255,.12)}
.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-powered-by {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.52);
}

    .footer-powered-by a {
        color: rgba(255, 255, 255, 0.72);
        font-weight: 700;
        text-decoration: none;
        transition: color 180ms ease;
    }

        .footer-powered-by a:hover {
            color: var(--brand);
        }
/* Legal / utility */
.prose { max-width:860px;margin-inline:auto; }.prose h2{font-size:1.8rem;margin-top:42px}.prose h3{font-size:1.2rem;margin-top:28px}.prose p,.prose li{color:#56676e}.prose ul{padding-left:20px}.prose .callout{padding:18px 20px;border-radius:14px;background:var(--surface);border:1px solid var(--line);margin:24px 0}
.not-found { min-height:65vh;display:grid;place-items:center;text-align:center;padding:90px 20px}.not-found__code{font-size:7rem;font-weight:950;color:#d9edf1;line-height:1}.not-found h1{font-size:2.5rem;margin:12px 0}.not-found p{max-width:550px;margin-inline:auto}.not-found .hero-actions{justify-content:center}
.sitemap-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.sitemap-group{padding:23px;border:1px solid var(--line);border-radius:17px}.sitemap-group h2{font-size:1.15rem}.sitemap-group a{display:block;padding:6px 0;color:#526269;font-size:.88rem}.sitemap-group a:hover{color:var(--brand-dark)}

/* Reveal */
[data-reveal] { opacity:0;transform:translateY(18px);transition:opacity 550ms ease,transform 550ms ease; }
[data-reveal].is-visible { opacity:1;transform:none; }

@media (max-width: 1180px) {
    .desktop-nav { display:none; }
    .menu-toggle { display:flex; }
    .header-actions__secondary { display:none; }
    .brand { width:205px;flex-basis:205px; }
    .header-actions { margin-left:auto; }
    .site-footer__main { grid-template-columns:1.4fr repeat(2,1fr); }
    .footer-brand { grid-row:span 2; }
    .desktop-nav a[href="/ondc-logistics"] {
        color: var(--brand-dark);
        font-weight: 850;
        padding: 10px 12px;
        border-radius: 10px;
        transition: background 180ms ease, color 180ms ease;
    }

        .desktop-nav a[href="/ondc-logistics"]:hover {
            background: rgba(61, 178, 209, .10);
            color: var(--brand);
        }
}

@media (max-width: 980px) {
    :root { --header-h: 76px; }
    .section { padding:82px 0; }
    .home-hero__inner,.page-hero__inner,.connected__grid,.coverage-panel,.ondc-statement,.form-shell,.intro-split { grid-template-columns:1fr; }
    .home-hero__inner { padding-top:65px;min-height:auto; }
    .home-hero__visual { max-width:690px;margin-inline:auto; }
    .home-hero { min-height:auto; }
    .metrics-strip { margin-top:-30px; }
    .metrics-strip__panel { grid-template-columns:1fr 1fr; }
    .metric:nth-child(2)::after { display:none; }
    .cards-grid { grid-template-columns:1fr 1fr; }
    .capability-grid,.industry-grid { grid-template-columns:1fr 1fr; }
    .tech-pipeline { grid-template-columns:1fr; }
    .process-grid { grid-template-columns:repeat(3,1fr);gap:24px 12px; }
    .process-grid::before { display:none; }
    .value-grid { grid-template-columns:1fr 1fr; }
    .case-feature { grid-template-columns:1fr; }
    .case-feature__visual { min-height:330px; }
    .page-hero__inner { min-height:auto;gap:24px;padding:70px 0; }
    .page-hero__visual { min-height:280px; }
    .intro-split__aside,.form-aside { position:static; }
    .architecture { grid-template-columns:1fr; }
    .architecture__arrow { transform:rotate(90deg); }
    .journey-grid { grid-template-columns:1fr 1fr; }
    .footer-cta { grid-template-columns:1fr; }
    .footer-cta__actions { justify-content:flex-start; }
    .sitemap-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 720px) {
    .container { width:min(100% - 28px,var(--container)); }
    .section { padding:68px 0; }
    .topbar__optional,.topbar__divider--optional,.topbar__link { display:none; }
    .topbar__inner { justify-content:center; }
    .site-header__inner { gap:12px; }
    .brand { width:170px;flex-basis:170px; }
    .button--header { display:none; }
    .home-hero h1 { font-size:clamp(2.8rem,13vw,4.5rem); }
    .home-hero__inner { padding:55px 0 70px; }
    .home-hero__copy > p { font-size:1rem; }
    .hero-actions { flex-direction:column;align-items:stretch; }
    .hero-actions .button { width:100%; }
    .hero-floating-card { display:none; }
    .metrics-strip__panel { grid-template-columns:1fr 1fr; }
    .metric { padding:22px 18px; }
    .metric::after { display:none!important; }
    .trust-row { flex-direction:column;align-items:flex-start; }
    .trust-pills { justify-content:flex-start; }
    .section-header--split { grid-template-columns:1fr;gap:10px; }
    .cards-grid,.capability-grid,.industry-grid,.value-grid,.integration-lanes,.journey-grid,.client-logo-grid { grid-template-columns:1fr; }
    .solution-card { min-height:270px; }
    .connection-map { min-height:430px;transform:scale(.9);margin-inline:-20px; }
    .process-grid { grid-template-columns:1fr 1fr; }
    .case-feature__content { padding:30px; }
    .case-feature__metric { grid-template-columns:1fr; position:relative;left:auto;right:auto;bottom:auto;margin-top:130px; }
    .coverage-copy ul,.challenge-list,.process-list,.form-grid { grid-template-columns:1fr; }
    .dynamic-fields { grid-template-columns:1fr; }
    .form-field--full { grid-column:auto; }
    .form-card { padding:24px 19px; }
    .cta-panel { grid-template-columns:1fr;padding:31px 24px; }
    .page-hero__visual { display:none; }
    .page-hero__inner { padding:60px 0; }
    .page-hero h1 { font-size:clamp(2.6rem,11vw,4rem); }
    .site-footer__main { grid-template-columns:1fr 1fr; }
    .footer-brand { grid-column:1/-1;grid-row:auto; }
    .site-footer__bottom { flex-direction:column;align-items:flex-start; }
    .sitemap-grid { grid-template-columns:1fr; }
}

@media (max-width: 480px) {
    .brand { width:150px;flex-basis:150px; }
    .metrics-strip__panel { grid-template-columns:1fr; }
    .process-grid { grid-template-columns:1fr; }
    .site-footer__main { grid-template-columns:1fr; }
    .footer-brand { grid-column:auto; }
    .floating-contact span:last-child { display:none; }
    .floating-contact { width:48px;height:48px;padding:0;justify-content:center; }
    .connection-node { min-width:125px;padding:12px; }
    .connection-node--ondc{left:0}.connection-node--api{right:0}.connection-node--riders{left:0}.connection-node--fleet{right:0}
}

@media (prefers-reduced-motion: reduce) {
    *,*::before,*::after { scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important; }
    [data-reveal] { opacity:1;transform:none; }
}
