/* ==========================================================================
   SISGAIN — EV Software Development Company Dubai — page.css
   Scoped, section-based styles. No body/html/:root selectors, no CSS vars.
   Palette: Black #050914/#0A0F2C, Blue #2B62F0/#4C8DFF, Sky #63D2FF, White #FFFFFF
   ========================================================================== */

/* ---------- shared utility: 5-up grid column (Bootstrap 4 has no col-*-2.4) --- */
.col-lg-2dot4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width:992px) {
    .col-lg-2dot4 {
        flex: 0 0 20%;
        max-width: 20%
    }
}

/* ---------- shared icon utility ---------- */
.ev-icon-inline {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0
}

/* ---------- shared CTA button system ---------- */
.ev-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.2;
    text-decoration: none;
    white-space: normal;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.ev-btn:hover,
.ev-btn:focus-visible {
    transform: translateY(-3px)
}

.ev-btn:focus-visible {
    outline: 3px solid #63D2FF;
    outline-offset: 3px
}

.ev-btn svg {
    flex-shrink: 0
}

.ev-btn--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #4C8DFF 0%, #2B62F0 55%, #63D2FF 100%);
    background-size: 160% 160%;
    box-shadow: 0 14px 30px -10px rgba(43, 98, 240, .65), 0 2px 8px rgba(5, 9, 20, .25);
}

.ev-btn--primary:hover,
.ev-btn--primary:focus-visible {
    background-position: 100% 0;
    box-shadow: 0 18px 36px -8px rgba(43, 98, 240, .8), 0 4px 12px rgba(5, 9, 20, .3);
    color: #ffffff;
}

.ev-btn--secondary {
    color: #0A0F2C;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(43, 98, 240, .35);
    box-shadow: 0 10px 24px -12px rgba(10, 15, 44, .35);
}

.ev-btn--secondary:hover,
.ev-btn--secondary:focus-visible {
    background: #ffffff;
    border-color: #2B62F0;
    color: #2B62F0;
}

.ev-btn--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 12px 24px;
    font-size: 14px;
}

.ev-btn--ghost:hover,
.ev-btn--ghost:focus-visible {
    background: rgba(255, 255, 255, .14);
    color: #63D2FF;
    border-color: #63D2FF;
}

/* ---------- scroll-reveal: any section whose class ends in "-section" ---------- */
section[class$="-section"]>.container,
section[class$="-section"]>.integrations-marquee {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
}

section[class$="-section"].is-inview>.container,
section[class$="-section"].is-inview>.integrations-marquee {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- shared keyframes ---------- */
@keyframes evFloatY {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-18px) rotate(4deg)
    }
}

@keyframes evFloatY2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(16px) rotate(-3deg)
    }
}

@keyframes evPulseGlow {

    0%,
    100% {
        opacity: .55;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.12)
    }
}

@keyframes evSpinSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes evSpinSlowRev {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0deg)
    }
}

@keyframes evGradientMove {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

@keyframes evDashMove {
    to {
        stroke-dashoffset: -40
    }
}

@keyframes evMarquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes evTrackDot {
    0% {
        left: 0;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

@keyframes evShimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    min-height: 760px;
    display: flex;
    align-items: center;
    background: #050914;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0A1428;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-glow-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease
}

.hero-section:hover .hero-glow-layer {
    opacity: 1
}

.hero-section>.container {
    position: relative;
    z-index: 2
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(76, 141, 255, .12);
    border: 1px solid rgba(99, 210, 255, .4);
    color: #9FC3FF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.85rem, 3.1vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #FFFFFF;
    max-width: 640px;
}

.hero-title-accent {
    background: linear-gradient(100deg, #4C8DFF, #63D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tagline {
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    font-weight: 700;
    margin: 0 0 18px;
    color: #5FA6FF;
}

.hero-subtitle {
    color: #C4D0F0;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 560px
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px
}

.hero-trust-grid {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 600px;
}

.hero-trust-grid li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.hero-trust-grid li:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 210, 255, .5);
    background: rgba(255, 255, 255, .08)
}

.hero-trust-grid svg {
    color: #63D2FF
}

.hero-trust-grid span {
    color: #EAF0FF;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.35
}

.hero-bottom-stats {
    list-style: none;
    margin: 0;
    padding: 14px 20px;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 26px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
}

.hero-bottom-stats li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #DCE5FF;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap
}

.hero-bottom-stats svg {
    color: #63D2FF;
    flex-shrink: 0
}

.hero-bottom-stats strong {
    color: #fff;
    font-weight: 800
}

/* ---------- floating dashboard widgets ---------- */
.hero-widgets {
    position: relative;
    height: 100%;
    min-height: 740px;
    max-width: 460px;
    margin: 36px auto 0
}

.hero-widget {
    position: absolute;
    z-index: 2;
    width: 172px;
    padding: 16px 16px 18px;
    border-radius: 18px;
    background: rgba(11, 18, 48, .72);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
    animation: evFloatY 8s ease-in-out infinite;
}

.hero-widget-head {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #9FADD6;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase
}

.hero-widget-head svg {
    color: #63D2FF;
    flex-shrink: 0
}

.hero-widget-big {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px
}

.hero-widget-big--green {
    color: #3FCB8E
}

.hero-widget-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #AEBBE0;
    font-size: 11.5px;
    font-weight: 600;
    margin-bottom: 4px
}

.hero-widget-row b {
    color: #fff;
    font-weight: 800
}

.hero-widget-accent-green {
    color: #3FCB8E !important
}

.hero-widget-battery-bar {
    display: block;
    margin-top: 10px
}

.hero-widget-map {
    display: block;
    margin-top: 8px
}

.hero-widget-donut-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px
}

.hero-widget-legend {
    list-style: none;
    margin: 0;
    padding: 0
}

.hero-widget-legend li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #DCE5FF;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.9
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.hero-dot--green {
    background: #3FCB8E
}

.hero-dot--blue {
    background: #4C8DFF
}

.hero-dot--red {
    background: #FF6B6B
}

.hero-widget-sparkline {
    display: block;
    margin-top: 6px
}

.hero-widget--battery {
    top: 0;
    right: 30%;
    animation-duration: 7.5s
}

.hero-widget--charging {
    top: 24%;
    right: 0;
    animation-duration: 9s;
    animation-name: evFloatY2
}

.hero-widget--fleet {
    top: 55%;
    right: 32%;
    animation-duration: 8.5s
}

.hero-widget--ai {
    top: 82%;
    right: 2%;
    width: 150px;
    animation-duration: 7s;
    animation-name: evFloatY2
}

@media (max-width:991.98px) {
    .hero-section {
        min-height: 0;
        padding: 60px 0 30px
    }

    .hero-widgets {
        height: auto;
        max-width: 560px;
        margin-top: 36px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero-widget {
        position: static;
        width: auto;
        animation: none
    }
}

@media (max-width:575.98px) {
    .hero-trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-bottom-stats {
        border-radius: 20px;
        justify-content: flex-start
    }

    .hero-widgets {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:400px) {
    .hero-widgets {
        grid-template-columns: 1fr
    }
}

/* ==========================================================================
   ABOUT / ECOSYSTEM
   ========================================================================== */
.about-section {
    padding: 30px 0;
    background: #FFFFFF
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.about-eyebrow svg {
    color: #2B62F0
}

.about-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px
}

.about-copy--label {
    font-weight: 700;
    color: #0A0F2C;
    margin-bottom: 12px
}

.about-check-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1B2444;
    font-weight: 600;
    font-size: 14.5px
}

.about-tag-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.about-tag-list li {
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #2B62F0;
    background: linear-gradient(180deg, #F0F5FF, #E4ECFF);
    border: 1px solid rgba(43, 98, 240, .2);
}

.about-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 10px
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px
}

@media (max-width:991.98px) {
    .about-check-list {
        grid-template-columns: 1fr
    }

    .about-visual {
        margin-top: 30px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto
    }
}

/* ==========================================================================
   SERVICES — tabs
   ========================================================================== */
.services-section {
    padding: 30px 0;
    background: #F6F8FE
}

.services-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.services-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.services-tabs {
    display: flex;
    gap: 26px;
    align-items: flex-start
}

.services-tablist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 320px;
    max-width: 320px;
    position: sticky;
    top: 20px;
}

.services-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: transparent;
    color: #425079;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.services-tab svg {
    color: #8093C4;
    flex-shrink: 0;
    transition: color .25s ease
}

.services-tab:hover {
    background: #FFFFFF;
    transform: translateX(4px)
}

.services-tab.is-active {
    background: #FFFFFF;
    border-color: rgba(43, 98, 240, .25);
    color: #0A0F2C;
    box-shadow: 0 16px 30px -18px rgba(43, 98, 240, .5);
}

.services-tab.is-active svg {
    color: #2B62F0
}

.services-tab:focus-visible {
    outline: 3px solid #2B62F0;
    outline-offset: 2px
}

.services-panels {
    flex: 1;
    min-width: 0
}

.services-panel {
    display: none;
    background: #FFFFFF;
    border-radius: 22px;
    padding: 34px;
    border: 1px solid rgba(43, 98, 240, .12);
    box-shadow: 0 26px 50px -30px rgba(10, 15, 44, .35);
}

.services-panel.is-active {
    display: block;
    animation: evFadeIn .5s ease both
}

@keyframes evFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.services-panel-title {
    font-size: 22px;
    font-weight: 800;
    color: #0A0F2C;
    margin-bottom: 14px
}

.services-panel p {
    color: #4A5578;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 0
}

.services-panel-label {
    font-weight: 700;
    color: #0A0F2C;
    margin: 18px 0 12px !important
}

.services-check-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px
}

.services-check-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1B2444;
    font-size: 14.5px;
    font-weight: 600
}

@media (max-width:991.98px) {
    .services-tabs {
        flex-direction: column
    }

    .services-tablist {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: none;
        flex: 1 1 auto
    }

    .services-tab {
        flex: 1 1 auto
    }

    .services-tab span {
        white-space: normal
    }
}

@media (max-width:575.98px) {
    .services-panel {
        padding: 22px
    }

    .services-check-grid {
        grid-template-columns: 1fr
    }
}

/* ==========================================================================
   SOLUTIONS BY BUSINESS — flip cards
   ========================================================================== */
.solutions-section {
    padding: 30px 0;
    background: #FFFFFF
}

.solutions-head {
    max-width: 760px;
    margin: 0 auto 10px;
    text-align: center
}

.solutions-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.solutions-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.solutions-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.solutions-hint {
    text-align: center;
    color: #8093C4;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px
}

.solutions-grid {
    margin: 0 -6px
}

.solutions-grid>div {
    padding: 6px;
    margin-bottom: 6px
}

.solutions-flip-card {
    display: block;
    width: 100%;
    height: 150px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    perspective: 1200px;
}

.solutions-flip-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
}

.solutions-flip-card:hover .solutions-flip-inner,
.solutions-flip-card:focus-visible .solutions-flip-inner,
.solutions-flip-card.is-flipped .solutions-flip-inner {
    transform: rotateY(180deg)
}

.solutions-flip-card:focus-visible {
    outline: 3px solid #2B62F0;
    outline-offset: 4px;
    border-radius: 18px
}

.solutions-flip-front,
.solutions-flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    text-align: center;
}

.solutions-flip-front {
    background: linear-gradient(160deg, #F3F7FF, #E7EEFF);
    border: 1px solid rgba(43, 98, 240, .18);
    color: #0A0F2C;
    font-size: 13.5px;
    font-weight: 700;
}

.solutions-flip-front svg {
    color: #2B62F0
}

.solutions-flip-back {
    background: linear-gradient(135deg, #2B62F0, #63D2FF);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transform: rotateY(180deg);
    box-shadow: 0 20px 34px -16px rgba(43, 98, 240, .6);
}

/* ==========================================================================
   KEY FEATURES — bento grid
   ========================================================================== */
.features-section {
    padding: 30px 0;
    background: #F6F8FE
}

.features-head {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center
}

.features-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.features-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.features-bento {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(190px, auto);
}

.features-bento-card {
    grid-column: span 2;
    padding: 26px;
    border-radius: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(43, 98, 240, .12);
    box-shadow: 0 20px 40px -28px rgba(10, 15, 44, .3);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.features-bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43, 98, 240, .4);
    box-shadow: 0 26px 50px -24px rgba(43, 98, 240, .35)
}

.features-bento-card--lg {
    grid-column: span 3
}

.features-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EAF1FF, #DCE8FF);
    margin-bottom: 16px;
}

.features-bento-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0A0F2C;
    margin-bottom: 14px
}

.features-bento-card ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.features-bento-card li {
    position: relative;
    padding-left: 18px;
    color: #4A5578;
    font-size: 14px;
    line-height: 2;
}

.features-bento-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4C8DFF, #63D2FF);
}

@media (max-width:991.98px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-bento-card,
    .features-bento-card--lg {
        grid-column: span 1
    }
}

/* ==========================================================================
   AI-POWERED EV SOFTWARE (dark)
   ========================================================================== */
.ai-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: linear-gradient(180deg, #080D24, #0B1230)
}

.ai-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.ai-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px)
}

.ai-shape--1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(43, 98, 240, .35), transparent 70%);
    animation: evPulseGlow 8s ease-in-out infinite
}

.ai-shape--2 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -40px;
    background: radial-gradient(circle, rgba(99, 210, 255, .25), transparent 70%);
    animation: evPulseGlow 10s ease-in-out infinite
}

.ai-head {
    position: relative;
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    z-index: 1
}

.ai-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(99, 210, 255, .1);
    border: 1px solid rgba(99, 210, 255, .3);
    color: #9FC3FF;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.ai-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #8FB4FF, #4C8DFF 50%, #63D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ai-copy {
    color: #B7C3E8;
    font-size: 16px;
    line-height: 1.75
}

.ai-grid {
    position: relative;
    z-index: 1
}

.ai-card {
    height: 95%;
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.ai-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 210, 255, .45);
    background: rgba(255, 255, 255, .07)
}

.ai-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(76, 141, 255, .25), rgba(99, 210, 255, .15));
    border: 1px solid rgba(99, 210, 255, .35);
}

.ai-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px
}

.ai-card p {
    color: #AEBBE0;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0
}

.ai-card--cta {
    display: flex;
    flex-direction: column;
    background: linear-gradient(150deg, rgba(43, 98, 240, .22), rgba(99, 210, 255, .1));
    border-color: rgba(99, 210, 255, .4);
}

.ai-card--cta .ev-btn {
    margin-top: auto;
    align-self: flex-start
}

/* ==========================================================================
   END-TO-END CHARGING FLOW — animated diagram
   ========================================================================== */
.chargeflow-section {
    padding: 30px 0;
    background: #FFFFFF
}

.chargeflow-head {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center
}

.chargeflow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.chargeflow-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.chargeflow-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.chargeflow-copy--label {
    font-weight: 700;
    color: #0A0F2C;
    text-align: center;
    margin: 34px auto 18px !important;
    max-width: none
}

.chargeflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 34px 20px;
    border-radius: 26px;
    margin-top: 10px;
    background: linear-gradient(160deg, #0B1230, #0E1740);
    box-shadow: 0 30px 60px -35px rgba(10, 15, 44, .5);
}

.chargeflow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 150px;
    text-align: center;
}

.chargeflow-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2B62F0, #63D2FF);
    color: #fff;
    box-shadow: 0 14px 26px -10px rgba(43, 98, 240, .7);
}

.chargeflow-node-label {
    color: #DCE5FF;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.35
}

.chargeflow-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 2px;
    background: rgba(99, 210, 255, .25);
    margin: 0 -4px;
    flex-shrink: 0
}

.chargeflow-pulse {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63D2FF;
    box-shadow: 0 0 10px 3px rgba(99, 210, 255, .7);
    animation: evTrackDot 3.2s linear infinite;
}

.chargeflow-connector:nth-child(4) .chargeflow-pulse {
    animation-delay: .6s
}

.chargeflow-connector:nth-child(6) .chargeflow-pulse {
    animation-delay: 1.2s
}

.chargeflow-connector:nth-child(8) .chargeflow-pulse {
    animation-delay: 1.8s
}

.chargeflow-integration-row {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 30px;
    padding: 0;
}

.chargeflow-integration-row li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #F3F7FF;
    border: 1px solid rgba(43, 98, 240, .18);
    color: #0A0F2C;
    font-size: 13.5px;
    font-weight: 700;
}

.chargeflow-integration-row li svg {
    color: #2B62F0
}

.chargeflow-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 26px;
    border-radius: 20px;
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F0F5FF, #E7EFFF);
    border: 1px solid rgba(43, 98, 240, .2);
}

.chargeflow-callout svg {
    color: #2B62F0;
    flex-shrink: 0;
    margin-top: 2px
}

.chargeflow-callout p {
    margin: 0;
    color: #33406B;
    font-size: 14.5px;
    line-height: 1.7
}

@media (max-width:767.98px) {
    .chargeflow-diagram {
        flex-direction: column
    }

    .chargeflow-connector {
        width: 2px;
        height: 36px;
        margin: 2px 0
    }

    .chargeflow-pulse {
        top: 0;
        left: -3px;
        animation-name: evTrackDotV
    }

    @keyframes evTrackDotV {
        0% {
            top: 0;
            opacity: 0
        }

        10% {
            opacity: 1
        }

        90% {
            opacity: 1
        }

        100% {
            top: 100%;
            opacity: 0
        }
    }

    .chargeflow-arrow {
        transform: rotate(90deg)
    }
}

/* ==========================================================================
   EV MOBILE APP DEVELOPMENT
   ========================================================================== */
.app-section {
    padding: 30px 0;
    background: #F6F8FE
}

.app-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.app-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.app-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 22px
}

.app-check-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 18px
}

.app-check-grid li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #1B2444;
    font-weight: 600;
    font-size: 14px
}

.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px
}

.app-visual::before {
    content: "";
    position: absolute;
    inset: 10% 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 98, 240, .25), transparent 70%);
    filter: blur(10px);
    z-index: 0;
}

.app-visual img {
    position: relative;
    z-index: 1;
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 45px rgba(10, 15, 44, .35));
    animation: evFloatY 7s ease-in-out infinite;
    border-radius: 20px;
}

@media (max-width:991.98px) {
    .app-visual {
        margin-bottom: 30px
    }
}

@media (max-width:575.98px) {
    .app-check-grid {
        grid-template-columns: 1fr
    }
}

/* ==========================================================================
   FLEET MANAGEMENT — CTA banner
   ========================================================================== */
.fleetcta-section {
    padding: 30px 0;
    background: #FFFFFF
}

.fleetcta-glass {
    padding: 44px;
    border-radius: 28px;
    background: linear-gradient(155deg, #0B1230, #122057);
    box-shadow: 0 34px 60px -30px rgba(10, 15, 44, .5);
}

.fleetcta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(99, 210, 255, .1);
    border: 1px solid rgba(99, 210, 255, .3);
    color: #9FC3FF;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.fleetcta-title {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25
}

.fleetcta-subtitle {
    color: #9FC3FF;
    font-size: 19px;
    font-weight: 700;
    margin: 22px 0 12px
}

.fleetcta-copy {
    color: #B7C3E8;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 0
}

.fleetcta-check-grid {
    list-style: none;
    margin: 18px 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 18px
}

.fleetcta-check-grid li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #DCE5FF;
    font-weight: 600;
    font-size: 13.5px
}

.fleetcta-visual {
    position: relative;
    padding: 14px
}

.fleetcta-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .5)
}

@media (max-width:991.98px) {
    .fleetcta-glass {
        padding: 30px
    }

    .fleetcta-visual {
        margin-top: 30px
    }
}

@media (max-width:575.98px) {
    .fleetcta-check-grid {
        grid-template-columns: 1fr
    }
}

/* ==========================================================================
   BATTERY MANAGEMENT — mini chain + icon grid
   ========================================================================== */
.battery-section {
    padding: 30px 0;
    background: #F6F8FE
}

.battery-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center
}

.battery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.battery-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.battery-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.battery-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 36px
}

.battery-chain-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    background: #FFFFFF;
    border: 1px solid rgba(43, 98, 240, .2);
    color: #0A0F2C;
    font-weight: 700;
    font-size: 13.5px;
    box-shadow: 0 12px 24px -16px rgba(10, 15, 44, .3);
}

.battery-chain-node svg {
    color: #2B62F0
}

.battery-chain-line {
    width: 44px;
    height: 2px;
    background: repeating-linear-gradient(90deg, #4C8DFF 0 8px, transparent 8px 14px);
    margin: 0 4px
}

.battery-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    margin-bottom: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(43, 98, 240, .12);
    color: #1B2444;
    font-weight: 600;
    font-size: 14px;
    transition: transform .3s ease, border-color .3s ease;
}

.battery-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 98, 240, .4)
}

.battery-chip svg {
    color: #2B62F0;
    flex-shrink: 0
}

@media (max-width:767.98px) {
    .battery-chain-line {
        width: 22px
    }
}

/* ==========================================================================
   INTEGRATIONS & API — infinite marquee
   ========================================================================== */
.integrations-section {
    padding: 30px 0;
    background: #FFFFFF;
    overflow: hidden
}

.integrations-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center
}

.integrations-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.integrations-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.integrations-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.integrations-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.integrations-marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: evMarquee 34s linear infinite;
}

.integrations-marquee:hover .integrations-marquee-track {
    animation-play-state: paused
}

.integrations-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 50px;
    white-space: nowrap;
    background: linear-gradient(160deg, #F3F7FF, #E7EEFF);
    border: 1px solid rgba(43, 98, 240, .2);
    color: #0A0F2C;
    font-weight: 700;
    font-size: 14px;
}

.integrations-pill svg {
    color: #2B62F0
}

/* ==========================================================================
   UAE CHARGING ECOSYSTEM CONTEXT
   ========================================================================== */
.uae-section {
    padding: 30px 0;
    background: #F6F8FE
}

.uae-panel {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 36px;
    border-radius: 26px;
    background: #FFFFFF;
    border: 1px solid rgba(43, 98, 240, .15);
    box-shadow: 0 30px 55px -32px rgba(10, 15, 44, .3);
}

.uae-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2B62F0, #63D2FF);
    box-shadow: 0 16px 30px -12px rgba(43, 98, 240, .6);
}

.uae-title {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.uae-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0A0F2C;
    margin: 22px 0 12px
}

.uae-copy {
    color: #4A5578;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 0
}

/* ==========================================================================
   TECHNOLOGY STACK + LOGO SHOWCASE
   ========================================================================== */
.tech-section {
    padding: 30px 0;
    background: #FFFFFF
}

.tech-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center
}

.tech-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.tech-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.tech-layer-grid {
    margin-bottom: 20px
}

.tech-layer-card {
    height: 90%;
    padding: 20px 18px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(160deg, #0B1230, #122057);
    border: 1px solid rgba(99, 210, 255, .15);
    transition: transform .3s ease, border-color .3s ease;
}

.tech-layer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 210, 255, .5)
}

.tech-layer-card span {
    display: block;
    color: #63D2FF;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px
}

.tech-layer-card p {
    margin: 0;
    color: #DCE5FF;
    font-size: 13.5px;
    line-height: 1.6
}

.tech-caption {
    text-align: center;
    color: #8093C4;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .3px;
    margin: 38px 0 22px
}

.tech-logo-grid {
    justify-content: center
}

.tech-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #F6F8FE;
    border: 1px solid rgba(43, 98, 240, .12);
    text-align: center;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.tech-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43, 98, 240, .45);
    box-shadow: 0 18px 30px -16px rgba(43, 98, 240, .35)
}

.tech-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2B62F0, #63D2FF);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .2px;
}

.tech-logo-card p {
    margin: 0;
    color: #33406B;
    font-size: 12.5px;
    font-weight: 700
}

/* ==========================================================================
   DEVELOPMENT PROCESS — animated vertical timeline (centerpiece)
   ========================================================================== */
.process-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(180deg, #070B1F, #0B1230)
}

.process-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center
}

.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(99, 210, 255, .1);
    border: 1px solid rgba(99, 210, 255, .3);
    color: #9FC3FF;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.process-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #8FB4FF, #4C8DFF 50%, #63D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-copy {
    color: #B7C3E8;
    font-size: 16px;
    line-height: 1.75
}

.process-timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto
}

.process-timeline-line {
    position: absolute;
    left: 28px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: rgba(99, 210, 255, .16);
    overflow: hidden;
    border-radius: 2px
}

.process-timeline-progress {
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 110px;
    border-radius: 6px;
    background: linear-gradient(180deg, transparent, #63D2FF, transparent);
    filter: blur(1.5px);
    box-shadow: 0 0 16px 4px rgba(99, 210, 255, .55);
    animation: evScanDown 7s ease-in-out infinite;
}

@keyframes evScanDown {
    0% {
        top: -10%
    }

    100% {
        top: 100%
    }
}

.process-step {
    position: relative;
    padding-left: 76px;
    margin-bottom: 26px
}

.process-step:last-child {
    margin-bottom: 0
}

.process-step-node {
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2B62F0, #63D2FF);
    color: #fff;
    box-shadow: 0 14px 26px -10px rgba(43, 98, 240, .7);
}

.process-step-node em {
    font-style: normal;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-top: 2px;
    opacity: .9
}

.process-step-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 18px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.process-step-card:hover {
    transform: translateX(6px);
    border-color: rgba(99, 210, 255, .4);
    background: rgba(255, 255, 255, .075)
}

.process-step-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px
}

.process-step-card p {
    color: #AEBBE0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0
}

@media (max-width:575.98px) {
    .process-step {
        padding-left: 64px
    }

    .process-step-node {
        width: 48px;
        height: 48px
    }

    .process-timeline-line {
        left: 23px
    }
}

/* ==========================================================================
   SECURE & SCALABLE ARCHITECTURE (dark)
   ========================================================================== */
.security-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: #0A0F2C
}

.security-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.security-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px)
}

.security-shape--1 {
    width: 260px;
    height: 260px;
    top: -90px;
    left: -70px;
    background: radial-gradient(circle, rgba(43, 98, 240, .3), transparent 70%);
    animation: evPulseGlow 9s ease-in-out infinite
}

.security-shape--2 {
    width: 200px;
    height: 200px;
    bottom: -70px;
    right: -50px;
    background: radial-gradient(circle, rgba(99, 210, 255, .25), transparent 70%);
    animation: evPulseGlow 11s ease-in-out infinite
}

.security-head {
    position: relative;
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
    z-index: 1
}

.security-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(99, 210, 255, .1);
    border: 1px solid rgba(99, 210, 255, .3);
    color: #9FC3FF;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.security-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #8FB4FF, #4C8DFF 50%, #63D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.security-copy {
    color: #B7C3E8;
    font-size: 16px;
    line-height: 1.75
}

.security-grid {
    position: relative;
    z-index: 1
}

.security-card {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 90%;
    padding: 18px 16px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #DCE5FF;
    font-weight: 600;
    font-size: 13.5px;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 210, 255, .45);
    background: rgba(255, 255, 255, .07)
}

.security-card svg {
    color: #63D2FF;
    flex-shrink: 0
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section {
    padding: 30px 0;
    background: #FFFFFF
}

.why-head {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center
}

.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.why-eyebrow svg {
    color: #2B62F0
}

.why-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    height: 90%;
    padding: 26px 16px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(160deg, #F6F8FE, #EEF3FF);
    border: 1px solid rgba(43, 98, 240, .12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.why-grid .col-lg-3:last-child {
    margin-left: auto;
    margin-right: auto;
    float: none;
    /* in case Bootstrap grid applies float instead of flex */
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(43, 98, 240, .4);
    box-shadow: 0 20px 36px -22px rgba(43, 98, 240, .4)
}

.why-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2B62F0, #63D2FF);
    color: #fff;
    box-shadow: 0 12px 22px -8px rgba(43, 98, 240, .6);
}

.why-card p {
    margin: 0;
    color: #1B2444;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5
}

/* ==========================================================================
   MOBILITY EXPERIENCE — trust band
   ========================================================================== */
.experience-section {
    padding: 30px 0;
    background: #F6F8FE
}

.experience-band {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 44px 36px;
    border-radius: 26px;
    background: linear-gradient(155deg, #0B1230, #122057);
    box-shadow: 0 30px 55px -32px rgba(10, 15, 44, .4);
}

.experience-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 18px;
    background: rgba(99, 210, 255, .12);
    border: 1px solid rgba(99, 210, 255, .35);
    color: #63D2FF;
}

.experience-title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px
}

.experience-copy {
    color: #B7C3E8;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 22px
}

.experience-tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.experience-tag-list li {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #9FC3FF;
    background: rgba(99, 210, 255, .08);
    border: 1px solid rgba(99, 210, 255, .28);
}

/* ==========================================================================
   INDUSTRIES — clickable cards
   ========================================================================== */
.industries-section {
    padding: 30px 0;
    background: #FFFFFF
}

.industries-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center
}

.industries-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.industries-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.industries-copy {
    color: #4A5578;
    font-size: 16px;
    line-height: 1.75
}

.industries-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    height: 100%;
    padding: 28px 14px;
    margin-bottom: 18px;
    border-radius: 18px;
    text-decoration: none;
    background: #F6F8FE;
    border: 1px solid rgba(43, 98, 240, .12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

.industries-card svg {
    color: #2B62F0;
    transition: transform .3s ease
}

.industries-card h3 {
    margin: 0;
    color: #0A0F2C;
    font-size: 14.5px;
    font-weight: 700
}

.industries-card:hover,
.industries-card:focus-visible {
    transform: translateY(-6px);
    border-color: transparent;
    background: linear-gradient(150deg, #2B62F0, #63D2FF);
    box-shadow: 0 22px 40px -18px rgba(43, 98, 240, .5);
}

.industries-card:hover svg,
.industries-card:focus-visible svg {
    color: #fff;
    transform: scale(1.12)
}

.industries-card:hover h3,
.industries-card:focus-visible h3 {
    color: #fff
}

.industries-card:focus-visible {
    outline: 3px solid #0A0F2C;
    outline-offset: 3px
}

.industries-card--all {
    background: linear-gradient(150deg, #0B1230, #122057);
    border-color: transparent
}

.industries-card--all svg,
.industries-card--all h3 {
    color: #fff
}

.industries-card--all:hover,
.industries-card--all:focus-visible {
    background: linear-gradient(150deg, #2B62F0, #63D2FF)
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.ctafinal-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: #070B1F
}

.ctafinal-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.ctafinal-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px)
}

.ctafinal-shape--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(43, 98, 240, .32), transparent 70%);
    animation: evPulseGlow 8s ease-in-out infinite
}

.ctafinal-shape--2 {
    width: 220px;
    height: 220px;
    bottom: -70px;
    left: -60px;
    background: radial-gradient(circle, rgba(99, 210, 255, .24), transparent 70%);
    animation: evPulseGlow 10s ease-in-out infinite
}

.ctafinal-glass {
    position: relative;
    z-index: 1;
    padding: 46px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 34px 64px -30px rgba(0, 0, 0, .6);
}

.ctafinal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(99, 210, 255, .1);
    border: 1px solid rgba(99, 210, 255, .3);
    color: #9FC3FF;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.ctafinal-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(100deg, #8FB4FF, #4C8DFF 50%, #63D2FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ctafinal-copy {
    color: #B7C3E8;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 560px
}

.ctafinal-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.ctafinal-visual {
    padding: 10px
}

.ctafinal-visual img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .4))
}

@media (max-width:991.98px) {
    .ctafinal-glass {
        padding: 30px
    }

    .ctafinal-visual {
        margin-top: 30px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto
    }
}

/* ==========================================================================
   FAQ — accessible accordion
   ========================================================================== */
.faq-section {
    padding: 30px 0;
    background: #F6F8FE
}

.faq-head {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: rgba(43, 98, 240, .08);
    border: 1px solid rgba(43, 98, 240, .25);
    color: #2B62F0;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.faq-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    background: linear-gradient(100deg, #0A0F2C 0%, #2B62F0 60%, #63D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto
}

.faq-item {
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(43, 98, 240, .14);
    transition: border-color .3s ease, box-shadow .3s ease;
}

.faq-item:has(.faq-trigger[aria-expanded="true"]) {
    border-color: rgba(43, 98, 240, .4);
    box-shadow: 0 18px 34px -24px rgba(43, 98, 240, .4)
}

.faq-question {
    margin: 0
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 15.5px;
    font-weight: 700;
    color: #0A0F2C;
}

.faq-trigger:focus-visible {
    outline: 3px solid #2B62F0;
    outline-offset: -3px;
    border-radius: 14px
}

.faq-icon {
    color: #2B62F0;
    flex-shrink: 0;
    transition: transform .35s ease
}

.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(135deg)
}

.faq-panel {
    padding: 0 22px 20px;
    color: #4A5578;
    font-size: 14.5px;
    line-height: 1.7
}

.faq-panel p {
    margin: 0
}

/* ==========================================================================
   STICKY FLOATING CTA
   ========================================================================== */
.sticky-cta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4C8DFF, #2B62F0 55%, #63D2FF);
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    box-shadow: 0 18px 32px -12px rgba(43, 98, 240, .65);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease, box-shadow .3s ease;
}

.sticky-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
    box-shadow: 0 22px 38px -10px rgba(43, 98, 240, .8);
    color: #fff;
    transform: translateY(-3px)
}

.sticky-cta:focus-visible {
    outline: 3px solid #0A0F2C;
    outline-offset: 3px
}

@media (max-width:575.98px) {
    .sticky-cta span {
        display: none
    }

    .sticky-cta {
        padding: 15px;
        right: 16px;
        bottom: 16px
    }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none
    }
}

.industries-grid .col-6 {
    margin-bottom: 20px;
}